1 | <?php |
||
7 | class Shop extends Model |
||
8 | { |
||
9 | protected $id = null; |
||
10 | |||
11 | protected $name = null; |
||
12 | |||
13 | protected $shopName = null; |
||
14 | |||
15 | protected $createdAt = null; |
||
16 | |||
17 | protected $type = null; |
||
18 | |||
19 | protected $status = null; |
||
20 | |||
21 | protected $url = null; |
||
22 | |||
23 | protected $gradeTotal = null; |
||
24 | |||
25 | protected $rating = null; |
||
26 | |||
27 | protected $factAddress = null; |
||
28 | |||
29 | protected $juridicalAddress = null; |
||
30 | |||
31 | protected $ogrn = null; |
||
32 | |||
33 | /** |
||
34 | * Additional properties available during another requests. |
||
35 | */ |
||
36 | protected $regionId = null; |
||
37 | |||
38 | /** |
||
39 | * Retrieve the id property |
||
40 | * |
||
41 | * @return int|null |
||
42 | */ |
||
43 | 3 | public function getId() |
|
47 | |||
48 | /** |
||
49 | * Retrieve the name property |
||
50 | * |
||
51 | * @return string|null |
||
52 | */ |
||
53 | 3 | public function getName() |
|
57 | |||
58 | /** |
||
59 | * Retrieve the shopName property |
||
60 | * |
||
61 | * @return string|null |
||
62 | */ |
||
63 | 2 | public function getShopName() |
|
67 | |||
68 | /** |
||
69 | * Retrieve the createdAt property |
||
70 | * |
||
71 | * @return string|null |
||
72 | */ |
||
73 | public function getCreatedAt() |
||
77 | |||
78 | /** |
||
79 | * Retrieve the type property |
||
80 | * |
||
81 | * @return string|null |
||
82 | */ |
||
83 | 2 | public function getType() |
|
87 | |||
88 | /** |
||
89 | * Retrieve the status property |
||
90 | * |
||
91 | * @return string|null |
||
92 | */ |
||
93 | 1 | public function getStatus() |
|
97 | |||
98 | /** |
||
99 | * Retrieve the url property |
||
100 | * |
||
101 | * @return string|null |
||
102 | */ |
||
103 | 2 | public function getUrl() |
|
107 | |||
108 | /** |
||
109 | * Retrieve the gradeTotal property |
||
110 | * |
||
111 | * @return int|null |
||
112 | */ |
||
113 | 2 | public function getGradeTotal() |
|
117 | |||
118 | /** |
||
119 | * Retrieve the rating property |
||
120 | * |
||
121 | * @return float|null |
||
122 | */ |
||
123 | 2 | public function getRating() |
|
127 | |||
128 | /** |
||
129 | * Retrieve the factAddress property |
||
130 | * |
||
131 | * @return string|null |
||
132 | */ |
||
133 | 2 | public function getFactAddress() |
|
137 | |||
138 | /** |
||
139 | * Retrieve the juridicalAddress property |
||
140 | * |
||
141 | * @return string|null |
||
142 | */ |
||
143 | 2 | public function getJuridicalAddress() |
|
147 | |||
148 | /** |
||
149 | * Retrieve the ogrn property |
||
150 | * |
||
151 | * @return string|null |
||
152 | */ |
||
153 | 2 | public function getOgrn() |
|
157 | |||
158 | /** |
||
159 | * Retrieve the regionId property |
||
160 | * |
||
161 | * @note Property available during /shops request. |
||
162 | * |
||
163 | * @return int|null |
||
164 | */ |
||
165 | 1 | public function getRegionId() |
|
169 | } |
||
170 |