commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
InventoryQuantityValueBuilder.php
1<?php
2
3declare(strict_types=1);
10
16use stdClass;
17
22{
27 private $quantityOnStock;
28
33 private $availableQuantity;
34
41 public function getQuantityOnStock()
42 {
43 return $this->quantityOnStock;
44 }
45
52 public function getAvailableQuantity()
53 {
54 return $this->availableQuantity;
55 }
56
61 public function withQuantityOnStock(?int $quantityOnStock)
62 {
63 $this->quantityOnStock = $quantityOnStock;
64
65 return $this;
66 }
67
72 public function withAvailableQuantity(?int $availableQuantity)
73 {
74 $this->availableQuantity = $availableQuantity;
75
76 return $this;
77 }
78
79
80 public function build(): InventoryQuantityValue
81 {
83 $this->quantityOnStock,
84 $this->availableQuantity
85 );
86 }
87
88 public static function of(): InventoryQuantityValueBuilder
89 {
90 return new self();
91 }
92}