1 | <?php |
||
7 | class GetMarketModelsResponse extends Model |
||
8 | { |
||
9 | /** |
||
10 | * @var MarketModels |
||
11 | */ |
||
12 | protected $models; |
||
13 | |||
14 | /** |
||
15 | * @var Pager |
||
16 | */ |
||
17 | protected $pager; |
||
18 | |||
19 | protected $mappingClasses = [ |
||
20 | 'models' => MarketModels::class, |
||
21 | 'pager' => Pager::class, |
||
22 | ]; |
||
23 | |||
24 | /** |
||
25 | * @var int |
||
26 | */ |
||
27 | protected $regionId; |
||
28 | |||
29 | /** |
||
30 | * @var string |
||
31 | */ |
||
32 | protected $currency; |
||
33 | |||
34 | /** |
||
35 | * Retrieve the models property |
||
36 | * |
||
37 | * @return MarketModels |
||
38 | */ |
||
39 | public function getModels() |
||
43 | |||
44 | /** |
||
45 | * Set the models property |
||
46 | * |
||
47 | * @param MarketModels $models |
||
48 | * @return GetMarketModelsResponse |
||
49 | */ |
||
50 | public function setModels($models) |
||
55 | |||
56 | /** |
||
57 | * Retrieve the pager property |
||
58 | * |
||
59 | * @return Pager|null |
||
60 | */ |
||
61 | public function getPager() |
||
65 | |||
66 | /** |
||
67 | * Set the pager property |
||
68 | * |
||
69 | * @param Pager $pager |
||
70 | * @return GetMarketModelsResponse |
||
71 | */ |
||
72 | public function setPager($pager) |
||
77 | |||
78 | /** |
||
79 | * Get region ID |
||
80 | * |
||
81 | * @return int |
||
82 | */ |
||
83 | public function getRegionId() |
||
87 | |||
88 | /** |
||
89 | * Set region ID |
||
90 | * |
||
91 | * @param int $regionId |
||
92 | * @return GetMarketModelsResponse |
||
93 | */ |
||
94 | public function setRegionId($regionId) |
||
99 | |||
100 | /** |
||
101 | * Get currency |
||
102 | * |
||
103 | * @return string |
||
104 | */ |
||
105 | public function getCurrency() |
||
109 | |||
110 | /** |
||
111 | * Set currency |
||
112 | * |
||
113 | * @param string $currency |
||
114 | * @return GetMarketModelsResponse |
||
115 | */ |
||
116 | public function setCurrency($currency) |
||
121 | } |
||
122 |