reference = $reference; $this->containerNumber = $containerNumber; $this->sealReference = $sealReference; $this->containerType = $containerType; $this->loadingDate = $loadingDate; $this->status = $status; } /** * @return string */ public function getReference(): string { return $this->reference; } /** * @return string */ public function getContainerNumber(): string { return $this->containerNumber; } /** * @return string */ public function getSealReference(): string { return $this->sealReference; } /** * @return int */ public function getContainerType(): int { return $this->containerType; } /** * @return Carbon */ public function getLoadingDate(): Carbon { return $this->loadingDate; } /** * @return int */ public function getStatus(): int { return $this->status; } }