1 | <?php |
||
9 | class CartRequest extends Model |
||
10 | { |
||
11 | |||
12 | protected $currency = null; |
||
13 | |||
14 | protected $items = null; |
||
15 | |||
16 | protected $delivery = null; |
||
17 | |||
18 | protected $mappingClasses = [ |
||
19 | 'items' => 'Yandex\Market\Partner\Models\Items', |
||
20 | 'delivery' => 'Yandex\Market\Partner\Models\Delivery' |
||
21 | ]; |
||
22 | |||
23 | protected $propNameMap = []; |
||
24 | |||
25 | /** |
||
26 | * Retrieve the currency property |
||
27 | * |
||
28 | * @return string|null |
||
29 | */ |
||
30 | 1 | public function getCurrency() |
|
34 | |||
35 | /** |
||
36 | * Retrieve the items property |
||
37 | * |
||
38 | * @return Items|null |
||
39 | */ |
||
40 | 1 | public function getItems() |
|
44 | |||
45 | /** |
||
46 | * Retrieve the delivery property |
||
47 | * |
||
48 | * @return Delivery|null |
||
49 | */ |
||
50 | 1 | public function getDelivery() |
|
54 | } |
||
55 |