reference = $reference; $this->claimantId = $claimantId; $this->type = $type; $this->status = $status; $this->contractReference = $contractReference; } /** * @return string */ public function getReference(): string { return $this->reference; } /** * @return int */ public function getClaimantId(): ?int { return $this->claimantId; } /** * @return int */ public function getType(): int { return $this->type; } /** * @return int */ public function getStatus(): int { return $this->status; } /** * @return null|string */ public function getContractReference(): ?string { return $this->contractReference; } }