dtAvailability::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 56
Code Lines 54

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 56
ccs 0
cts 56
cp 0
rs 9.7251
c 0
b 0
f 0
cc 1
eloc 54
nc 1
nop 53
crap 2

How to fix   Long Method    Many Parameters   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

Many Parameters

Methods with many parameters are not only hard to understand, but their parameters also often become inconsistent when you need more, or different data.

There are several approaches to avoid long parameter lists:

1
<?php
2
3
namespace Gueststream\PMS\IQWare\API;
4
5
class dtAvailability
6
{
7
8
    /**
9
     * @var string $ShortName
10
     */
11
    protected $ShortName = null;
12
13
    /**
14
     * @var int $ID_RoomType
15
     */
16
    protected $ID_RoomType = null;
17
18
    /**
19
     * @var int $ID_AccommodationType
20
     */
21
    protected $ID_AccommodationType = null;
22
23
    /**
24
     * @var int $_x0030_
25
     */
26
    protected $_x0030_ = null;
27
28
    /**
29
     * @var int $_x0031_
30
     */
31
    protected $_x0031_ = null;
32
33
    /**
34
     * @var int $_x0032_
35
     */
36
    protected $_x0032_ = null;
37
38
    /**
39
     * @var int $_x0033_
40
     */
41
    protected $_x0033_ = null;
42
43
    /**
44
     * @var int $_x0034_
45
     */
46
    protected $_x0034_ = null;
47
48
    /**
49
     * @var int $_x0035_
50
     */
51
    protected $_x0035_ = null;
52
53
    /**
54
     * @var int $_x0036_
55
     */
56
    protected $_x0036_ = null;
57
58
    /**
59
     * @var int $_x0037_
60
     */
61
    protected $_x0037_ = null;
62
63
    /**
64
     * @var int $_x0038_
65
     */
66
    protected $_x0038_ = null;
67
68
    /**
69
     * @var int $_x0039_
70
     */
71
    protected $_x0039_ = null;
72
73
    /**
74
     * @var int $_x0031_0
75
     */
76
    protected $_x0031_0 = null;
77
78
    /**
79
     * @var int $_x0031_1
80
     */
81
    protected $_x0031_1 = null;
82
83
    /**
84
     * @var int $_x0031_2
85
     */
86
    protected $_x0031_2 = null;
87
88
    /**
89
     * @var int $_x0031_3
90
     */
91
    protected $_x0031_3 = null;
92
93
    /**
94
     * @var int $_x0031_4
95
     */
96
    protected $_x0031_4 = null;
97
98
    /**
99
     * @var int $_x0031_5
100
     */
101
    protected $_x0031_5 = null;
102
103
    /**
104
     * @var int $_x0031_6
105
     */
106
    protected $_x0031_6 = null;
107
108
    /**
109
     * @var int $_x0031_7
110
     */
111
    protected $_x0031_7 = null;
112
113
    /**
114
     * @var int $_x0031_8
115
     */
116
    protected $_x0031_8 = null;
117
118
    /**
119
     * @var int $_x0031_9
120
     */
121
    protected $_x0031_9 = null;
122
123
    /**
124
     * @var int $_x0032_0
125
     */
126
    protected $_x0032_0 = null;
127
128
    /**
129
     * @var int $_x0032_1
130
     */
131
    protected $_x0032_1 = null;
132
133
    /**
134
     * @var int $_x0032_2
135
     */
136
    protected $_x0032_2 = null;
137
138
    /**
139
     * @var int $_x0032_3
140
     */
141
    protected $_x0032_3 = null;
142
143
    /**
144
     * @var int $_x0032_4
145
     */
146
    protected $_x0032_4 = null;
147
148
    /**
149
     * @var int $_x0032_5
150
     */
151
    protected $_x0032_5 = null;
152
153
    /**
154
     * @var int $_x0032_6
155
     */
156
    protected $_x0032_6 = null;
157
158
    /**
159
     * @var int $_x0032_7
160
     */
161
    protected $_x0032_7 = null;
162
163
    /**
164
     * @var int $_x0032_8
165
     */
166
    protected $_x0032_8 = null;
167
168
    /**
169
     * @var int $_x0032_9
170
     */
171
    protected $_x0032_9 = null;
172
173
    /**
174
     * @var int $_x0033_0
175
     */
176
    protected $_x0033_0 = null;
177
178
    /**
179
     * @var int $_x0033_1
180
     */
181
    protected $_x0033_1 = null;
182
183
    /**
184
     * @var int $_x0033_2
185
     */
186
    protected $_x0033_2 = null;
187
188
    /**
189
     * @var int $_x0033_3
190
     */
191
    protected $_x0033_3 = null;
192
193
    /**
194
     * @var int $_x0033_4
195
     */
196
    protected $_x0033_4 = null;
197
198
    /**
199
     * @var int $_x0033_5
200
     */
201
    protected $_x0033_5 = null;
202
203
    /**
204
     * @var int $_x0033_6
205
     */
206
    protected $_x0033_6 = null;
207
208
    /**
209
     * @var int $_x0033_7
210
     */
211
    protected $_x0033_7 = null;
212
213
    /**
214
     * @var int $_x0033_8
215
     */
216
    protected $_x0033_8 = null;
217
218
    /**
219
     * @var int $_x0033_9
220
     */
221
    protected $_x0033_9 = null;
222
223
    /**
224
     * @var int $_x0034_0
225
     */
226
    protected $_x0034_0 = null;
227
228
    /**
229
     * @var int $_x0034_1
230
     */
231
    protected $_x0034_1 = null;
232
233
    /**
234
     * @var int $_x0034_2
235
     */
236
    protected $_x0034_2 = null;
237
238
    /**
239
     * @var int $_x0034_3
240
     */
241
    protected $_x0034_3 = null;
242
243
    /**
244
     * @var int $_x0034_4
245
     */
246
    protected $_x0034_4 = null;
247
248
    /**
249
     * @var int $_x0034_5
250
     */
251
    protected $_x0034_5 = null;
252
253
    /**
254
     * @var int $_x0034_6
255
     */
256
    protected $_x0034_6 = null;
257
258
    /**
259
     * @var int $_x0034_7
260
     */
261
    protected $_x0034_7 = null;
262
263
    /**
264
     * @var int $_x0034_8
265
     */
266
    protected $_x0034_8 = null;
267
268
    /**
269
     * @var int $_x0034_9
270
     */
271
    protected $_x0034_9 = null;
272
273
    /**
274
     * @param string $ShortName
275
     * @param int $ID_RoomType
276
     * @param int $ID_AccommodationType
277
     * @param int $_x0030_
278
     * @param int $_x0031_
279
     * @param int $_x0032_
280
     * @param int $_x0033_
281
     * @param int $_x0034_
282
     * @param int $_x0035_
283
     * @param int $_x0036_
284
     * @param int $_x0037_
285
     * @param int $_x0038_
286
     * @param int $_x0039_
287
     * @param int $_x0031_0
288
     * @param int $_x0031_1
289
     * @param int $_x0031_2
290
     * @param int $_x0031_3
291
     * @param int $_x0031_4
292
     * @param int $_x0031_5
293
     * @param int $_x0031_6
294
     * @param int $_x0031_7
295
     * @param int $_x0031_8
296
     * @param int $_x0031_9
297
     * @param int $_x0032_0
298
     * @param int $_x0032_1
299
     * @param int $_x0032_2
300
     * @param int $_x0032_3
301
     * @param int $_x0032_4
302
     * @param int $_x0032_5
303
     * @param int $_x0032_6
304
     * @param int $_x0032_7
305
     * @param int $_x0032_8
306
     * @param int $_x0032_9
307
     * @param int $_x0033_0
308
     * @param int $_x0033_1
309
     * @param int $_x0033_2
310
     * @param int $_x0033_3
311
     * @param int $_x0033_4
312
     * @param int $_x0033_5
313
     * @param int $_x0033_6
314
     * @param int $_x0033_7
315
     * @param int $_x0033_8
316
     * @param int $_x0033_9
317
     * @param int $_x0034_0
318
     * @param int $_x0034_1
319
     * @param int $_x0034_2
320
     * @param int $_x0034_3
321
     * @param int $_x0034_4
322
     * @param int $_x0034_5
323
     * @param int $_x0034_6
324
     * @param int $_x0034_7
325
     * @param int $_x0034_8
326
     * @param int $_x0034_9
327
     */
328
    public function __construct($ShortName, $ID_RoomType, $ID_AccommodationType, $_x0030_, $_x0031_, $_x0032_, $_x0033_, $_x0034_, $_x0035_, $_x0036_, $_x0037_, $_x0038_, $_x0039_, $_x0031_0, $_x0031_1, $_x0031_2, $_x0031_3, $_x0031_4, $_x0031_5, $_x0031_6, $_x0031_7, $_x0031_8, $_x0031_9, $_x0032_0, $_x0032_1, $_x0032_2, $_x0032_3, $_x0032_4, $_x0032_5, $_x0032_6, $_x0032_7, $_x0032_8, $_x0032_9, $_x0033_0, $_x0033_1, $_x0033_2, $_x0033_3, $_x0033_4, $_x0033_5, $_x0033_6, $_x0033_7, $_x0033_8, $_x0033_9, $_x0034_0, $_x0034_1, $_x0034_2, $_x0034_3, $_x0034_4, $_x0034_5, $_x0034_6, $_x0034_7, $_x0034_8, $_x0034_9)
329
    {
330
        $this->ShortName = $ShortName;
331
        $this->ID_RoomType = $ID_RoomType;
332
        $this->ID_AccommodationType = $ID_AccommodationType;
333
        $this->_x0030_ = $_x0030_;
334
        $this->_x0031_ = $_x0031_;
335
        $this->_x0032_ = $_x0032_;
336
        $this->_x0033_ = $_x0033_;
337
        $this->_x0034_ = $_x0034_;
338
        $this->_x0035_ = $_x0035_;
339
        $this->_x0036_ = $_x0036_;
340
        $this->_x0037_ = $_x0037_;
341
        $this->_x0038_ = $_x0038_;
342
        $this->_x0039_ = $_x0039_;
343
        $this->_x0031_0 = $_x0031_0;
344
        $this->_x0031_1 = $_x0031_1;
345
        $this->_x0031_2 = $_x0031_2;
346
        $this->_x0031_3 = $_x0031_3;
347
        $this->_x0031_4 = $_x0031_4;
348
        $this->_x0031_5 = $_x0031_5;
349
        $this->_x0031_6 = $_x0031_6;
350
        $this->_x0031_7 = $_x0031_7;
351
        $this->_x0031_8 = $_x0031_8;
352
        $this->_x0031_9 = $_x0031_9;
353
        $this->_x0032_0 = $_x0032_0;
354
        $this->_x0032_1 = $_x0032_1;
355
        $this->_x0032_2 = $_x0032_2;
356
        $this->_x0032_3 = $_x0032_3;
357
        $this->_x0032_4 = $_x0032_4;
358
        $this->_x0032_5 = $_x0032_5;
359
        $this->_x0032_6 = $_x0032_6;
360
        $this->_x0032_7 = $_x0032_7;
361
        $this->_x0032_8 = $_x0032_8;
362
        $this->_x0032_9 = $_x0032_9;
363
        $this->_x0033_0 = $_x0033_0;
364
        $this->_x0033_1 = $_x0033_1;
365
        $this->_x0033_2 = $_x0033_2;
366
        $this->_x0033_3 = $_x0033_3;
367
        $this->_x0033_4 = $_x0033_4;
368
        $this->_x0033_5 = $_x0033_5;
369
        $this->_x0033_6 = $_x0033_6;
370
        $this->_x0033_7 = $_x0033_7;
371
        $this->_x0033_8 = $_x0033_8;
372
        $this->_x0033_9 = $_x0033_9;
373
        $this->_x0034_0 = $_x0034_0;
374
        $this->_x0034_1 = $_x0034_1;
375
        $this->_x0034_2 = $_x0034_2;
376
        $this->_x0034_3 = $_x0034_3;
377
        $this->_x0034_4 = $_x0034_4;
378
        $this->_x0034_5 = $_x0034_5;
379
        $this->_x0034_6 = $_x0034_6;
380
        $this->_x0034_7 = $_x0034_7;
381
        $this->_x0034_8 = $_x0034_8;
382
        $this->_x0034_9 = $_x0034_9;
383
    }
384
385
    /**
386
     * @return string
387
     */
388
    public function getShortName()
389
    {
390
        return $this->ShortName;
391
    }
392
393
    /**
394
     * @param string $ShortName
395
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
396
     */
397
    public function setShortName($ShortName)
398
    {
399
        $this->ShortName = $ShortName;
400
        return $this;
401
    }
402
403
    /**
404
     * @return int
405
     */
406
    public function getID_RoomType()
407
    {
408
        return $this->ID_RoomType;
409
    }
410
411
    /**
412
     * @param int $ID_RoomType
413
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
414
     */
415
    public function setID_RoomType($ID_RoomType)
416
    {
417
        $this->ID_RoomType = $ID_RoomType;
418
        return $this;
419
    }
420
421
    /**
422
     * @return int
423
     */
424
    public function getID_AccommodationType()
425
    {
426
        return $this->ID_AccommodationType;
427
    }
428
429
    /**
430
     * @param int $ID_AccommodationType
431
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
432
     */
433
    public function setID_AccommodationType($ID_AccommodationType)
434
    {
435
        $this->ID_AccommodationType = $ID_AccommodationType;
436
        return $this;
437
    }
438
439
    /**
440
     * @return int
441
     */
442
    public function get_x0030_()
443
    {
444
        return $this->_x0030_;
445
    }
446
447
    /**
448
     * @param int $_x0030_
449
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
450
     */
451
    public function set_x0030_($_x0030_)
452
    {
453
        $this->_x0030_ = $_x0030_;
454
        return $this;
455
    }
456
457
    /**
458
     * @return int
459
     */
460
    public function get_x0031_()
461
    {
462
        return $this->_x0031_;
463
    }
464
465
    /**
466
     * @param int $_x0031_
467
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
468
     */
469
    public function set_x0031_($_x0031_)
470
    {
471
        $this->_x0031_ = $_x0031_;
472
        return $this;
473
    }
474
475
    /**
476
     * @return int
477
     */
478
    public function get_x0032_()
479
    {
480
        return $this->_x0032_;
481
    }
482
483
    /**
484
     * @param int $_x0032_
485
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
486
     */
487
    public function set_x0032_($_x0032_)
488
    {
489
        $this->_x0032_ = $_x0032_;
490
        return $this;
491
    }
492
493
    /**
494
     * @return int
495
     */
496
    public function get_x0033_()
497
    {
498
        return $this->_x0033_;
499
    }
500
501
    /**
502
     * @param int $_x0033_
503
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
504
     */
505
    public function set_x0033_($_x0033_)
506
    {
507
        $this->_x0033_ = $_x0033_;
508
        return $this;
509
    }
510
511
    /**
512
     * @return int
513
     */
514
    public function get_x0034_()
515
    {
516
        return $this->_x0034_;
517
    }
518
519
    /**
520
     * @param int $_x0034_
521
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
522
     */
523
    public function set_x0034_($_x0034_)
524
    {
525
        $this->_x0034_ = $_x0034_;
526
        return $this;
527
    }
528
529
    /**
530
     * @return int
531
     */
532
    public function get_x0035_()
533
    {
534
        return $this->_x0035_;
535
    }
536
537
    /**
538
     * @param int $_x0035_
539
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
540
     */
541
    public function set_x0035_($_x0035_)
542
    {
543
        $this->_x0035_ = $_x0035_;
544
        return $this;
545
    }
546
547
    /**
548
     * @return int
549
     */
550
    public function get_x0036_()
551
    {
552
        return $this->_x0036_;
553
    }
554
555
    /**
556
     * @param int $_x0036_
557
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
558
     */
559
    public function set_x0036_($_x0036_)
560
    {
561
        $this->_x0036_ = $_x0036_;
562
        return $this;
563
    }
564
565
    /**
566
     * @return int
567
     */
568
    public function get_x0037_()
569
    {
570
        return $this->_x0037_;
571
    }
572
573
    /**
574
     * @param int $_x0037_
575
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
576
     */
577
    public function set_x0037_($_x0037_)
578
    {
579
        $this->_x0037_ = $_x0037_;
580
        return $this;
581
    }
582
583
    /**
584
     * @return int
585
     */
586
    public function get_x0038_()
587
    {
588
        return $this->_x0038_;
589
    }
590
591
    /**
592
     * @param int $_x0038_
593
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
594
     */
595
    public function set_x0038_($_x0038_)
596
    {
597
        $this->_x0038_ = $_x0038_;
598
        return $this;
599
    }
600
601
    /**
602
     * @return int
603
     */
604
    public function get_x0039_()
605
    {
606
        return $this->_x0039_;
607
    }
608
609
    /**
610
     * @param int $_x0039_
611
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
612
     */
613
    public function set_x0039_($_x0039_)
614
    {
615
        $this->_x0039_ = $_x0039_;
616
        return $this;
617
    }
618
619
    /**
620
     * @return int
621
     */
622
    public function get_x0031_0()
623
    {
624
        return $this->_x0031_0;
625
    }
626
627
    /**
628
     * @param int $_x0031_0
629
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
630
     */
631
    public function set_x0031_0($_x0031_0)
632
    {
633
        $this->_x0031_0 = $_x0031_0;
634
        return $this;
635
    }
636
637
    /**
638
     * @return int
639
     */
640
    public function get_x0031_1()
641
    {
642
        return $this->_x0031_1;
643
    }
644
645
    /**
646
     * @param int $_x0031_1
647
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
648
     */
649
    public function set_x0031_1($_x0031_1)
650
    {
651
        $this->_x0031_1 = $_x0031_1;
652
        return $this;
653
    }
654
655
    /**
656
     * @return int
657
     */
658
    public function get_x0031_2()
659
    {
660
        return $this->_x0031_2;
661
    }
662
663
    /**
664
     * @param int $_x0031_2
665
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
666
     */
667
    public function set_x0031_2($_x0031_2)
668
    {
669
        $this->_x0031_2 = $_x0031_2;
670
        return $this;
671
    }
672
673
    /**
674
     * @return int
675
     */
676
    public function get_x0031_3()
677
    {
678
        return $this->_x0031_3;
679
    }
680
681
    /**
682
     * @param int $_x0031_3
683
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
684
     */
685
    public function set_x0031_3($_x0031_3)
686
    {
687
        $this->_x0031_3 = $_x0031_3;
688
        return $this;
689
    }
690
691
    /**
692
     * @return int
693
     */
694
    public function get_x0031_4()
695
    {
696
        return $this->_x0031_4;
697
    }
698
699
    /**
700
     * @param int $_x0031_4
701
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
702
     */
703
    public function set_x0031_4($_x0031_4)
704
    {
705
        $this->_x0031_4 = $_x0031_4;
706
        return $this;
707
    }
708
709
    /**
710
     * @return int
711
     */
712
    public function get_x0031_5()
713
    {
714
        return $this->_x0031_5;
715
    }
716
717
    /**
718
     * @param int $_x0031_5
719
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
720
     */
721
    public function set_x0031_5($_x0031_5)
722
    {
723
        $this->_x0031_5 = $_x0031_5;
724
        return $this;
725
    }
726
727
    /**
728
     * @return int
729
     */
730
    public function get_x0031_6()
731
    {
732
        return $this->_x0031_6;
733
    }
734
735
    /**
736
     * @param int $_x0031_6
737
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
738
     */
739
    public function set_x0031_6($_x0031_6)
740
    {
741
        $this->_x0031_6 = $_x0031_6;
742
        return $this;
743
    }
744
745
    /**
746
     * @return int
747
     */
748
    public function get_x0031_7()
749
    {
750
        return $this->_x0031_7;
751
    }
752
753
    /**
754
     * @param int $_x0031_7
755
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
756
     */
757
    public function set_x0031_7($_x0031_7)
758
    {
759
        $this->_x0031_7 = $_x0031_7;
760
        return $this;
761
    }
762
763
    /**
764
     * @return int
765
     */
766
    public function get_x0031_8()
767
    {
768
        return $this->_x0031_8;
769
    }
770
771
    /**
772
     * @param int $_x0031_8
773
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
774
     */
775
    public function set_x0031_8($_x0031_8)
776
    {
777
        $this->_x0031_8 = $_x0031_8;
778
        return $this;
779
    }
780
781
    /**
782
     * @return int
783
     */
784
    public function get_x0031_9()
785
    {
786
        return $this->_x0031_9;
787
    }
788
789
    /**
790
     * @param int $_x0031_9
791
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
792
     */
793
    public function set_x0031_9($_x0031_9)
794
    {
795
        $this->_x0031_9 = $_x0031_9;
796
        return $this;
797
    }
798
799
    /**
800
     * @return int
801
     */
802
    public function get_x0032_0()
803
    {
804
        return $this->_x0032_0;
805
    }
806
807
    /**
808
     * @param int $_x0032_0
809
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
810
     */
811
    public function set_x0032_0($_x0032_0)
812
    {
813
        $this->_x0032_0 = $_x0032_0;
814
        return $this;
815
    }
816
817
    /**
818
     * @return int
819
     */
820
    public function get_x0032_1()
821
    {
822
        return $this->_x0032_1;
823
    }
824
825
    /**
826
     * @param int $_x0032_1
827
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
828
     */
829
    public function set_x0032_1($_x0032_1)
830
    {
831
        $this->_x0032_1 = $_x0032_1;
832
        return $this;
833
    }
834
835
    /**
836
     * @return int
837
     */
838
    public function get_x0032_2()
839
    {
840
        return $this->_x0032_2;
841
    }
842
843
    /**
844
     * @param int $_x0032_2
845
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
846
     */
847
    public function set_x0032_2($_x0032_2)
848
    {
849
        $this->_x0032_2 = $_x0032_2;
850
        return $this;
851
    }
852
853
    /**
854
     * @return int
855
     */
856
    public function get_x0032_3()
857
    {
858
        return $this->_x0032_3;
859
    }
860
861
    /**
862
     * @param int $_x0032_3
863
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
864
     */
865
    public function set_x0032_3($_x0032_3)
866
    {
867
        $this->_x0032_3 = $_x0032_3;
868
        return $this;
869
    }
870
871
    /**
872
     * @return int
873
     */
874
    public function get_x0032_4()
875
    {
876
        return $this->_x0032_4;
877
    }
878
879
    /**
880
     * @param int $_x0032_4
881
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
882
     */
883
    public function set_x0032_4($_x0032_4)
884
    {
885
        $this->_x0032_4 = $_x0032_4;
886
        return $this;
887
    }
888
889
    /**
890
     * @return int
891
     */
892
    public function get_x0032_5()
893
    {
894
        return $this->_x0032_5;
895
    }
896
897
    /**
898
     * @param int $_x0032_5
899
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
900
     */
901
    public function set_x0032_5($_x0032_5)
902
    {
903
        $this->_x0032_5 = $_x0032_5;
904
        return $this;
905
    }
906
907
    /**
908
     * @return int
909
     */
910
    public function get_x0032_6()
911
    {
912
        return $this->_x0032_6;
913
    }
914
915
    /**
916
     * @param int $_x0032_6
917
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
918
     */
919
    public function set_x0032_6($_x0032_6)
920
    {
921
        $this->_x0032_6 = $_x0032_6;
922
        return $this;
923
    }
924
925
    /**
926
     * @return int
927
     */
928
    public function get_x0032_7()
929
    {
930
        return $this->_x0032_7;
931
    }
932
933
    /**
934
     * @param int $_x0032_7
935
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
936
     */
937
    public function set_x0032_7($_x0032_7)
938
    {
939
        $this->_x0032_7 = $_x0032_7;
940
        return $this;
941
    }
942
943
    /**
944
     * @return int
945
     */
946
    public function get_x0032_8()
947
    {
948
        return $this->_x0032_8;
949
    }
950
951
    /**
952
     * @param int $_x0032_8
953
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
954
     */
955
    public function set_x0032_8($_x0032_8)
956
    {
957
        $this->_x0032_8 = $_x0032_8;
958
        return $this;
959
    }
960
961
    /**
962
     * @return int
963
     */
964
    public function get_x0032_9()
965
    {
966
        return $this->_x0032_9;
967
    }
968
969
    /**
970
     * @param int $_x0032_9
971
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
972
     */
973
    public function set_x0032_9($_x0032_9)
974
    {
975
        $this->_x0032_9 = $_x0032_9;
976
        return $this;
977
    }
978
979
    /**
980
     * @return int
981
     */
982
    public function get_x0033_0()
983
    {
984
        return $this->_x0033_0;
985
    }
986
987
    /**
988
     * @param int $_x0033_0
989
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
990
     */
991
    public function set_x0033_0($_x0033_0)
992
    {
993
        $this->_x0033_0 = $_x0033_0;
994
        return $this;
995
    }
996
997
    /**
998
     * @return int
999
     */
1000
    public function get_x0033_1()
1001
    {
1002
        return $this->_x0033_1;
1003
    }
1004
1005
    /**
1006
     * @param int $_x0033_1
1007
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1008
     */
1009
    public function set_x0033_1($_x0033_1)
1010
    {
1011
        $this->_x0033_1 = $_x0033_1;
1012
        return $this;
1013
    }
1014
1015
    /**
1016
     * @return int
1017
     */
1018
    public function get_x0033_2()
1019
    {
1020
        return $this->_x0033_2;
1021
    }
1022
1023
    /**
1024
     * @param int $_x0033_2
1025
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1026
     */
1027
    public function set_x0033_2($_x0033_2)
1028
    {
1029
        $this->_x0033_2 = $_x0033_2;
1030
        return $this;
1031
    }
1032
1033
    /**
1034
     * @return int
1035
     */
1036
    public function get_x0033_3()
1037
    {
1038
        return $this->_x0033_3;
1039
    }
1040
1041
    /**
1042
     * @param int $_x0033_3
1043
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1044
     */
1045
    public function set_x0033_3($_x0033_3)
1046
    {
1047
        $this->_x0033_3 = $_x0033_3;
1048
        return $this;
1049
    }
1050
1051
    /**
1052
     * @return int
1053
     */
1054
    public function get_x0033_4()
1055
    {
1056
        return $this->_x0033_4;
1057
    }
1058
1059
    /**
1060
     * @param int $_x0033_4
1061
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1062
     */
1063
    public function set_x0033_4($_x0033_4)
1064
    {
1065
        $this->_x0033_4 = $_x0033_4;
1066
        return $this;
1067
    }
1068
1069
    /**
1070
     * @return int
1071
     */
1072
    public function get_x0033_5()
1073
    {
1074
        return $this->_x0033_5;
1075
    }
1076
1077
    /**
1078
     * @param int $_x0033_5
1079
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1080
     */
1081
    public function set_x0033_5($_x0033_5)
1082
    {
1083
        $this->_x0033_5 = $_x0033_5;
1084
        return $this;
1085
    }
1086
1087
    /**
1088
     * @return int
1089
     */
1090
    public function get_x0033_6()
1091
    {
1092
        return $this->_x0033_6;
1093
    }
1094
1095
    /**
1096
     * @param int $_x0033_6
1097
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1098
     */
1099
    public function set_x0033_6($_x0033_6)
1100
    {
1101
        $this->_x0033_6 = $_x0033_6;
1102
        return $this;
1103
    }
1104
1105
    /**
1106
     * @return int
1107
     */
1108
    public function get_x0033_7()
1109
    {
1110
        return $this->_x0033_7;
1111
    }
1112
1113
    /**
1114
     * @param int $_x0033_7
1115
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1116
     */
1117
    public function set_x0033_7($_x0033_7)
1118
    {
1119
        $this->_x0033_7 = $_x0033_7;
1120
        return $this;
1121
    }
1122
1123
    /**
1124
     * @return int
1125
     */
1126
    public function get_x0033_8()
1127
    {
1128
        return $this->_x0033_8;
1129
    }
1130
1131
    /**
1132
     * @param int $_x0033_8
1133
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1134
     */
1135
    public function set_x0033_8($_x0033_8)
1136
    {
1137
        $this->_x0033_8 = $_x0033_8;
1138
        return $this;
1139
    }
1140
1141
    /**
1142
     * @return int
1143
     */
1144
    public function get_x0033_9()
1145
    {
1146
        return $this->_x0033_9;
1147
    }
1148
1149
    /**
1150
     * @param int $_x0033_9
1151
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1152
     */
1153
    public function set_x0033_9($_x0033_9)
1154
    {
1155
        $this->_x0033_9 = $_x0033_9;
1156
        return $this;
1157
    }
1158
1159
    /**
1160
     * @return int
1161
     */
1162
    public function get_x0034_0()
1163
    {
1164
        return $this->_x0034_0;
1165
    }
1166
1167
    /**
1168
     * @param int $_x0034_0
1169
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1170
     */
1171
    public function set_x0034_0($_x0034_0)
1172
    {
1173
        $this->_x0034_0 = $_x0034_0;
1174
        return $this;
1175
    }
1176
1177
    /**
1178
     * @return int
1179
     */
1180
    public function get_x0034_1()
1181
    {
1182
        return $this->_x0034_1;
1183
    }
1184
1185
    /**
1186
     * @param int $_x0034_1
1187
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1188
     */
1189
    public function set_x0034_1($_x0034_1)
1190
    {
1191
        $this->_x0034_1 = $_x0034_1;
1192
        return $this;
1193
    }
1194
1195
    /**
1196
     * @return int
1197
     */
1198
    public function get_x0034_2()
1199
    {
1200
        return $this->_x0034_2;
1201
    }
1202
1203
    /**
1204
     * @param int $_x0034_2
1205
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1206
     */
1207
    public function set_x0034_2($_x0034_2)
1208
    {
1209
        $this->_x0034_2 = $_x0034_2;
1210
        return $this;
1211
    }
1212
1213
    /**
1214
     * @return int
1215
     */
1216
    public function get_x0034_3()
1217
    {
1218
        return $this->_x0034_3;
1219
    }
1220
1221
    /**
1222
     * @param int $_x0034_3
1223
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1224
     */
1225
    public function set_x0034_3($_x0034_3)
1226
    {
1227
        $this->_x0034_3 = $_x0034_3;
1228
        return $this;
1229
    }
1230
1231
    /**
1232
     * @return int
1233
     */
1234
    public function get_x0034_4()
1235
    {
1236
        return $this->_x0034_4;
1237
    }
1238
1239
    /**
1240
     * @param int $_x0034_4
1241
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1242
     */
1243
    public function set_x0034_4($_x0034_4)
1244
    {
1245
        $this->_x0034_4 = $_x0034_4;
1246
        return $this;
1247
    }
1248
1249
    /**
1250
     * @return int
1251
     */
1252
    public function get_x0034_5()
1253
    {
1254
        return $this->_x0034_5;
1255
    }
1256
1257
    /**
1258
     * @param int $_x0034_5
1259
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1260
     */
1261
    public function set_x0034_5($_x0034_5)
1262
    {
1263
        $this->_x0034_5 = $_x0034_5;
1264
        return $this;
1265
    }
1266
1267
    /**
1268
     * @return int
1269
     */
1270
    public function get_x0034_6()
1271
    {
1272
        return $this->_x0034_6;
1273
    }
1274
1275
    /**
1276
     * @param int $_x0034_6
1277
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1278
     */
1279
    public function set_x0034_6($_x0034_6)
1280
    {
1281
        $this->_x0034_6 = $_x0034_6;
1282
        return $this;
1283
    }
1284
1285
    /**
1286
     * @return int
1287
     */
1288
    public function get_x0034_7()
1289
    {
1290
        return $this->_x0034_7;
1291
    }
1292
1293
    /**
1294
     * @param int $_x0034_7
1295
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1296
     */
1297
    public function set_x0034_7($_x0034_7)
1298
    {
1299
        $this->_x0034_7 = $_x0034_7;
1300
        return $this;
1301
    }
1302
1303
    /**
1304
     * @return int
1305
     */
1306
    public function get_x0034_8()
1307
    {
1308
        return $this->_x0034_8;
1309
    }
1310
1311
    /**
1312
     * @param int $_x0034_8
1313
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1314
     */
1315
    public function set_x0034_8($_x0034_8)
1316
    {
1317
        $this->_x0034_8 = $_x0034_8;
1318
        return $this;
1319
    }
1320
1321
    /**
1322
     * @return int
1323
     */
1324
    public function get_x0034_9()
1325
    {
1326
        return $this->_x0034_9;
1327
    }
1328
1329
    /**
1330
     * @param int $_x0034_9
1331
     * @return \Gueststream\PMS\IQWare\API\dtAvailability
1332
     */
1333
    public function set_x0034_9($_x0034_9)
1334
    {
1335
        $this->_x0034_9 = $_x0034_9;
1336
        return $this;
1337
    }
1338
}
1339