segment_id = $segment_id; $this->name = $name; $this->reference = $reference; $this->type = $type; $this->detail = $detail; } /** * @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 array */ public function getDetail(): ?array { return $this->detail; } }