NewTravelAgent::getWorkPhone()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 2
1
<?php
2
3
namespace Gueststream\PMS\IQWare\API;
4
5
class NewTravelAgent
6
{
7
8
    /**
9
     * @var string $UserName
10
     */
11
    protected $UserName = null;
12
13
    /**
14
     * @var string $Password
15
     */
16
    protected $Password = null;
17
18
    /**
19
     * @var string $IATANo
20
     */
21
    protected $IATANo = null;
22
23
    /**
24
     * @var int $Dear
25
     */
26
    protected $Dear = null;
27
28
    /**
29
     * @var string $Address1
30
     */
31
    protected $Address1 = null;
32
33
    /**
34
     * @var string $LastName
35
     */
36
    protected $LastName = null;
37
38
    /**
39
     * @var string $FirstName
40
     */
41
    protected $FirstName = null;
42
43
    /**
44
     * @var string $City
45
     */
46
    protected $City = null;
47
48
    /**
49
     * @var string $State
50
     */
51
    protected $State = null;
52
53
    /**
54
     * @var string $Title
55
     */
56
    protected $Title = null;
57
58
    /**
59
     * @var string $Country
60
     */
61
    protected $Country = null;
62
63
    /**
64
     * @var string $ZipCode
65
     */
66
    protected $ZipCode = null;
67
68
    /**
69
     * @var string $Address2
70
     */
71
    protected $Address2 = null;
72
73
    /**
74
     * @var string $WebSiteURL
75
     */
76
    protected $WebSiteURL = null;
77
78
    /**
79
     * @var string $Email
80
     */
81
    protected $Email = null;
82
83
    /**
84
     * @var boolean $IsMailing
85
     */
86
    protected $IsMailing = null;
87
88
    /**
89
     * @var string $OtherCieName
90
     */
91
    protected $OtherCieName = null;
92
93
    /**
94
     * @var int $ConfirmBy
95
     */
96
    protected $ConfirmBy = null;
97
98
    /**
99
     * @var string $HomePhone
100
     */
101
    protected $HomePhone = null;
102
103
    /**
104
     * @var string $WorkPhone
105
     */
106
    protected $WorkPhone = null;
107
108
    /**
109
     * @var string $Fax
110
     */
111
    protected $Fax = null;
112
113
    /**
114
     * @param string $UserName
115
     * @param string $Password
116
     * @param string $IATANo
117
     * @param int $Dear
118
     * @param string $Address1
119
     * @param string $LastName
120
     * @param string $FirstName
121
     * @param string $City
122
     * @param string $State
123
     * @param string $Title
124
     * @param string $Country
125
     * @param string $ZipCode
126
     * @param string $Address2
127
     * @param string $WebSiteURL
128
     * @param string $Email
129
     * @param boolean $IsMailing
130
     * @param string $OtherCieName
131
     * @param int $ConfirmBy
132
     * @param string $HomePhone
133
     * @param string $WorkPhone
134
     * @param string $Fax
135
     */
136
    public function __construct($UserName, $Password, $IATANo, $Dear, $Address1, $LastName, $FirstName, $City, $State, $Title, $Country, $ZipCode, $Address2, $WebSiteURL, $Email, $IsMailing, $OtherCieName, $ConfirmBy, $HomePhone, $WorkPhone, $Fax)
137
    {
138
        $this->UserName = $UserName;
139
        $this->Password = $Password;
140
        $this->IATANo = $IATANo;
141
        $this->Dear = $Dear;
142
        $this->Address1 = $Address1;
143
        $this->LastName = $LastName;
144
        $this->FirstName = $FirstName;
145
        $this->City = $City;
146
        $this->State = $State;
147
        $this->Title = $Title;
148
        $this->Country = $Country;
149
        $this->ZipCode = $ZipCode;
150
        $this->Address2 = $Address2;
151
        $this->WebSiteURL = $WebSiteURL;
152
        $this->Email = $Email;
153
        $this->IsMailing = $IsMailing;
154
        $this->OtherCieName = $OtherCieName;
155
        $this->ConfirmBy = $ConfirmBy;
156
        $this->HomePhone = $HomePhone;
157
        $this->WorkPhone = $WorkPhone;
158
        $this->Fax = $Fax;
159
    }
160
161
    /**
162
     * @return string
163
     */
164
    public function getUserName()
165
    {
166
        return $this->UserName;
167
    }
168
169
    /**
170
     * @param string $UserName
171
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
172
     */
173
    public function setUserName($UserName)
174
    {
175
        $this->UserName = $UserName;
176
        return $this;
177
    }
178
179
    /**
180
     * @return string
181
     */
182
    public function getPassword()
183
    {
184
        return $this->Password;
185
    }
186
187
    /**
188
     * @param string $Password
189
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
190
     */
191
    public function setPassword($Password)
192
    {
193
        $this->Password = $Password;
194
        return $this;
195
    }
196
197
    /**
198
     * @return string
199
     */
200
    public function getIATANo()
201
    {
202
        return $this->IATANo;
203
    }
204
205
    /**
206
     * @param string $IATANo
207
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
208
     */
209
    public function setIATANo($IATANo)
210
    {
211
        $this->IATANo = $IATANo;
212
        return $this;
213
    }
214
215
    /**
216
     * @return int
217
     */
218
    public function getDear()
219
    {
220
        return $this->Dear;
221
    }
222
223
    /**
224
     * @param int $Dear
225
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
226
     */
227
    public function setDear($Dear)
228
    {
229
        $this->Dear = $Dear;
230
        return $this;
231
    }
232
233
    /**
234
     * @return string
235
     */
236
    public function getAddress1()
237
    {
238
        return $this->Address1;
239
    }
240
241
    /**
242
     * @param string $Address1
243
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
244
     */
245
    public function setAddress1($Address1)
246
    {
247
        $this->Address1 = $Address1;
248
        return $this;
249
    }
250
251
    /**
252
     * @return string
253
     */
254
    public function getLastName()
255
    {
256
        return $this->LastName;
257
    }
258
259
    /**
260
     * @param string $LastName
261
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
262
     */
263
    public function setLastName($LastName)
264
    {
265
        $this->LastName = $LastName;
266
        return $this;
267
    }
268
269
    /**
270
     * @return string
271
     */
272
    public function getFirstName()
273
    {
274
        return $this->FirstName;
275
    }
276
277
    /**
278
     * @param string $FirstName
279
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
280
     */
281
    public function setFirstName($FirstName)
282
    {
283
        $this->FirstName = $FirstName;
284
        return $this;
285
    }
286
287
    /**
288
     * @return string
289
     */
290
    public function getCity()
291
    {
292
        return $this->City;
293
    }
294
295
    /**
296
     * @param string $City
297
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
298
     */
299
    public function setCity($City)
300
    {
301
        $this->City = $City;
302
        return $this;
303
    }
304
305
    /**
306
     * @return string
307
     */
308
    public function getState()
309
    {
310
        return $this->State;
311
    }
312
313
    /**
314
     * @param string $State
315
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
316
     */
317
    public function setState($State)
318
    {
319
        $this->State = $State;
320
        return $this;
321
    }
322
323
    /**
324
     * @return string
325
     */
326
    public function getTitle()
327
    {
328
        return $this->Title;
329
    }
330
331
    /**
332
     * @param string $Title
333
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
334
     */
335
    public function setTitle($Title)
336
    {
337
        $this->Title = $Title;
338
        return $this;
339
    }
340
341
    /**
342
     * @return string
343
     */
344
    public function getCountry()
345
    {
346
        return $this->Country;
347
    }
348
349
    /**
350
     * @param string $Country
351
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
352
     */
353
    public function setCountry($Country)
354
    {
355
        $this->Country = $Country;
356
        return $this;
357
    }
358
359
    /**
360
     * @return string
361
     */
362
    public function getZipCode()
363
    {
364
        return $this->ZipCode;
365
    }
366
367
    /**
368
     * @param string $ZipCode
369
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
370
     */
371
    public function setZipCode($ZipCode)
372
    {
373
        $this->ZipCode = $ZipCode;
374
        return $this;
375
    }
376
377
    /**
378
     * @return string
379
     */
380
    public function getAddress2()
381
    {
382
        return $this->Address2;
383
    }
384
385
    /**
386
     * @param string $Address2
387
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
388
     */
389
    public function setAddress2($Address2)
390
    {
391
        $this->Address2 = $Address2;
392
        return $this;
393
    }
394
395
    /**
396
     * @return string
397
     */
398
    public function getWebSiteURL()
399
    {
400
        return $this->WebSiteURL;
401
    }
402
403
    /**
404
     * @param string $WebSiteURL
405
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
406
     */
407
    public function setWebSiteURL($WebSiteURL)
408
    {
409
        $this->WebSiteURL = $WebSiteURL;
410
        return $this;
411
    }
412
413
    /**
414
     * @return string
415
     */
416
    public function getEmail()
417
    {
418
        return $this->Email;
419
    }
420
421
    /**
422
     * @param string $Email
423
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
424
     */
425
    public function setEmail($Email)
426
    {
427
        $this->Email = $Email;
428
        return $this;
429
    }
430
431
    /**
432
     * @return boolean
433
     */
434
    public function getIsMailing()
435
    {
436
        return $this->IsMailing;
437
    }
438
439
    /**
440
     * @param boolean $IsMailing
441
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
442
     */
443
    public function setIsMailing($IsMailing)
444
    {
445
        $this->IsMailing = $IsMailing;
446
        return $this;
447
    }
448
449
    /**
450
     * @return string
451
     */
452
    public function getOtherCieName()
453
    {
454
        return $this->OtherCieName;
455
    }
456
457
    /**
458
     * @param string $OtherCieName
459
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
460
     */
461
    public function setOtherCieName($OtherCieName)
462
    {
463
        $this->OtherCieName = $OtherCieName;
464
        return $this;
465
    }
466
467
    /**
468
     * @return int
469
     */
470
    public function getConfirmBy()
471
    {
472
        return $this->ConfirmBy;
473
    }
474
475
    /**
476
     * @param int $ConfirmBy
477
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
478
     */
479
    public function setConfirmBy($ConfirmBy)
480
    {
481
        $this->ConfirmBy = $ConfirmBy;
482
        return $this;
483
    }
484
485
    /**
486
     * @return string
487
     */
488
    public function getHomePhone()
489
    {
490
        return $this->HomePhone;
491
    }
492
493
    /**
494
     * @param string $HomePhone
495
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
496
     */
497
    public function setHomePhone($HomePhone)
498
    {
499
        $this->HomePhone = $HomePhone;
500
        return $this;
501
    }
502
503
    /**
504
     * @return string
505
     */
506
    public function getWorkPhone()
507
    {
508
        return $this->WorkPhone;
509
    }
510
511
    /**
512
     * @param string $WorkPhone
513
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
514
     */
515
    public function setWorkPhone($WorkPhone)
516
    {
517
        $this->WorkPhone = $WorkPhone;
518
        return $this;
519
    }
520
521
    /**
522
     * @return string
523
     */
524
    public function getFax()
525
    {
526
        return $this->Fax;
527
    }
528
529
    /**
530
     * @param string $Fax
531
     * @return \Gueststream\PMS\IQWare\API\NewTravelAgent
532
     */
533
    public function setFax($Fax)
534
    {
535
        $this->Fax = $Fax;
536
        return $this;
537
    }
538
}
539