| 1 | <?php |
||
| 7 | final class GetICsFromOrderResponse |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | private $omsId; |
||
| 13 | /** |
||
| 14 | * @var string[] |
||
| 15 | */ |
||
| 16 | private $codes; |
||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | private $blockId; |
||
| 21 | |||
| 22 | public function __construct(string $omsId, array $codes, string $blockId) |
||
| 28 | |||
| 29 | public function getOmsId(): string |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return string[] |
||
| 36 | */ |
||
| 37 | public function getCodes(): array |
||
| 41 | |||
| 42 | public function getBlockId(): string |
||
| 46 | } |
||
| 47 |