1 | <?php |
||
15 | class Billing extends Base |
||
16 | { |
||
17 | /** |
||
18 | * @var int |
||
19 | */ |
||
20 | protected $id; |
||
21 | /** |
||
22 | * @var int |
||
23 | */ |
||
24 | protected $customerId; |
||
25 | /** |
||
26 | * @var int |
||
27 | */ |
||
28 | protected $countryId; |
||
29 | /** |
||
30 | * @var int |
||
31 | */ |
||
32 | protected $stateId; |
||
33 | /** |
||
34 | * @var string |
||
35 | */ |
||
36 | protected $company; |
||
37 | /** |
||
38 | * @var string |
||
39 | */ |
||
40 | protected $department; |
||
41 | /** |
||
42 | * @var string |
||
43 | */ |
||
44 | protected $salutation; |
||
45 | /** |
||
46 | * @var string |
||
47 | */ |
||
48 | protected $number; |
||
49 | /** |
||
50 | * @var string |
||
51 | */ |
||
52 | protected $firstName; |
||
53 | /** |
||
54 | * @var string |
||
55 | */ |
||
56 | protected $lastName; |
||
57 | /** |
||
58 | * @var string |
||
59 | */ |
||
60 | protected $street; |
||
61 | /** |
||
62 | * @var string |
||
63 | */ |
||
64 | protected $streetNumber; |
||
65 | /** |
||
66 | * @var string |
||
67 | */ |
||
68 | protected $zipCode; |
||
69 | /** |
||
70 | * @var string |
||
71 | */ |
||
72 | protected $city; |
||
73 | /** |
||
74 | * @var string |
||
75 | */ |
||
76 | protected $phone; |
||
77 | /** |
||
78 | * @var string |
||
79 | */ |
||
80 | protected $fax; |
||
81 | /** |
||
82 | * @var int |
||
83 | */ |
||
84 | protected $vatId; |
||
85 | /** |
||
86 | * @var string |
||
87 | */ |
||
88 | protected $birthday; |
||
89 | /** |
||
90 | * @var BillingAttribute[] |
||
91 | */ |
||
92 | protected $attribute; |
||
93 | |||
94 | /** |
||
95 | * @return int |
||
96 | */ |
||
97 | public function getId() |
||
101 | |||
102 | /** |
||
103 | * @param int $id |
||
104 | * |
||
105 | * @return Billing |
||
106 | */ |
||
107 | public function setId($id) |
||
113 | |||
114 | /** |
||
115 | * @return int |
||
116 | */ |
||
117 | public function getCustomerId() |
||
121 | |||
122 | /** |
||
123 | * @param int $customerId |
||
124 | * |
||
125 | * @return Billing |
||
126 | */ |
||
127 | public function setCustomerId($customerId) |
||
133 | |||
134 | /** |
||
135 | * @return int |
||
136 | */ |
||
137 | public function getCountryId() |
||
141 | |||
142 | /** |
||
143 | * @param int $countryId |
||
144 | * |
||
145 | * @return Billing |
||
146 | */ |
||
147 | public function setCountryId($countryId) |
||
153 | |||
154 | /** |
||
155 | * @return int |
||
156 | */ |
||
157 | public function getStateId() |
||
161 | |||
162 | /** |
||
163 | * @param int $stateId |
||
164 | * |
||
165 | * @return Billing |
||
166 | */ |
||
167 | public function setStateId($stateId) |
||
173 | |||
174 | /** |
||
175 | * @return string |
||
176 | */ |
||
177 | public function getCompany() |
||
181 | |||
182 | /** |
||
183 | * @param string $company |
||
184 | * |
||
185 | * @return Billing |
||
186 | */ |
||
187 | public function setCompany($company) |
||
193 | |||
194 | /** |
||
195 | * @return string |
||
196 | */ |
||
197 | public function getDepartment() |
||
201 | |||
202 | /** |
||
203 | * @param string $department |
||
204 | * |
||
205 | * @return Billing |
||
206 | */ |
||
207 | public function setDepartment($department) |
||
213 | |||
214 | /** |
||
215 | * @return string |
||
216 | */ |
||
217 | public function getSalutation() |
||
221 | |||
222 | /** |
||
223 | * @param string $salutation |
||
224 | * |
||
225 | * @return Billing |
||
226 | */ |
||
227 | public function setSalutation($salutation) |
||
233 | |||
234 | /** |
||
235 | * @return string |
||
236 | */ |
||
237 | public function getNumber() |
||
241 | |||
242 | /** |
||
243 | * @param string $number |
||
244 | * |
||
245 | * @return Billing |
||
246 | */ |
||
247 | public function setNumber($number) |
||
253 | |||
254 | /** |
||
255 | * @return string |
||
256 | */ |
||
257 | public function getFirstName() |
||
261 | |||
262 | /** |
||
263 | * @param string $firstName |
||
264 | * |
||
265 | * @return Billing |
||
266 | */ |
||
267 | public function setFirstName($firstName) |
||
273 | |||
274 | /** |
||
275 | * @return string |
||
276 | */ |
||
277 | public function getLastName() |
||
281 | |||
282 | /** |
||
283 | * @param string $lastName |
||
284 | * |
||
285 | * @return Billing |
||
286 | */ |
||
287 | public function setLastName($lastName) |
||
293 | |||
294 | /** |
||
295 | * @return string |
||
296 | */ |
||
297 | public function getStreet() |
||
301 | |||
302 | /** |
||
303 | * @param string $street |
||
304 | * |
||
305 | * @return Billing |
||
306 | */ |
||
307 | public function setStreet($street) |
||
313 | |||
314 | /** |
||
315 | * @return string |
||
316 | */ |
||
317 | public function getStreetNumber() |
||
321 | |||
322 | /** |
||
323 | * @param string $streetNumber |
||
324 | * |
||
325 | * @return Billing |
||
326 | */ |
||
327 | public function setStreetNumber($streetNumber) |
||
333 | |||
334 | /** |
||
335 | * @return string |
||
336 | */ |
||
337 | public function getZipCode() |
||
341 | |||
342 | /** |
||
343 | * @param string $zipCode |
||
344 | * |
||
345 | * @return Billing |
||
346 | */ |
||
347 | public function setZipCode($zipCode) |
||
353 | |||
354 | /** |
||
355 | * @return string |
||
356 | */ |
||
357 | public function getCity() |
||
361 | |||
362 | /** |
||
363 | * @param string $city |
||
364 | * |
||
365 | * @return Billing |
||
366 | */ |
||
367 | public function setCity($city) |
||
373 | |||
374 | /** |
||
375 | * @return string |
||
376 | */ |
||
377 | public function getPhone() |
||
381 | |||
382 | /** |
||
383 | * @param string $phone |
||
384 | * |
||
385 | * @return Billing |
||
386 | */ |
||
387 | public function setPhone($phone) |
||
393 | |||
394 | /** |
||
395 | * @return string |
||
396 | */ |
||
397 | public function getFax() |
||
401 | |||
402 | /** |
||
403 | * @param string $fax |
||
404 | * |
||
405 | * @return Billing |
||
406 | */ |
||
407 | public function setFax($fax) |
||
413 | |||
414 | /** |
||
415 | * @return int |
||
416 | */ |
||
417 | public function getVatId() |
||
421 | |||
422 | /** |
||
423 | * @param int $vatId |
||
424 | * |
||
425 | * @return Billing |
||
426 | */ |
||
427 | public function setVatId($vatId) |
||
433 | |||
434 | /** |
||
435 | * @return string |
||
436 | */ |
||
437 | public function getBirthday() |
||
441 | |||
442 | /** |
||
443 | * @param string $birthday |
||
444 | * |
||
445 | * @return Billing |
||
446 | */ |
||
447 | public function setBirthday($birthday) |
||
453 | |||
454 | /** |
||
455 | * @return BillingAttribute[] |
||
456 | */ |
||
457 | public function getAttributes() |
||
461 | |||
462 | /** |
||
463 | * @param BillingAttribute[] $attribute |
||
464 | * |
||
465 | * @return Billing |
||
466 | */ |
||
467 | public function setAttributes($attribute) |
||
473 | } |
||
474 |