forked from cardpay/php-sdk-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlights.php
693 lines (604 loc) · 22.1 KB
/
Flights.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
<?php
/**
* PHP SDK for Unlimit API v3. All rights reserved.
*/
namespace Cardpay\model;
use \ArrayAccess;
use \Cardpay\ObjectSerializer;
class Flights implements ModelInterface, ArrayAccess
{
const DISCRIMINATOR = null;
/**
* The original name of the model.
*
* @var string
*/
protected static $swaggerModelName = 'Flights';
/**
* Array of property to type mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $swaggerTypes = [
'computerized_res_system' => 'string',
'credit_reason_indicator' => 'string',
'departure_date' => 'string',
'flight' => '\Cardpay\model\Flight[]',
'is_restricted' => 'bool',
'origination_code' => 'string',
'passenger_name' => 'string',
'ticket_change_indicator' => 'string',
'ticket_number' => 'string',
'travel_agency_code' => 'string',
'travel_agency_name' => 'string'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $swaggerFormats = [
'computerized_res_system' => null,
'credit_reason_indicator' => null,
'departure_date' => null,
'flight' => null,
'is_restricted' => null,
'origination_code' => null,
'passenger_name' => null,
'ticket_change_indicator' => null,
'ticket_number' => null,
'travel_agency_code' => null,
'travel_agency_name' => null
];
/**
* Array of property to type mappings. Used for (de)serialization
*
* @return array
*/
public static function swaggerTypes()
{
return self::$swaggerTypes;
}
/**
* Array of property to format mappings. Used for (de)serialization
*
* @return array
*/
public static function swaggerFormats()
{
return self::$swaggerFormats;
}
/**
* Array of attributes where the key is the local name,
* and the value is the original name
*
* @var string[]
*/
protected static $attributeMap = [
'computerized_res_system' => 'computerized_res_system',
'credit_reason_indicator' => 'credit_reason_indicator',
'departure_date' => 'departure_date',
'flight' => 'flight',
'is_restricted' => 'is_restricted',
'origination_code' => 'origination_code',
'passenger_name' => 'passenger_name',
'ticket_change_indicator' => 'ticket_change_indicator',
'ticket_number' => 'ticket_number',
'travel_agency_code' => 'travel_agency_code',
'travel_agency_name' => 'travel_agency_name'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'computerized_res_system' => 'setComputerizedResSystem',
'credit_reason_indicator' => 'setCreditReasonIndicator',
'departure_date' => 'setDepartureDate',
'flight' => 'setFlight',
'is_restricted' => 'setIsRestricted',
'origination_code' => 'setOriginationCode',
'passenger_name' => 'setPassengerName',
'ticket_change_indicator' => 'setTicketChangeIndicator',
'ticket_number' => 'setTicketNumber',
'travel_agency_code' => 'setTravelAgencyCode',
'travel_agency_name' => 'setTravelAgencyName'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'computerized_res_system' => 'getComputerizedResSystem',
'credit_reason_indicator' => 'getCreditReasonIndicator',
'departure_date' => 'getDepartureDate',
'flight' => 'getFlight',
'is_restricted' => 'getIsRestricted',
'origination_code' => 'getOriginationCode',
'passenger_name' => 'getPassengerName',
'ticket_change_indicator' => 'getTicketChangeIndicator',
'ticket_number' => 'getTicketNumber',
'travel_agency_code' => 'getTravelAgencyCode',
'travel_agency_name' => 'getTravelAgencyName'
];
/**
* Array of attributes where the key is the local name,
* and the value is the original name
*
* @return array
*/
public static function attributeMap()
{
return self::$attributeMap;
}
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @return array
*/
public static function setters()
{
return self::$setters;
}
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @return array
*/
public static function getters()
{
return self::$getters;
}
/**
* The original name of the model.
*
* @return string
*/
public function getModelName()
{
return self::$swaggerModelName;
}
/**
* Associative array for storing property values
*
* @var mixed[]
*/
protected $container = [];
/**
* Constructor
*
* @param mixed[] $data Associated array of property values
* initializing the model
*/
public function __construct(array $data = null)
{
$this->container['computerized_res_system'] = isset($data['computerized_res_system']) ? $data['computerized_res_system'] : null;
$this->container['credit_reason_indicator'] = isset($data['credit_reason_indicator']) ? $data['credit_reason_indicator'] : null;
$this->container['departure_date'] = isset($data['departure_date']) ? $data['departure_date'] : null;
$this->container['flight'] = isset($data['flight']) ? $data['flight'] : null;
$this->container['is_restricted'] = isset($data['is_restricted']) ? $data['is_restricted'] : null;
$this->container['origination_code'] = isset($data['origination_code']) ? $data['origination_code'] : null;
$this->container['passenger_name'] = isset($data['passenger_name']) ? $data['passenger_name'] : null;
$this->container['ticket_change_indicator'] = isset($data['ticket_change_indicator']) ? $data['ticket_change_indicator'] : null;
$this->container['ticket_number'] = isset($data['ticket_number']) ? $data['ticket_number'] : null;
$this->container['travel_agency_code'] = isset($data['travel_agency_code']) ? $data['travel_agency_code'] : null;
$this->container['travel_agency_name'] = isset($data['travel_agency_name']) ? $data['travel_agency_name'] : null;
}
/**
* Show all the invalid properties with reasons.
*
* @return array invalid properties with reasons
*/
public function listInvalidProperties()
{
$invalidProperties = [];
if (!is_null($this->container['computerized_res_system']) && (mb_strlen($this->container['computerized_res_system']) > 4)) {
$invalidProperties[] = "invalid value for 'computerized_res_system', the character length must be smaller than or equal to 4.";
}
if (!is_null($this->container['computerized_res_system']) && (mb_strlen($this->container['computerized_res_system']) < 0)) {
$invalidProperties[] = "invalid value for 'computerized_res_system', the character length must be bigger than or equal to 0.";
}
if (!is_null($this->container['credit_reason_indicator']) && (mb_strlen($this->container['credit_reason_indicator']) > 1)) {
$invalidProperties[] = "invalid value for 'credit_reason_indicator', the character length must be smaller than or equal to 1.";
}
if (!is_null($this->container['credit_reason_indicator']) && (mb_strlen($this->container['credit_reason_indicator']) < 1)) {
$invalidProperties[] = "invalid value for 'credit_reason_indicator', the character length must be bigger than or equal to 1.";
}
if (!is_null($this->container['origination_code']) && (mb_strlen($this->container['origination_code']) > 3)) {
$invalidProperties[] = "invalid value for 'origination_code', the character length must be smaller than or equal to 3.";
}
if (!is_null($this->container['origination_code']) && (mb_strlen($this->container['origination_code']) < 3)) {
$invalidProperties[] = "invalid value for 'origination_code', the character length must be bigger than or equal to 3.";
}
if (!is_null($this->container['passenger_name']) && (mb_strlen($this->container['passenger_name']) > 20)) {
$invalidProperties[] = "invalid value for 'passenger_name', the character length must be smaller than or equal to 20.";
}
if (!is_null($this->container['passenger_name']) && (mb_strlen($this->container['passenger_name']) < 0)) {
$invalidProperties[] = "invalid value for 'passenger_name', the character length must be bigger than or equal to 0.";
}
if (!is_null($this->container['ticket_change_indicator']) && (mb_strlen($this->container['ticket_change_indicator']) > 1)) {
$invalidProperties[] = "invalid value for 'ticket_change_indicator', the character length must be smaller than or equal to 1.";
}
if (!is_null($this->container['ticket_change_indicator']) && (mb_strlen($this->container['ticket_change_indicator']) < 1)) {
$invalidProperties[] = "invalid value for 'ticket_change_indicator', the character length must be bigger than or equal to 1.";
}
if (!is_null($this->container['ticket_number']) && (mb_strlen($this->container['ticket_number']) > 15)) {
$invalidProperties[] = "invalid value for 'ticket_number', the character length must be smaller than or equal to 15.";
}
if (!is_null($this->container['ticket_number']) && (mb_strlen($this->container['ticket_number']) < 0)) {
$invalidProperties[] = "invalid value for 'ticket_number', the character length must be bigger than or equal to 0.";
}
if (!is_null($this->container['travel_agency_code']) && (mb_strlen($this->container['travel_agency_code']) > 8)) {
$invalidProperties[] = "invalid value for 'travel_agency_code', the character length must be smaller than or equal to 8.";
}
if (!is_null($this->container['travel_agency_code']) && (mb_strlen($this->container['travel_agency_code']) < 0)) {
$invalidProperties[] = "invalid value for 'travel_agency_code', the character length must be bigger than or equal to 0.";
}
if (!is_null($this->container['travel_agency_name']) && (mb_strlen($this->container['travel_agency_name']) > 25)) {
$invalidProperties[] = "invalid value for 'travel_agency_name', the character length must be smaller than or equal to 25.";
}
if (!is_null($this->container['travel_agency_name']) && (mb_strlen($this->container['travel_agency_name']) < 0)) {
$invalidProperties[] = "invalid value for 'travel_agency_name', the character length must be bigger than or equal to 0.";
}
return $invalidProperties;
}
/**
* Validate all the properties in the model
* return true if all passed
*
* @return bool True if all properties are valid
*/
public function valid()
{
return count($this->listInvalidProperties()) === 0;
}
/**
* Gets computerized_res_system
*
* @return string
*/
public function getComputerizedResSystem()
{
return $this->container['computerized_res_system'];
}
/**
* Sets computerized_res_system
*
* @param string $computerized_res_system Computerized reservation system code
*
* @return $this
*/
public function setComputerizedResSystem($computerized_res_system)
{
if (!is_null($computerized_res_system) && (mb_strlen($computerized_res_system) > 4)) {
throw new \InvalidArgumentException('invalid length for $computerized_res_system when calling Flights., must be smaller than or equal to 4.');
}
if (!is_null($computerized_res_system) && (mb_strlen($computerized_res_system) < 0)) {
throw new \InvalidArgumentException('invalid length for $computerized_res_system when calling Flights., must be bigger than or equal to 0.');
}
$this->container['computerized_res_system'] = $computerized_res_system;
return $this;
}
/**
* Gets credit_reason_indicator
*
* @return string
*/
public function getCreditReasonIndicator()
{
return $this->container['credit_reason_indicator'];
}
/**
* Sets credit_reason_indicator
*
* @param string $credit_reason_indicator Credit reason indicator
*
* @return $this
*/
public function setCreditReasonIndicator($credit_reason_indicator)
{
if (!is_null($credit_reason_indicator) && (mb_strlen($credit_reason_indicator) > 1)) {
throw new \InvalidArgumentException('invalid length for $credit_reason_indicator when calling Flights., must be smaller than or equal to 1.');
}
if (!is_null($credit_reason_indicator) && (mb_strlen($credit_reason_indicator) < 1)) {
throw new \InvalidArgumentException('invalid length for $credit_reason_indicator when calling Flights., must be bigger than or equal to 1.');
}
$this->container['credit_reason_indicator'] = $credit_reason_indicator;
return $this;
}
/**
* Gets departure_date
*
* @return string
*/
public function getDepartureDate()
{
return $this->container['departure_date'];
}
/**
* Sets departure_date
*
* @param string $departure_date Date of departure in format 'DD.MM.YYYY'
*
* @return $this
*/
public function setDepartureDate($departure_date)
{
$this->container['departure_date'] = $departure_date;
return $this;
}
/**
* Gets flight
*
* @return \Cardpay\model\Flight[]
*/
public function getFlight()
{
return $this->container['flight'];
}
/**
* Sets flight
*
* @param \Cardpay\model\Flight[] $flight Information about particular flight legs, shouldn't have more than 4 flight subsections in one flights section.
*
* @return $this
*/
public function setFlight($flight)
{
$this->container['flight'] = $flight;
return $this;
}
/**
* Gets is_restricted
*
* @return bool
*/
public function getIsRestricted()
{
return $this->container['is_restricted'];
}
/**
* Sets is_restricted
*
* @param bool $is_restricted Restricted ticket indicator
*
* @return $this
*/
public function setIsRestricted($is_restricted)
{
$this->container['is_restricted'] = $is_restricted;
return $this;
}
/**
* Gets origination_code
*
* @return string
*/
public function getOriginationCode()
{
return $this->container['origination_code'];
}
/**
* Sets origination_code
*
* @param string $origination_code Code of airport of departure, IATA code
*
* @return $this
*/
public function setOriginationCode($origination_code)
{
if (!is_null($origination_code) && (mb_strlen($origination_code) > 3)) {
throw new \InvalidArgumentException('invalid length for $origination_code when calling Flights., must be smaller than or equal to 3.');
}
if (!is_null($origination_code) && (mb_strlen($origination_code) < 3)) {
throw new \InvalidArgumentException('invalid length for $origination_code when calling Flights., must be bigger than or equal to 3.');
}
$this->container['origination_code'] = $origination_code;
return $this;
}
/**
* Gets passenger_name
*
* @return string
*/
public function getPassengerName()
{
return $this->container['passenger_name'];
}
/**
* Sets passenger_name
*
* @param string $passenger_name First and last name of a passenger
*
* @return $this
*/
public function setPassengerName($passenger_name)
{
if (!is_null($passenger_name) && (mb_strlen($passenger_name) > 20)) {
throw new \InvalidArgumentException('invalid length for $passenger_name when calling Flights., must be smaller than or equal to 20.');
}
if (!is_null($passenger_name) && (mb_strlen($passenger_name) < 0)) {
throw new \InvalidArgumentException('invalid length for $passenger_name when calling Flights., must be bigger than or equal to 0.');
}
$this->container['passenger_name'] = $passenger_name;
return $this;
}
/**
* Gets ticket_change_indicator
*
* @return string
*/
public function getTicketChangeIndicator()
{
return $this->container['ticket_change_indicator'];
}
/**
* Sets ticket_change_indicator
*
* @param string $ticket_change_indicator Ticket change indicator
*
* @return $this
*/
public function setTicketChangeIndicator($ticket_change_indicator)
{
if (!is_null($ticket_change_indicator) && (mb_strlen($ticket_change_indicator) > 1)) {
throw new \InvalidArgumentException('invalid length for $ticket_change_indicator when calling Flights., must be smaller than or equal to 1.');
}
if (!is_null($ticket_change_indicator) && (mb_strlen($ticket_change_indicator) < 1)) {
throw new \InvalidArgumentException('invalid length for $ticket_change_indicator when calling Flights., must be bigger than or equal to 1.');
}
$this->container['ticket_change_indicator'] = $ticket_change_indicator;
return $this;
}
/**
* Gets ticket_number
*
* @return string
*/
public function getTicketNumber()
{
return $this->container['ticket_number'];
}
/**
* Sets ticket_number
*
* @param string $ticket_number Ticket number
*
* @return $this
*/
public function setTicketNumber($ticket_number)
{
if (!is_null($ticket_number) && (mb_strlen($ticket_number) > 15)) {
throw new \InvalidArgumentException('invalid length for $ticket_number when calling Flights., must be smaller than or equal to 15.');
}
if (!is_null($ticket_number) && (mb_strlen($ticket_number) < 0)) {
throw new \InvalidArgumentException('invalid length for $ticket_number when calling Flights., must be bigger than or equal to 0.');
}
$this->container['ticket_number'] = $ticket_number;
return $this;
}
/**
* Gets travel_agency_code
*
* @return string
*/
public function getTravelAgencyCode()
{
return $this->container['travel_agency_code'];
}
/**
* Sets travel_agency_code
*
* @param string $travel_agency_code Code of travel agency
*
* @return $this
*/
public function setTravelAgencyCode($travel_agency_code)
{
if (!is_null($travel_agency_code) && (mb_strlen($travel_agency_code) > 8)) {
throw new \InvalidArgumentException('invalid length for $travel_agency_code when calling Flights., must be smaller than or equal to 8.');
}
if (!is_null($travel_agency_code) && (mb_strlen($travel_agency_code) < 0)) {
throw new \InvalidArgumentException('invalid length for $travel_agency_code when calling Flights., must be bigger than or equal to 0.');
}
$this->container['travel_agency_code'] = $travel_agency_code;
return $this;
}
/**
* Gets travel_agency_name
*
* @return string
*/
public function getTravelAgencyName()
{
return $this->container['travel_agency_name'];
}
/**
* Sets travel_agency_name
*
* @param string $travel_agency_name Name of travel agency using only latin alphabet
*
* @return $this
*/
public function setTravelAgencyName($travel_agency_name)
{
if (!is_null($travel_agency_name) && (mb_strlen($travel_agency_name) > 25)) {
throw new \InvalidArgumentException('invalid length for $travel_agency_name when calling Flights., must be smaller than or equal to 25.');
}
if (!is_null($travel_agency_name) && (mb_strlen($travel_agency_name) < 0)) {
throw new \InvalidArgumentException('invalid length for $travel_agency_name when calling Flights., must be bigger than or equal to 0.');
}
$this->container['travel_agency_name'] = $travel_agency_name;
return $this;
}
/**
* Returns true if offset exists. False otherwise.
*
* @param integer $offset Offset
*
* @return boolean
*/
#[\ReturnTypeWillChange]
public function offsetExists($offset)
{
return isset($this->container[$offset]);
}
/**
* Gets offset.
*
* @param integer $offset Offset
*
* @return mixed
*/
#[\ReturnTypeWillChange]
public function offsetGet($offset)
{
return isset($this->container[$offset]) ? $this->container[$offset] : null;
}
/**
* Sets value based on offset.
*
* @param integer $offset Offset
* @param mixed $value Value to be set
*
* @return void
*/
#[\ReturnTypeWillChange]
public function offsetSet($offset, $value)
{
if (is_null($offset)) {
$this->container[] = $value;
} else {
$this->container[$offset] = $value;
}
}
/**
* Unsets offset.
*
* @param integer $offset Offset
*
* @return void
*/
#[\ReturnTypeWillChange]
public function offsetUnset($offset)
{
unset($this->container[$offset]);
}
/**
* Gets the string presentation of the object
*
* @return string
*/
public function __toString()
{
if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print
return json_encode(
ObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
}
return json_encode(ObjectSerializer::sanitizeForSerialization($this));
}
}