1 | <?php |
||
40 | class MasterPricerTravelBoardSearch extends BaseMasterPricerMessage |
||
41 | { |
||
42 | /** |
||
43 | * @var mixed |
||
44 | */ |
||
45 | public $globalOptions; |
||
46 | /** |
||
47 | * @var MasterPricer\CustomerRef |
||
48 | */ |
||
49 | public $customerRef; |
||
50 | /** |
||
51 | * @var mixed |
||
52 | */ |
||
53 | public $formOfPaymentByPassenger; |
||
54 | /** |
||
55 | * @var mixed |
||
56 | */ |
||
57 | public $solutionFamily; |
||
58 | /** |
||
59 | * @var mixed[] |
||
60 | */ |
||
61 | public $passengerInfoGrp = []; |
||
62 | /** |
||
63 | * @var MasterPricer\FareFamilies[] |
||
64 | */ |
||
65 | public $fareFamilies = []; |
||
66 | /** |
||
67 | * @var MasterPricer\PriceToBeat |
||
68 | */ |
||
69 | public $priceToBeat; |
||
70 | /** |
||
71 | * @var mixed |
||
72 | */ |
||
73 | public $taxInfo; |
||
74 | /** |
||
75 | * @var MasterPricer\TravelFlightInfo |
||
76 | */ |
||
77 | public $travelFlightInfo; |
||
78 | /** |
||
79 | * @var array |
||
80 | */ |
||
81 | public $valueSearch = []; |
||
82 | /** |
||
83 | * @var array |
||
84 | */ |
||
85 | public $buckets = []; |
||
86 | /** |
||
87 | * Itinerary |
||
88 | * |
||
89 | * @var MasterPricer\Itinerary[] |
||
90 | */ |
||
91 | public $itinerary = []; |
||
92 | /** |
||
93 | * @var mixed |
||
94 | */ |
||
95 | public $ticketChangeInfo; |
||
96 | /** |
||
97 | * @var mixed |
||
98 | */ |
||
99 | public $combinationFareFamilies; |
||
100 | /** |
||
101 | * @var MasterPricer\FeeOption[] |
||
102 | */ |
||
103 | public $feeOption; |
||
104 | /** |
||
105 | * @var MasterPricer\OfficeIdDetails[] |
||
106 | */ |
||
107 | public $officeIdDetails; |
||
108 | |||
109 | /** |
||
110 | * MasterPricerTravelBoardSearch constructor. |
||
111 | * |
||
112 | * @param FareMasterPricerTbSearch|FareMasterPricerCalendarOptions|TicketAtcShopperMpTbSearchOptions|null $options |
||
113 | */ |
||
114 | 124 | public function __construct($options = null) |
|
120 | |||
121 | /** |
||
122 | * @param FareMasterPricerTbSearch|FareMasterPricerCalendarOptions|TicketAtcShopperMpTbSearchOptions $options |
||
123 | */ |
||
124 | 124 | protected function loadOptions($options) |
|
180 | |||
181 | /** |
||
182 | * @param string $officeId |
||
183 | */ |
||
184 | 4 | protected function loadOfficeId($officeId) |
|
188 | |||
189 | /** |
||
190 | * @param MPItinerary $itineraryOptions |
||
191 | * @param int $counter BYREF |
||
192 | */ |
||
193 | 108 | protected function loadItinerary($itineraryOptions, &$counter) |
|
215 | |||
216 | /** |
||
217 | * @param MPFareFamily[] $fareFamilies |
||
218 | */ |
||
219 | 124 | protected function loadFareFamilies($fareFamilies) |
|
225 | |||
226 | /** |
||
227 | * Load Customer references |
||
228 | * |
||
229 | * @param string $dkNumber |
||
230 | */ |
||
231 | 124 | protected function loadCustomerRefs($dkNumber) |
|
241 | |||
242 | 124 | private function loadFeeOptions($feeOptions) |
|
250 | } |
||
251 |