segment_id = $segment_id; $this->name = $name; $this->reference = $reference; $this->type = $type; $this->value = $value; $this->currency_id = $currency_id; } /** * @return int */ public function getSegmentId(): ?int { return $this->segment_id; } /** * @return string */ public function getName(): ?string { return $this->name; } /** * @return string */ public function getReference(): ?string { return $this->reference; } /** * @return string */ public function getType(): ?string { return $this->type; } /** * @return int */ public function getValue(): ?int { return $this->value; } /** * @return int */ public function getCurrencyId(): ?int { return $this->currency_id; } }