1 | <?php |
||
9 | class GetOutletsResponse extends Model |
||
10 | { |
||
11 | |||
12 | protected $pager = null; |
||
13 | |||
14 | protected $outlets = null; |
||
15 | |||
16 | protected $mappingClasses = [ |
||
17 | 'pager' => 'Yandex\Market\Partner\Models\Pager', |
||
18 | 'outlets' => 'Yandex\Market\Partner\Models\Outlets' |
||
19 | ]; |
||
20 | |||
21 | protected $propNameMap = []; |
||
22 | |||
23 | /** |
||
24 | * Retrieve the pager property |
||
25 | * |
||
26 | * @return Pager|null |
||
27 | */ |
||
28 | 1 | public function getPager() |
|
32 | |||
33 | /** |
||
34 | * Retrieve the Outlets property |
||
35 | * |
||
36 | * @return Outlets|null |
||
37 | */ |
||
38 | 1 | public function getOutlets() |
|
42 | } |
||
43 |