typeId = $typeId; $this->clientId = $clientId; $this->reference = $reference; $this->description = $description; $this->status = $status; } /** * @return int */ public function getTypeId(): int { return $this->typeId; } /** * @return int */ public function getClientId(): int { return $this->clientId; } /** * @return string */ public function getReference(): string { return $this->reference; } /** * @return null|string */ public function getDescription(): ?string { return $this->description; } /** * @return int */ public function getStatus(): int { return $this->status; } }