1 | <?php |
||
33 | class TourCode |
||
34 | { |
||
35 | const PASSTYPE_PAX = "PAX"; |
||
36 | const PASSTYPE_INF = "INF"; |
||
37 | const PASSTYPE_INFWSEAT = "767"; |
||
38 | const PASSTYPE_INFNOSEAT = "766"; |
||
39 | |||
40 | /** |
||
41 | * self::PASSTYPE_* |
||
42 | * |
||
43 | * 766 Infant without seat |
||
44 | * 767 Infant with seat |
||
45 | * C CBBG - Cabin Baggage |
||
46 | * E EXST - Extra Seat |
||
47 | * G Group |
||
48 | * INF Infant not occupying a seat |
||
49 | * MTH Month |
||
50 | * PAX Passenger |
||
51 | * YRS Year |
||
52 | * |
||
53 | * @var string |
||
54 | */ |
||
55 | public $passengerType; |
||
56 | |||
57 | /** |
||
58 | * @var mixed |
||
59 | */ |
||
60 | public $formatedTour; |
||
61 | |||
62 | /** |
||
63 | * @var mixed |
||
64 | */ |
||
65 | public $netRemit; |
||
66 | |||
67 | /** |
||
68 | * @var FreeFormatTour |
||
69 | */ |
||
70 | public $freeFormatTour; |
||
71 | |||
72 | /** |
||
73 | * @param Element\TourCode $options |
||
74 | */ |
||
75 | 1 | public function __construct($options) |
|
84 | } |
||
85 |