reference = $reference; $this->containerNumber = $containerNumber; $this->sealNumber = $sealNumber; $this->containerType = $containerType; $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 getSealNumber(): string { return $this->sealNumber; } /** * @return int */ public function getContainerType(): int { return $this->containerType; } /** * @return int */ public function getStatus(): int { return $this->status; } }