commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
ItemShippingTargetBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 use stdClass;
17 
21 final class ItemShippingTargetBuilder implements Builder
22 {
27  private $addressKey;
28 
33  private $quantity;
34 
41  public function getAddressKey()
42  {
43  return $this->addressKey;
44  }
45 
52  public function getQuantity()
53  {
54  return $this->quantity;
55  }
56 
61  public function withAddressKey(?string $addressKey)
62  {
63  $this->addressKey = $addressKey;
64 
65  return $this;
66  }
67 
72  public function withQuantity(?int $quantity)
73  {
74  $this->quantity = $quantity;
75 
76  return $this;
77  }
78 
79 
80  public function build(): ItemShippingTarget
81  {
82  return new ItemShippingTargetModel(
83  $this->addressKey,
84  $this->quantity
85  );
86  }
87 
88  public static function of(): ItemShippingTargetBuilder
89  {
90  return new self();
91  }
92 }