1 | <?php |
||
13 | class GetMarketModelsResponse extends Model |
||
14 | { |
||
15 | /** |
||
16 | * @var MarketModels |
||
17 | */ |
||
18 | protected $models; |
||
19 | |||
20 | /** |
||
21 | * @var Pager |
||
22 | */ |
||
23 | protected $pager; |
||
24 | |||
25 | protected $mappingClasses = [ |
||
26 | 'models' => MarketModels::class, |
||
27 | 'pager' => Pager::class, |
||
28 | ]; |
||
29 | |||
30 | /** |
||
31 | * @var int |
||
32 | */ |
||
33 | protected $regionId; |
||
34 | |||
35 | /** |
||
36 | * @var string |
||
37 | */ |
||
38 | protected $currency; |
||
39 | |||
40 | /** |
||
41 | * Retrieve the models property |
||
42 | * |
||
43 | * @return MarketModels |
||
44 | */ |
||
45 | 5 | public function getModels() |
|
49 | |||
50 | /** |
||
51 | * Set the models property |
||
52 | * |
||
53 | * @param MarketModels $models |
||
54 | * @return GetMarketModelsResponse |
||
55 | */ |
||
56 | public function setModels($models) |
||
61 | |||
62 | /** |
||
63 | * Retrieve the pager property |
||
64 | * |
||
65 | * @return Pager|null |
||
66 | */ |
||
67 | public function getPager() |
||
71 | |||
72 | /** |
||
73 | * Set the pager property |
||
74 | * |
||
75 | * @param Pager $pager |
||
76 | * @return GetMarketModelsResponse |
||
77 | */ |
||
78 | public function setPager($pager) |
||
83 | |||
84 | /** |
||
85 | * Get region ID |
||
86 | * |
||
87 | * @return int |
||
88 | */ |
||
89 | public function getRegionId() |
||
93 | |||
94 | /** |
||
95 | * Set region ID |
||
96 | * |
||
97 | * @param int $regionId |
||
98 | * @return GetMarketModelsResponse |
||
99 | */ |
||
100 | public function setRegionId($regionId) |
||
105 | |||
106 | /** |
||
107 | * Get currency |
||
108 | * |
||
109 | * @return string |
||
110 | */ |
||
111 | public function getCurrency() |
||
115 | |||
116 | /** |
||
117 | * Set currency |
||
118 | * |
||
119 | * @param string $currency |
||
120 | * @return GetMarketModelsResponse |
||
121 | */ |
||
122 | public function setCurrency($currency) |
||
127 | } |
||
128 |