1 | <?php |
||
5 | class Address |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * @var int $AddressID |
||
10 | */ |
||
11 | protected $AddressID = null; |
||
12 | |||
13 | /** |
||
14 | * @var int $Dear |
||
15 | */ |
||
16 | protected $Dear = null; |
||
17 | |||
18 | /** |
||
19 | * @var string $Address1 |
||
20 | */ |
||
21 | protected $Address1 = null; |
||
22 | |||
23 | /** |
||
24 | * @var string $LastName |
||
25 | */ |
||
26 | protected $LastName = null; |
||
27 | |||
28 | /** |
||
29 | * @var string $FirstName |
||
30 | */ |
||
31 | protected $FirstName = null; |
||
32 | |||
33 | /** |
||
34 | * @var string $City |
||
35 | */ |
||
36 | protected $City = null; |
||
37 | |||
38 | /** |
||
39 | * @var string $State |
||
40 | */ |
||
41 | protected $State = null; |
||
42 | |||
43 | /** |
||
44 | * @var string $Title |
||
45 | */ |
||
46 | protected $Title = null; |
||
47 | |||
48 | /** |
||
49 | * @var string $Country |
||
50 | */ |
||
51 | protected $Country = null; |
||
52 | |||
53 | /** |
||
54 | * @var string $ZipCode |
||
55 | */ |
||
56 | protected $ZipCode = null; |
||
57 | |||
58 | /** |
||
59 | * @var string $Address2 |
||
60 | */ |
||
61 | protected $Address2 = null; |
||
62 | |||
63 | /** |
||
64 | * @var string $WebSiteURL |
||
65 | */ |
||
66 | protected $WebSiteURL = null; |
||
67 | |||
68 | /** |
||
69 | * @var string $Email |
||
70 | */ |
||
71 | protected $Email = null; |
||
72 | |||
73 | /** |
||
74 | * @var boolean $IsMailing |
||
75 | */ |
||
76 | protected $IsMailing = null; |
||
77 | |||
78 | /** |
||
79 | * @var string $OtherCieName |
||
80 | */ |
||
81 | protected $OtherCieName = null; |
||
82 | |||
83 | /** |
||
84 | * @var int $ConfirmBy |
||
85 | */ |
||
86 | protected $ConfirmBy = null; |
||
87 | |||
88 | /** |
||
89 | * @param int $AddressID |
||
90 | * @param int $Dear |
||
91 | * @param string $Address1 |
||
92 | * @param string $LastName |
||
93 | * @param string $FirstName |
||
94 | * @param string $City |
||
95 | * @param string $State |
||
96 | * @param string $Title |
||
97 | * @param string $Country |
||
98 | * @param string $ZipCode |
||
99 | * @param string $Address2 |
||
100 | * @param string $WebSiteURL |
||
101 | * @param string $Email |
||
102 | * @param boolean $IsMailing |
||
103 | * @param string $OtherCieName |
||
104 | * @param int $ConfirmBy |
||
105 | */ |
||
106 | public function __construct($AddressID, $Dear, $Address1, $LastName, $FirstName, $City, $State, $Title, $Country, $ZipCode, $Address2, $WebSiteURL, $Email, $IsMailing, $OtherCieName, $ConfirmBy) |
||
125 | |||
126 | /** |
||
127 | * @return int |
||
128 | */ |
||
129 | public function getAddressID() |
||
133 | |||
134 | /** |
||
135 | * @param int $AddressID |
||
136 | * @return \Gueststream\PMS\IQWare\API\Address |
||
137 | */ |
||
138 | public function setAddressID($AddressID) |
||
143 | |||
144 | /** |
||
145 | * @return int |
||
146 | */ |
||
147 | public function getDear() |
||
151 | |||
152 | /** |
||
153 | * @param int $Dear |
||
154 | * @return \Gueststream\PMS\IQWare\API\Address |
||
155 | */ |
||
156 | public function setDear($Dear) |
||
161 | |||
162 | /** |
||
163 | * @return string |
||
164 | */ |
||
165 | public function getAddress1() |
||
169 | |||
170 | /** |
||
171 | * @param string $Address1 |
||
172 | * @return \Gueststream\PMS\IQWare\API\Address |
||
173 | */ |
||
174 | public function setAddress1($Address1) |
||
179 | |||
180 | /** |
||
181 | * @return string |
||
182 | */ |
||
183 | public function getLastName() |
||
187 | |||
188 | /** |
||
189 | * @param string $LastName |
||
190 | * @return \Gueststream\PMS\IQWare\API\Address |
||
191 | */ |
||
192 | public function setLastName($LastName) |
||
197 | |||
198 | /** |
||
199 | * @return string |
||
200 | */ |
||
201 | public function getFirstName() |
||
205 | |||
206 | /** |
||
207 | * @param string $FirstName |
||
208 | * @return \Gueststream\PMS\IQWare\API\Address |
||
209 | */ |
||
210 | public function setFirstName($FirstName) |
||
215 | |||
216 | /** |
||
217 | * @return string |
||
218 | */ |
||
219 | public function getCity() |
||
223 | |||
224 | /** |
||
225 | * @param string $City |
||
226 | * @return \Gueststream\PMS\IQWare\API\Address |
||
227 | */ |
||
228 | public function setCity($City) |
||
233 | |||
234 | /** |
||
235 | * @return string |
||
236 | */ |
||
237 | public function getState() |
||
241 | |||
242 | /** |
||
243 | * @param string $State |
||
244 | * @return \Gueststream\PMS\IQWare\API\Address |
||
245 | */ |
||
246 | public function setState($State) |
||
251 | |||
252 | /** |
||
253 | * @return string |
||
254 | */ |
||
255 | public function getTitle() |
||
259 | |||
260 | /** |
||
261 | * @param string $Title |
||
262 | * @return \Gueststream\PMS\IQWare\API\Address |
||
263 | */ |
||
264 | public function setTitle($Title) |
||
269 | |||
270 | /** |
||
271 | * @return string |
||
272 | */ |
||
273 | public function getCountry() |
||
277 | |||
278 | /** |
||
279 | * @param string $Country |
||
280 | * @return \Gueststream\PMS\IQWare\API\Address |
||
281 | */ |
||
282 | public function setCountry($Country) |
||
287 | |||
288 | /** |
||
289 | * @return string |
||
290 | */ |
||
291 | public function getZipCode() |
||
295 | |||
296 | /** |
||
297 | * @param string $ZipCode |
||
298 | * @return \Gueststream\PMS\IQWare\API\Address |
||
299 | */ |
||
300 | public function setZipCode($ZipCode) |
||
305 | |||
306 | /** |
||
307 | * @return string |
||
308 | */ |
||
309 | public function getAddress2() |
||
313 | |||
314 | /** |
||
315 | * @param string $Address2 |
||
316 | * @return \Gueststream\PMS\IQWare\API\Address |
||
317 | */ |
||
318 | public function setAddress2($Address2) |
||
323 | |||
324 | /** |
||
325 | * @return string |
||
326 | */ |
||
327 | public function getWebSiteURL() |
||
331 | |||
332 | /** |
||
333 | * @param string $WebSiteURL |
||
334 | * @return \Gueststream\PMS\IQWare\API\Address |
||
335 | */ |
||
336 | public function setWebSiteURL($WebSiteURL) |
||
341 | |||
342 | /** |
||
343 | * @return string |
||
344 | */ |
||
345 | public function getEmail() |
||
349 | |||
350 | /** |
||
351 | * @param string $Email |
||
352 | * @return \Gueststream\PMS\IQWare\API\Address |
||
353 | */ |
||
354 | public function setEmail($Email) |
||
359 | |||
360 | /** |
||
361 | * @return boolean |
||
362 | */ |
||
363 | public function getIsMailing() |
||
367 | |||
368 | /** |
||
369 | * @param boolean $IsMailing |
||
370 | * @return \Gueststream\PMS\IQWare\API\Address |
||
371 | */ |
||
372 | public function setIsMailing($IsMailing) |
||
377 | |||
378 | /** |
||
379 | * @return string |
||
380 | */ |
||
381 | public function getOtherCieName() |
||
385 | |||
386 | /** |
||
387 | * @param string $OtherCieName |
||
388 | * @return \Gueststream\PMS\IQWare\API\Address |
||
389 | */ |
||
390 | public function setOtherCieName($OtherCieName) |
||
395 | |||
396 | /** |
||
397 | * @return int |
||
398 | */ |
||
399 | public function getConfirmBy() |
||
403 | |||
404 | /** |
||
405 | * @param int $ConfirmBy |
||
406 | * @return \Gueststream\PMS\IQWare\API\Address |
||
407 | */ |
||
408 | public function setConfirmBy($ConfirmBy) |
||
413 | } |
||
414 |