orderId = $orderId; $this->claimantId = $claimantId; $this->type = $type; $this->description = $description; $this->width = $width; $this->height = $height; $this->length = $length; $this->weight = $weight; $this->quantity = $quantity; $this->status = $status; } public function getOrderId(): int { return $this->orderId; } public function getClaimantId(): ?int { return $this->claimantId; } public function getType(): int { return $this->type; } public function getDescription(): ?string { return $this->description; } public function getWidth(): float { return $this->width; } public function getHeight(): float { return $this->height; } public function getLength(): float { return $this->length; } public function getWeight(): float { return $this->weight; } public function getQuantity(): int { return $this->quantity; } public function getStatus(): int { return $this->status; } }