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