| 1 | <?php |
||
| 21 | class CreateOrderRequest implements RequestCommandInterface |
||
| 22 | { |
||
| 23 | /** @var string */ |
||
| 24 | public $user_id; |
||
| 25 | |||
| 26 | /** @var int|string */ |
||
| 27 | public $cart_id; |
||
| 28 | |||
| 29 | /** @var Product[] */ |
||
| 30 | public $products; |
||
| 31 | |||
| 32 | /** @var AddressInformation */ |
||
| 33 | public $addressInformation; |
||
| 34 | |||
| 35 | /** @var \DateTime */ |
||
| 36 | public $created_at; |
||
| 37 | |||
| 38 | /** @var \DateTime */ |
||
| 39 | public $updated_at; |
||
| 40 | |||
| 41 | public function getCommand(): CommandInterface |
||
| 49 | } |
||
| 50 |