3 declare(strict_types=1);
42 private $shippingMethodName;
48 private $shippingAddress;
54 private $shippingRate;
60 private $shippingRateInput;
72 private $externalTaxRate;
105 return $this->shippingMethodName;
116 return $this->shippingAddress instanceof
BaseAddressBuilder ? $this->shippingAddress->
build() : $this->shippingAddress;
177 return $this->deliveries;
208 $this->shippingMethodName = $shippingMethodName;
219 $this->shippingAddress = $shippingAddress;
230 $this->shippingRate = $shippingRate;
241 $this->shippingRateInput = $shippingRateInput;
252 $this->taxCategory = $taxCategory;
263 $this->externalTaxRate = $externalTaxRate;
274 $this->deliveries = $deliveries;
285 $this->custom = $custom;
296 $this->shippingAddress = $shippingAddress;
307 $this->shippingRate = $shippingRate;
318 $this->shippingRateInput = $shippingRateInput;
329 $this->taxCategory = $taxCategory;
340 $this->externalTaxRate = $externalTaxRate;
351 $this->custom = $custom;
360 $this->shippingMethodName,
361 $this->shippingAddress instanceof
BaseAddressBuilder ? $this->shippingAddress->
build() : $this->shippingAddress,