1 | <?php |
||
60 | class UpdateRefund extends BaseWsMessage |
||
61 | { |
||
62 | /** |
||
63 | * @var UpdateRefund\UserIdentification |
||
64 | */ |
||
65 | public $userIdentification; |
||
66 | |||
67 | /** |
||
68 | * @var UpdateRefund\TicketNumber |
||
69 | */ |
||
70 | public $ticketNumber; |
||
71 | |||
72 | /** |
||
73 | * @var UpdateRefund\DateTimeInformation[] |
||
74 | */ |
||
75 | public $dateTimeInformation = []; |
||
76 | |||
77 | /** |
||
78 | * @var UpdateRefund\ReferenceInformation |
||
79 | */ |
||
80 | public $referenceInformation; |
||
81 | |||
82 | /** |
||
83 | * @var UpdateRefund\TravellerInformation |
||
84 | */ |
||
85 | public $travellerInformation; |
||
86 | |||
87 | /** |
||
88 | * @var UpdateRefund\Ticket[] |
||
89 | */ |
||
90 | public $ticket = []; |
||
91 | |||
92 | /** |
||
93 | * @var UpdateRefund\TravellerPriorityInfo |
||
94 | */ |
||
95 | public $travellerPriorityInfo; |
||
96 | |||
97 | /** |
||
98 | * @var UpdateRefund\MonetaryInformation |
||
99 | */ |
||
100 | public $monetaryInformation; |
||
101 | |||
102 | /** |
||
103 | * @var UpdateRefund\PricingDetails |
||
104 | */ |
||
105 | public $pricingDetails; |
||
106 | |||
107 | /** |
||
108 | * @var UpdateRefund\Commission |
||
109 | */ |
||
110 | public $commission; |
||
111 | |||
112 | /** |
||
113 | * @var UpdateRefund\TaxDetailsInformation[] |
||
114 | */ |
||
115 | public $taxDetailsInformation = []; |
||
116 | |||
117 | /** |
||
118 | * @var UpdateRefund\TourInformation |
||
119 | */ |
||
120 | public $tourInformation; |
||
121 | |||
122 | /** |
||
123 | * @var UpdateRefund\InteractiveFreeText[] |
||
124 | */ |
||
125 | public $interactiveFreeText = []; |
||
126 | |||
127 | /** |
||
128 | * @var UpdateRefund\FopGroup[] |
||
129 | */ |
||
130 | public $fopGroup = []; |
||
131 | |||
132 | /** |
||
133 | * @var UpdateRefund\TransactionContext |
||
134 | */ |
||
135 | public $transactionContext; |
||
136 | |||
137 | /** |
||
138 | * @var UpdateRefund\FirstAndLastSegmentDates |
||
139 | */ |
||
140 | public $firstAndLastSegmentDates; |
||
141 | |||
142 | /** |
||
143 | * @var UpdateRefund\OriginAndDestination |
||
144 | */ |
||
145 | public $originAndDestination; |
||
146 | |||
147 | /** |
||
148 | * @var UpdateRefund\RefundedItinerary[] |
||
149 | */ |
||
150 | public $refundedItinerary = []; |
||
151 | |||
152 | /** |
||
153 | * @var UpdateRefund\RefundedRoute |
||
154 | */ |
||
155 | public $refundedRoute; |
||
156 | |||
157 | /** |
||
158 | * @var UpdateRefund\StructuredAddress |
||
159 | */ |
||
160 | public $structuredAddress; |
||
161 | |||
162 | /** |
||
163 | * @var UpdateRefund\FeeGroup |
||
164 | */ |
||
165 | public $feeGroup; |
||
166 | |||
167 | /** |
||
168 | * UpdateRefund constructor. |
||
169 | * |
||
170 | * @param DocRefundUpdateRefundOptions $options |
||
171 | */ |
||
172 | 6 | public function __construct(DocRefundUpdateRefundOptions $options) |
|
219 | |||
220 | /** |
||
221 | * @param \DateTime|null $refundDate |
||
222 | * @param \DateTime|null $ticketedDate |
||
223 | */ |
||
224 | 6 | protected function loadDateTimeInfo($refundDate, $ticketedDate) |
|
240 | |||
241 | /** |
||
242 | * @param Reference[] $references |
||
243 | */ |
||
244 | 6 | protected function loadReferences($references) |
|
250 | |||
251 | /** |
||
252 | * @param TicketOpt[] $tickets |
||
253 | */ |
||
254 | 6 | protected function loadTickets($tickets) |
|
260 | |||
261 | /** |
||
262 | * @param DocRefundUpdateRefundOptions $options |
||
263 | */ |
||
264 | 6 | protected function loadPassengerPriority($options) |
|
279 | |||
280 | /** |
||
281 | * @param MonetaryData[] $monetaryData |
||
282 | * @param TaxData[] $taxData |
||
283 | */ |
||
284 | 6 | protected function loadMonetaryInfo($monetaryData, $taxData) |
|
294 | |||
295 | /** |
||
296 | * @param CommissionOpt[] $commission |
||
297 | */ |
||
298 | 6 | protected function loadCommissions($commission) |
|
304 | |||
305 | /** |
||
306 | * @param FreeTextOpt[] $freeText |
||
307 | */ |
||
308 | 6 | protected function loadFreeText($freeText) |
|
314 | |||
315 | /** |
||
316 | * @param FopOpt[] $formOfPayment |
||
317 | */ |
||
318 | 6 | protected function loadFop($formOfPayment) |
|
324 | |||
325 | /** |
||
326 | * @param RefundItinOpt[] $refundedItinerary |
||
327 | */ |
||
328 | 6 | protected function loadRefundedItinerary($refundedItinerary) |
|
334 | |||
335 | /** |
||
336 | * @param string[] $refundedRouteStations |
||
337 | */ |
||
338 | 6 | protected function loadRefundedRoute($refundedRouteStations) |
|
344 | |||
345 | /** |
||
346 | * @param AddressOpt|null $address |
||
347 | */ |
||
348 | 6 | protected function loadAddress($address) |
|
354 | } |
||
355 |