1 | <?php |
||
16 | class Country extends Base |
||
17 | { |
||
18 | /** |
||
19 | * @var int |
||
20 | */ |
||
21 | protected $id; |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $name; |
||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $iso; |
||
30 | /** |
||
31 | * @var string |
||
32 | */ |
||
33 | protected $isoName; |
||
34 | /** |
||
35 | * @var int |
||
36 | */ |
||
37 | protected $position; |
||
38 | /** |
||
39 | * @var string |
||
40 | */ |
||
41 | protected $description; |
||
42 | /** |
||
43 | * @var bool |
||
44 | */ |
||
45 | protected $shippingFree; |
||
46 | /** |
||
47 | * @var bool |
||
48 | */ |
||
49 | protected $taxFree; |
||
50 | /** |
||
51 | * @var bool |
||
52 | */ |
||
53 | protected $taxFreeUstId; |
||
54 | /** |
||
55 | * @var bool |
||
56 | */ |
||
57 | protected $taxFreeUstIdChecked; |
||
58 | /** |
||
59 | * @var bool |
||
60 | */ |
||
61 | protected $active; |
||
62 | /** |
||
63 | * @var string |
||
64 | */ |
||
65 | protected $iso3; |
||
66 | /** |
||
67 | * @var bool |
||
68 | */ |
||
69 | protected $displayStateInRegistration; |
||
70 | /** |
||
71 | * @var bool |
||
72 | */ |
||
73 | protected $forceStateInRegistration; |
||
74 | /** |
||
75 | * @var int |
||
76 | */ |
||
77 | protected $areaId; |
||
78 | /** |
||
79 | * @var State[] |
||
80 | */ |
||
81 | protected $states; |
||
82 | |||
83 | /** |
||
84 | * @return int |
||
85 | */ |
||
86 | public function getId() |
||
90 | |||
91 | /** |
||
92 | * @param int $id |
||
93 | * |
||
94 | * @return Country |
||
95 | */ |
||
96 | public function setId($id) |
||
102 | |||
103 | /** |
||
104 | * @return string |
||
105 | */ |
||
106 | public function getName() |
||
110 | |||
111 | /** |
||
112 | * @param string $name |
||
113 | * |
||
114 | * @return Country |
||
115 | */ |
||
116 | public function setName($name) |
||
122 | |||
123 | /** |
||
124 | * @return string |
||
125 | */ |
||
126 | public function getIso() |
||
130 | |||
131 | /** |
||
132 | * @param string $iso |
||
133 | * |
||
134 | * @return Country |
||
135 | */ |
||
136 | public function setIso($iso) |
||
142 | |||
143 | /** |
||
144 | * @return string |
||
145 | */ |
||
146 | public function getIsoName() |
||
150 | |||
151 | /** |
||
152 | * @param string $isoName |
||
153 | * |
||
154 | * @return Country |
||
155 | */ |
||
156 | public function setIsoName($isoName) |
||
162 | |||
163 | /** |
||
164 | * @return int |
||
165 | */ |
||
166 | public function getPosition() |
||
170 | |||
171 | /** |
||
172 | * @param int $position |
||
173 | * |
||
174 | * @return Country |
||
175 | */ |
||
176 | public function setPosition($position) |
||
182 | |||
183 | /** |
||
184 | * @return string |
||
185 | */ |
||
186 | public function getDescription() |
||
190 | |||
191 | /** |
||
192 | * @param string $description |
||
193 | * |
||
194 | * @return Country |
||
195 | */ |
||
196 | public function setDescription($description) |
||
202 | |||
203 | /** |
||
204 | * @return bool |
||
205 | */ |
||
206 | public function isShippingFree() |
||
210 | |||
211 | /** |
||
212 | * @param bool $shippingFree |
||
213 | * |
||
214 | * @return Country |
||
215 | */ |
||
216 | public function setShippingFree($shippingFree) |
||
222 | |||
223 | /** |
||
224 | * @return bool |
||
225 | */ |
||
226 | public function isTaxFree() |
||
230 | |||
231 | /** |
||
232 | * @param bool $taxFree |
||
233 | * |
||
234 | * @return Country |
||
235 | */ |
||
236 | public function setTaxFree($taxFree) |
||
242 | |||
243 | /** |
||
244 | * @return bool |
||
245 | */ |
||
246 | public function isTaxFreeUstId() |
||
250 | |||
251 | /** |
||
252 | * @param bool $taxFreeUstId |
||
253 | * |
||
254 | * @return Country |
||
255 | */ |
||
256 | public function setTaxFreeUstId($taxFreeUstId) |
||
262 | |||
263 | /** |
||
264 | * @return bool |
||
265 | */ |
||
266 | public function isTaxFreeUstIdChecked() |
||
270 | |||
271 | /** |
||
272 | * @param bool $taxFreeUstIdChecked |
||
273 | * |
||
274 | * @return Country |
||
275 | */ |
||
276 | public function setTaxFreeUstIdChecked($taxFreeUstIdChecked) |
||
282 | |||
283 | /** |
||
284 | * @return bool |
||
285 | */ |
||
286 | public function isActive() |
||
290 | |||
291 | /** |
||
292 | * @param bool $active |
||
293 | * |
||
294 | * @return Country |
||
295 | */ |
||
296 | public function setActive($active) |
||
302 | |||
303 | /** |
||
304 | * @return string |
||
305 | */ |
||
306 | public function getIso3() |
||
310 | |||
311 | /** |
||
312 | * @param string $iso3 |
||
313 | * |
||
314 | * @return Country |
||
315 | */ |
||
316 | public function setIso3($iso3) |
||
322 | |||
323 | /** |
||
324 | * @return bool |
||
325 | */ |
||
326 | public function isDisplayStateInRegistration() |
||
330 | |||
331 | /** |
||
332 | * @param bool $displayStateInRegistration |
||
333 | * |
||
334 | * @return Country |
||
335 | */ |
||
336 | public function setDisplayStateInRegistration($displayStateInRegistration) |
||
342 | |||
343 | /** |
||
344 | * @return bool |
||
345 | */ |
||
346 | public function isForceStateInRegistration() |
||
350 | |||
351 | /** |
||
352 | * @param bool $forceStateInRegistration |
||
353 | * |
||
354 | * @return Country |
||
355 | */ |
||
356 | public function setForceStateInRegistration($forceStateInRegistration) |
||
362 | |||
363 | /** |
||
364 | * @return int |
||
365 | */ |
||
366 | public function getAreaId() |
||
370 | |||
371 | /** |
||
372 | * @param int $areaId |
||
373 | * |
||
374 | * @return Country |
||
375 | */ |
||
376 | public function setAreaId($areaId) |
||
382 | |||
383 | /** |
||
384 | * @return State[] |
||
385 | */ |
||
386 | public function getStates() |
||
390 | |||
391 | /** |
||
392 | * @param State[] $states |
||
393 | * |
||
394 | * @return Country |
||
395 | */ |
||
396 | public function setStates($states) |
||
402 | } |
||
403 |