companyId = $companyId; $this->segmentId = $segmentId; $this->starting_on = $starting_on; $this->ending_on = $ending_on; $this->status = $status; } /** * @return int */ public function getCompanyId(): int { return $this->companyId; } /** * @return int */ public function getSegmentId(): int { return $this->segmentId; } /** * @return string */ public function getStartingOn(): string { return $this->starting_on; } /** * @return string */ public function getEndingOn(): ?string { return $this->ending_on; } }