0])] private int $position = 0; public function getId(): ?int { return $this->id; } public function getCarrier(): ?Carrier { return $this->carrier; } public function setCarrier(?Carrier $carrier): static { $this->carrier = $carrier; return $this; } public function getDirection(): ?string { return $this->direction; } public function setDirection(?string $direction): static { $this->direction = $direction; return $this; } public function getClient(): ?ClientInterface { return $this->client; } public function setClient(?ClientInterface $client): static { $this->client = $client; return $this; } public function getClientDeliveryAddress(): ?ClientAddressInterface { return $this->clientDeliveryAddress; } public function setClientDeliveryAddress(?ClientAddressInterface $clientDeliveryAddress): static { $this->clientDeliveryAddress = $clientDeliveryAddress; return $this; } public function getDepartureSite(): ?SiteInterface { return $this->departureSite; } public function setDepartureSite(?SiteInterface $departureSite): static { $this->departureSite = $departureSite; return $this; } public function getSupplier(): ?SupplierInterface { return $this->supplier; } public function setSupplier(?SupplierInterface $supplier): static { $this->supplier = $supplier; return $this; } public function getSupplierSupplyAddress(): ?SupplierAddressInterface { return $this->supplierSupplyAddress; } public function setSupplierSupplyAddress(?SupplierAddressInterface $supplierSupplyAddress): static { $this->supplierSupplyAddress = $supplierSupplyAddress; return $this; } public function getDeliverySite(): ?SiteInterface { return $this->deliverySite; } public function setDeliverySite(?SiteInterface $deliverySite): static { $this->deliverySite = $deliverySite; return $this; } public function getContainerType(): ?string { return $this->containerType; } public function setContainerType(?string $containerType): static { $this->containerType = $containerType; return $this; } public function getPricingUnit(): ?string { return $this->pricingUnit; } public function setPricingUnit(?string $pricingUnit): static { $this->pricingUnit = $pricingUnit; return $this; } public function getPrice(): ?string { return $this->price; } public function setPrice(?string $price): static { $this->price = $price; return $this; } public function getPriceState(): ?string { return $this->priceState; } public function setPriceState(?string $priceState): static { $this->priceState = $priceState; return $this; } public function getPosition(): int { return $this->position; } public function setPosition(int $position): static { $this->position = $position; return $this; } }