| 1 | <?php |
||
| 9 | class GetOrdersResponse extends Model |
||
| 10 | { |
||
| 11 | |||
| 12 | protected $pager = null; |
||
| 13 | |||
| 14 | protected $orders = null; |
||
| 15 | |||
| 16 | protected $mappingClasses = [ |
||
| 17 | 'pager' => 'Yandex\Market\Partner\Models\Pager', |
||
| 18 | 'orders' => 'Yandex\Market\Partner\Models\Orders' |
||
| 19 | ]; |
||
| 20 | |||
| 21 | protected $propNameMap = []; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Retrieve the pager property |
||
| 25 | * |
||
| 26 | * @return Pager|null |
||
| 27 | */ |
||
| 28 | public function getPager() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Set the pager property |
||
| 35 | * |
||
| 36 | * @param Pager $pager |
||
| 37 | * @return $this |
||
| 38 | */ |
||
| 39 | public function setPager($pager) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Retrieve the orders property |
||
| 47 | * |
||
| 48 | * @return Orders|null |
||
| 49 | */ |
||
| 50 | 1 | public function getOrders() |
|
| 54 | } |
||
| 55 |