1 | <?php |
||
35 | class DisplayQueryReport extends BaseWsMessage |
||
36 | { |
||
37 | /** |
||
38 | * @var DisplayQueryReport\ActionDetails |
||
39 | */ |
||
40 | public $actionDetails; |
||
41 | |||
42 | /** |
||
43 | * @var DisplayQueryReport\AgentUserDetails |
||
44 | */ |
||
45 | public $agentUserDetails; |
||
46 | |||
47 | /** |
||
48 | * @var DisplayQueryReport\DateDetails |
||
49 | */ |
||
50 | public $dateDetails; |
||
51 | |||
52 | /** |
||
53 | * @var DisplayQueryReport\CurrencyInfo |
||
54 | */ |
||
55 | public $currencyInfo; |
||
56 | |||
57 | /** |
||
58 | * @var DisplayQueryReport\AgencyDetails |
||
59 | */ |
||
60 | public $agencyDetails; |
||
61 | |||
62 | /** |
||
63 | * @var DisplayQueryReport\SalesPeriodDetails |
||
64 | */ |
||
65 | public $salesPeriodDetails; |
||
66 | |||
67 | /** |
||
68 | * @var DisplayQueryReport\TransactionData[] |
||
69 | */ |
||
70 | public $transactionData = []; |
||
71 | |||
72 | /** |
||
73 | * @var DisplayQueryReport\FormOfPaymentDetails |
||
74 | */ |
||
75 | public $formOfPaymentDetails; |
||
76 | |||
77 | /** |
||
78 | * @var DisplayQueryReport\ValidatingCarrierDetails |
||
79 | */ |
||
80 | public $validatingCarrierDetails; |
||
81 | |||
82 | /** |
||
83 | * @var DisplayQueryReport\RequestOption |
||
84 | */ |
||
85 | public $requestOption; |
||
86 | |||
87 | /** |
||
88 | * @var DisplayQueryReport\SalesIndicator |
||
89 | */ |
||
90 | public $salesIndicator; |
||
91 | |||
92 | /** |
||
93 | * @var DisplayQueryReport\FromSequenceDocumentNumber |
||
94 | */ |
||
95 | public $fromSequenceDocumentNumber; |
||
96 | |||
97 | /** |
||
98 | * @var DisplayQueryReport\AttributeInfo |
||
99 | */ |
||
100 | public $attributeInfo; |
||
101 | |||
102 | /** |
||
103 | * DisplayQueryReport constructor. |
||
104 | * |
||
105 | * @param SalesReportsDisplayQueryReportOptions $options |
||
106 | */ |
||
107 | public function __construct(SalesReportsDisplayQueryReportOptions $options) |
||
135 | |||
136 | /** |
||
137 | * @param array|null $requestOptions |
||
138 | */ |
||
139 | protected function loadRequestOptions($requestOptions) |
||
145 | |||
146 | /** |
||
147 | * @param string|null $agencySourceType |
||
148 | * @param string|null $iataNumber |
||
149 | * @param string|null $officeId |
||
150 | */ |
||
151 | protected function loadAgencySource($agencySourceType, $iataNumber, $officeId) |
||
155 | |||
156 | /** |
||
157 | * @param string|null $agentCode |
||
158 | */ |
||
159 | protected function loadAgent($agentCode) |
||
163 | |||
164 | /** |
||
165 | * @param string|null $type |
||
166 | * @param string|null $code |
||
167 | * @param string|null $issueIndicator |
||
168 | */ |
||
169 | protected function loadTransaction($type, $code, $issueIndicator) |
||
173 | |||
174 | /** |
||
175 | * @param string|null $validatingCarrier |
||
176 | */ |
||
177 | protected function loadValidatingCarrier($validatingCarrier) |
||
181 | |||
182 | /** |
||
183 | * @param \DateTime|null $startDate |
||
184 | * @param \DateTime|null $endDate |
||
185 | */ |
||
186 | protected function loadDateRange($startDate, $endDate) |
||
190 | |||
191 | /** |
||
192 | * @param string|null $type |
||
193 | * @param \DateTime|null $date |
||
194 | */ |
||
195 | protected function loadDate($type, $date) |
||
199 | |||
200 | /** |
||
201 | * @param string $type |
||
202 | * @param string $currency |
||
203 | */ |
||
204 | protected function loadCurrency($type, $currency) |
||
208 | |||
209 | /** |
||
210 | * @param string $type |
||
211 | * @param string $vendor |
||
212 | */ |
||
213 | protected function loadFormOfPayment($type, $vendor) |
||
217 | |||
218 | /** |
||
219 | * @param string $indicator |
||
220 | */ |
||
221 | protected function loadSalesIndicator($indicator) |
||
225 | |||
226 | /** |
||
227 | * @param int $count |
||
228 | * @param string $fromItem |
||
229 | */ |
||
230 | protected function loadScrolling($count, $fromItem) |
||
234 | } |
||
235 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.