1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace AlibabaCloud\Linkedmall\V20180116; |
4
|
|
|
|
5
|
|
|
use AlibabaCloud\Client\Resolver\ApiResolver; |
6
|
|
|
|
7
|
|
|
/** |
8
|
|
|
* @method RenderOrder renderOrder(array $options = []) |
9
|
|
|
* @method ApplyRefund applyRefund(array $options = []) |
10
|
|
|
* @method InitApplyRefund initApplyRefund(array $options = []) |
11
|
|
|
* @method SubmitReturnGoodLogistics submitReturnGoodLogistics(array $options = []) |
12
|
|
|
* @method QueryRefundApplicationDetail queryRefundApplicationDetail(array $options = []) |
13
|
|
|
* @method ConfirmDisburse confirmDisburse(array $options = []) |
14
|
|
|
* @method ModifyBasicAndBizItems modifyBasicAndBizItems(array $options = []) |
15
|
|
|
* @method QueryOrderList queryOrderList(array $options = []) |
16
|
|
|
* @method QueryOrderLogistics queryOrderLogistics(array $options = []) |
17
|
|
|
* @method RepayOrder repayOrder(array $options = []) |
18
|
|
|
* @method QueryAddress queryAddress(array $options = []) |
19
|
|
|
* @method QueryLogistics queryLogistics(array $options = []) |
20
|
|
|
* @method RefundPoint refundPoint(array $options = []) |
21
|
|
|
* @method QueryItemInventory queryItemInventory(array $options = []) |
22
|
|
|
* @method DeleteBizItems deleteBizItems(array $options = []) |
23
|
|
|
* @method ModifyBizItems modifyBizItems(array $options = []) |
24
|
|
|
* @method QueryBizItemList queryBizItemList(array $options = []) |
25
|
|
|
* @method AddSupplierNewItems addSupplierNewItems(array $options = []) |
26
|
|
|
* @method NotifyWithholdFund notifyWithholdFund(array $options = []) |
27
|
|
|
* @method CreateOrder createOrder(array $options = []) |
28
|
|
|
* @method CreateMovieTicketOrder createMovieTicketOrder(array $options = []) |
29
|
|
|
* @method QueryGuideItemGroup queryGuideItemGroup(array $options = []) |
30
|
|
|
* @method QueryItemDetail queryItemDetail(array $options = []) |
31
|
|
|
* @method QueryHotMovies queryHotMovies(array $options = []) |
32
|
|
|
* @method QueryMovieComments queryMovieComments(array $options = []) |
33
|
|
|
* @method QueryMovieSchedules queryMovieSchedules(array $options = []) |
34
|
|
|
* @method QueryMessages queryMessages(array $options = []) |
35
|
|
|
* @method RemoveMessages removeMessages(array $options = []) |
36
|
|
|
* @method QueryMovieTickets queryMovieTickets(array $options = []) |
37
|
|
|
* @method QueryAllCinemas queryAllCinemas(array $options = []) |
38
|
|
|
* @method QueryAllCities queryAllCities(array $options = []) |
39
|
|
|
* @method QueryUpcomingMovies queryUpcomingMovies(array $options = []) |
40
|
|
|
* @method QueryMovieSeats queryMovieSeats(array $options = []) |
41
|
|
|
* @method ReserveMovieSeat reserveMovieSeat(array $options = []) |
42
|
|
|
* @method ReleaseMovieSeat releaseMovieSeat(array $options = []) |
43
|
|
|
* @method QueryBizItems queryBizItems(array $options = []) |
44
|
|
|
* @method NotifyPayOrderStatus notifyPayOrderStatus(array $options = []) |
45
|
|
|
*/ |
46
|
|
|
class LinkedmallApiResolver extends ApiResolver |
47
|
|
|
{ |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc |
51
|
|
|
{ |
52
|
|
|
/** @var string */ |
53
|
|
|
public $product = 'linkedmall'; |
54
|
|
|
|
55
|
|
|
/** @var string */ |
56
|
|
|
public $version = '2018-01-16'; |
57
|
|
|
|
58
|
|
|
/** @var string */ |
59
|
|
|
public $method = 'POST'; |
60
|
|
|
|
61
|
|
|
/** @var string */ |
62
|
|
|
public $serviceCode = 'linkedmall'; |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
/** |
66
|
|
|
* @method string getBizUid() |
67
|
|
|
* @method $this withBizUid($value) |
68
|
|
|
* @method string getExtJson() |
69
|
|
|
* @method $this withExtJson($value) |
70
|
|
|
* @method string getBizId() |
71
|
|
|
* @method $this withBizId($value) |
72
|
|
|
* @method array getItemList() |
73
|
|
|
* @method string getDeliveryAddress() |
74
|
|
|
* @method $this withDeliveryAddress($value) |
75
|
|
|
*/ |
76
|
|
|
class RenderOrder extends Rpc |
77
|
|
|
{ |
78
|
|
|
|
79
|
|
|
/** |
80
|
|
|
* @param array $itemList |
81
|
|
|
* |
82
|
|
|
* @return $this |
83
|
|
|
*/ |
84
|
|
|
public function withItemList(array $itemList) |
85
|
|
|
{ |
86
|
|
|
$this->data['ItemList'] = $itemList; |
87
|
|
|
foreach ($itemList as $depth1 => $depth1Value) { |
88
|
|
|
$this->options['query']['ItemList.' . ($depth1 + 1) . '.ItemId'] = $depth1Value['ItemId']; |
89
|
|
|
$this->options['query']['ItemList.' . ($depth1 + 1) . '.Quantity'] = $depth1Value['Quantity']; |
90
|
|
|
$this->options['query']['ItemList.' . ($depth1 + 1) . '.SkuId'] = $depth1Value['SkuId']; |
91
|
|
|
} |
92
|
|
|
|
93
|
|
|
return $this; |
94
|
|
|
} |
95
|
|
|
} |
96
|
|
|
|
97
|
|
|
/** |
98
|
|
|
* @method string getGoodsStatus() |
99
|
|
|
* @method $this withGoodsStatus($value) |
100
|
|
|
* @method string getSubLmOrderId() |
101
|
|
|
* @method $this withSubLmOrderId($value) |
102
|
|
|
* @method string getBizUid() |
103
|
|
|
* @method $this withBizUid($value) |
104
|
|
|
* @method string getApplyRefundFee() |
105
|
|
|
* @method $this withApplyRefundFee($value) |
106
|
|
|
* @method string getBizClaimType() |
107
|
|
|
* @method $this withBizClaimType($value) |
108
|
|
|
* @method string getApplyReasonTextId() |
109
|
|
|
* @method $this withApplyReasonTextId($value) |
110
|
|
|
* @method string getBizId() |
111
|
|
|
* @method $this withBizId($value) |
112
|
|
|
* @method array getLeavePictureList() |
113
|
|
|
* @method string getApplyRefundCount() |
114
|
|
|
* @method $this withApplyRefundCount($value) |
115
|
|
|
* @method string getLeaveMessage() |
116
|
|
|
*/ |
117
|
|
|
class ApplyRefund extends Rpc |
118
|
|
|
{ |
119
|
|
|
|
120
|
|
|
/** |
121
|
|
|
* @param array $leavePictureList |
122
|
|
|
* |
123
|
|
|
* @return $this |
124
|
|
|
*/ |
125
|
|
|
public function withLeavePictureList(array $leavePictureList) |
126
|
|
|
{ |
127
|
|
|
$this->data['LeavePictureList'] = $leavePictureList; |
128
|
|
|
foreach ($leavePictureList as $depth1 => $depth1Value) { |
129
|
|
|
$this->options['form_params']['LeavePictureList.' . ($depth1 + 1) . '.Picture'] = $depth1Value['Picture']; |
130
|
|
|
$this->options['form_params']['LeavePictureList.' . ($depth1 + 1) . '.Desc'] = $depth1Value['Desc']; |
131
|
|
|
} |
132
|
|
|
|
133
|
|
|
return $this; |
134
|
|
|
} |
135
|
|
|
|
136
|
|
|
/** |
137
|
|
|
* @param string $value |
138
|
|
|
* |
139
|
|
|
* @return $this |
140
|
|
|
*/ |
141
|
|
|
public function withLeaveMessage($value) |
142
|
|
|
{ |
143
|
|
|
$this->data['LeaveMessage'] = $value; |
144
|
|
|
$this->options['form_params']['LeaveMessage'] = $value; |
145
|
|
|
|
146
|
|
|
return $this; |
147
|
|
|
} |
148
|
|
|
} |
149
|
|
|
|
150
|
|
|
/** |
151
|
|
|
* @method string getGoodsStatus() |
152
|
|
|
* @method $this withGoodsStatus($value) |
153
|
|
|
* @method string getSubLmOrderId() |
154
|
|
|
* @method $this withSubLmOrderId($value) |
155
|
|
|
* @method string getBizUid() |
156
|
|
|
* @method $this withBizUid($value) |
157
|
|
|
* @method string getBizClaimType() |
158
|
|
|
* @method $this withBizClaimType($value) |
159
|
|
|
* @method string getBizId() |
160
|
|
|
* @method $this withBizId($value) |
161
|
|
|
*/ |
162
|
|
|
class InitApplyRefund extends Rpc |
163
|
|
|
{ |
164
|
|
|
} |
165
|
|
|
|
166
|
|
|
/** |
167
|
|
|
* @method string getCpCode() |
168
|
|
|
* @method $this withCpCode($value) |
169
|
|
|
* @method string getSubLmOrderId() |
170
|
|
|
* @method $this withSubLmOrderId($value) |
171
|
|
|
* @method string getBizUid() |
172
|
|
|
* @method $this withBizUid($value) |
173
|
|
|
* @method string getDisputeId() |
174
|
|
|
* @method $this withDisputeId($value) |
175
|
|
|
* @method string getBizId() |
176
|
|
|
* @method $this withBizId($value) |
177
|
|
|
* @method string getLogisticsNo() |
178
|
|
|
* @method $this withLogisticsNo($value) |
179
|
|
|
*/ |
180
|
|
|
class SubmitReturnGoodLogistics extends Rpc |
181
|
|
|
{ |
182
|
|
|
} |
183
|
|
|
|
184
|
|
|
/** |
185
|
|
|
* @method string getSubLmOrderId() |
186
|
|
|
* @method $this withSubLmOrderId($value) |
187
|
|
|
* @method string getBizUid() |
188
|
|
|
* @method $this withBizUid($value) |
189
|
|
|
* @method string getBizId() |
190
|
|
|
* @method $this withBizId($value) |
191
|
|
|
*/ |
192
|
|
|
class QueryRefundApplicationDetail extends Rpc |
193
|
|
|
{ |
194
|
|
|
} |
195
|
|
|
|
196
|
|
|
/** |
197
|
|
|
* @method string getLmOrderId() |
198
|
|
|
* @method $this withLmOrderId($value) |
199
|
|
|
* @method string getBizUid() |
200
|
|
|
* @method $this withBizUid($value) |
201
|
|
|
* @method string getBizId() |
202
|
|
|
* @method $this withBizId($value) |
203
|
|
|
*/ |
204
|
|
|
class ConfirmDisburse extends Rpc |
205
|
|
|
{ |
206
|
|
|
} |
207
|
|
|
|
208
|
|
|
/** |
209
|
|
|
* @method string getBizId() |
210
|
|
|
* @method $this withBizId($value) |
211
|
|
|
* @method array getItemList() |
212
|
|
|
* @method string getSubBizId() |
213
|
|
|
* @method $this withSubBizId($value) |
214
|
|
|
*/ |
215
|
|
|
class ModifyBasicAndBizItems extends Rpc |
216
|
|
|
{ |
217
|
|
|
|
218
|
|
|
/** |
219
|
|
|
* @param array $itemList |
220
|
|
|
* |
221
|
|
|
* @return $this |
222
|
|
|
*/ |
223
|
|
|
public function withItemList(array $itemList) |
224
|
|
|
{ |
225
|
|
|
$this->data['ItemList'] = $itemList; |
226
|
|
|
foreach ($itemList as $depth1 => $depth1Value) { |
227
|
|
|
$this->options['form_params']['ItemList.' . ($depth1 + 1) . '.ItemId'] = $depth1Value['ItemId']; |
228
|
|
|
foreach ($depth1Value['SkuList'] as $depth2 => $depth2Value) { |
229
|
|
|
$this->options['form_params']['ItemList.' . ($depth1 + 1) . '.SkuList.' . ($depth2 + 1) . '.StatusAction'] = $depth2Value['StatusAction']; |
230
|
|
|
$this->options['form_params']['ItemList.' . ($depth1 + 1) . '.SkuList.' . ($depth2 + 1) . '.PriceCent'] = $depth2Value['PriceCent']; |
231
|
|
|
$this->options['form_params']['ItemList.' . ($depth1 + 1) . '.SkuList.' . ($depth2 + 1) . '.PointsAmount'] = $depth2Value['PointsAmount']; |
232
|
|
|
$this->options['form_params']['ItemList.' . ($depth1 + 1) . '.SkuList.' . ($depth2 + 1) . '.Quantity'] = $depth2Value['Quantity']; |
233
|
|
|
$this->options['form_params']['ItemList.' . ($depth1 + 1) . '.SkuList.' . ($depth2 + 1) . '.BenefitId'] = $depth2Value['BenefitId']; |
234
|
|
|
$this->options['form_params']['ItemList.' . ($depth1 + 1) . '.SkuList.' . ($depth2 + 1) . '.SkuId'] = $depth2Value['SkuId']; |
235
|
|
|
$this->options['form_params']['ItemList.' . ($depth1 + 1) . '.SkuList.' . ($depth2 + 1) . '.SupplierPrice'] = $depth2Value['SupplierPrice']; |
236
|
|
|
$this->options['form_params']['ItemList.' . ($depth1 + 1) . '.SkuList.' . ($depth2 + 1) . '.Points'] = $depth2Value['Points']; |
237
|
|
|
} |
238
|
|
|
} |
239
|
|
|
|
240
|
|
|
return $this; |
241
|
|
|
} |
242
|
|
|
} |
243
|
|
|
|
244
|
|
|
/** |
245
|
|
|
* @method string getBizUid() |
246
|
|
|
* @method $this withBizUid($value) |
247
|
|
|
* @method string getFilterOption() |
248
|
|
|
* @method $this withFilterOption($value) |
249
|
|
|
* @method string getBizId() |
250
|
|
|
* @method $this withBizId($value) |
251
|
|
|
* @method string getPageSize() |
252
|
|
|
* @method $this withPageSize($value) |
253
|
|
|
* @method string getPageNumber() |
254
|
|
|
* @method $this withPageNumber($value) |
255
|
|
|
*/ |
256
|
|
|
class QueryOrderList extends Rpc |
257
|
|
|
{ |
258
|
|
|
} |
259
|
|
|
|
260
|
|
|
/** |
261
|
|
|
* @method string getLmOrderId() |
262
|
|
|
* @method $this withLmOrderId($value) |
263
|
|
|
* @method string getBizUid() |
264
|
|
|
* @method $this withBizUid($value) |
265
|
|
|
* @method string getBizId() |
266
|
|
|
* @method $this withBizId($value) |
267
|
|
|
*/ |
268
|
|
|
class QueryOrderLogistics extends Rpc |
269
|
|
|
{ |
270
|
|
|
} |
271
|
|
|
|
272
|
|
|
/** |
273
|
|
|
* @method string getLmOrderId() |
274
|
|
|
* @method $this withLmOrderId($value) |
275
|
|
|
* @method string getBizUid() |
276
|
|
|
* @method $this withBizUid($value) |
277
|
|
|
* @method string getBizId() |
278
|
|
|
* @method $this withBizId($value) |
279
|
|
|
*/ |
280
|
|
|
class RepayOrder extends Rpc |
281
|
|
|
{ |
282
|
|
|
} |
283
|
|
|
|
284
|
|
|
/** |
285
|
|
|
* @method string getDivisionCode() |
286
|
|
|
* @method $this withDivisionCode($value) |
287
|
|
|
* @method string getIp() |
288
|
|
|
* @method $this withIp($value) |
289
|
|
|
* @method string getBizId() |
290
|
|
|
* @method $this withBizId($value) |
291
|
|
|
*/ |
292
|
|
|
class QueryAddress extends Rpc |
293
|
|
|
{ |
294
|
|
|
} |
295
|
|
|
|
296
|
|
|
/** |
297
|
|
|
* @method string getLmOrderId() |
298
|
|
|
* @method $this withLmOrderId($value) |
299
|
|
|
* @method string getBizUid() |
300
|
|
|
* @method $this withBizUid($value) |
301
|
|
|
* @method string getBizId() |
302
|
|
|
* @method $this withBizId($value) |
303
|
|
|
*/ |
304
|
|
|
class QueryLogistics extends Rpc |
305
|
|
|
{ |
306
|
|
|
} |
307
|
|
|
|
308
|
|
|
/** |
309
|
|
|
* @method string getReason() |
310
|
|
|
* @method $this withReason($value) |
311
|
|
|
* @method string getSellerId() |
312
|
|
|
* @method $this withSellerId($value) |
313
|
|
|
* @method string getLmOrderId() |
314
|
|
|
* @method $this withLmOrderId($value) |
315
|
|
|
* @method string getBizId() |
316
|
|
|
* @method $this withBizId($value) |
317
|
|
|
*/ |
318
|
|
|
class RefundPoint extends Rpc |
319
|
|
|
{ |
320
|
|
|
} |
321
|
|
|
|
322
|
|
|
/** |
323
|
|
|
* @method string getDivisionCode() |
324
|
|
|
* @method $this withDivisionCode($value) |
325
|
|
|
* @method string getIp() |
326
|
|
|
* @method $this withIp($value) |
327
|
|
|
* @method string getBizId() |
328
|
|
|
* @method $this withBizId($value) |
329
|
|
|
* @method array getItemList() |
330
|
|
|
*/ |
331
|
|
|
class QueryItemInventory extends Rpc |
332
|
|
|
{ |
333
|
|
|
|
334
|
|
|
/** |
335
|
|
|
* @param array $itemList |
336
|
|
|
* |
337
|
|
|
* @return $this |
338
|
|
|
*/ |
339
|
|
|
public function withItemList(array $itemList) |
340
|
|
|
{ |
341
|
|
|
$this->data['ItemList'] = $itemList; |
342
|
|
|
foreach ($itemList as $depth1 => $depth1Value) { |
343
|
|
|
$this->options['query']['ItemList.' . ($depth1 + 1) . '.ItemId'] = $depth1Value['ItemId']; |
344
|
|
|
foreach ($depth1Value['SkuIdList'] as $i => $iValue) { |
345
|
|
|
$this->options['query']['ItemList.' . ($depth1 + 1) . '.SkuIdList.' . ($i + 1)] = $iValue; |
346
|
|
|
} |
347
|
|
|
} |
348
|
|
|
|
349
|
|
|
return $this; |
350
|
|
|
} |
351
|
|
|
} |
352
|
|
|
|
353
|
|
|
/** |
354
|
|
|
* @method string getBizId() |
355
|
|
|
* @method $this withBizId($value) |
356
|
|
|
* @method array getItemIdList() |
357
|
|
|
* @method string getSubBizId() |
358
|
|
|
* @method $this withSubBizId($value) |
359
|
|
|
*/ |
360
|
|
|
class DeleteBizItems extends Rpc |
361
|
|
|
{ |
362
|
|
|
|
363
|
|
|
/** |
364
|
|
|
* @param array $itemIdList |
365
|
|
|
* |
366
|
|
|
* @return $this |
367
|
|
|
*/ |
368
|
|
|
public function withItemIdList(array $itemIdList) |
369
|
|
|
{ |
370
|
|
|
$this->data['ItemIdList'] = $itemIdList; |
371
|
|
|
foreach ($itemIdList as $i => $iValue) { |
372
|
|
|
$this->options['query']['ItemIdList.' . ($i + 1)] = $iValue; |
373
|
|
|
} |
374
|
|
|
|
375
|
|
|
return $this; |
376
|
|
|
} |
377
|
|
|
} |
378
|
|
|
|
379
|
|
|
/** |
380
|
|
|
* @method string getBizId() |
381
|
|
|
* @method $this withBizId($value) |
382
|
|
|
* @method array getItemList() |
383
|
|
|
* @method string getSubBizId() |
384
|
|
|
* @method $this withSubBizId($value) |
385
|
|
|
*/ |
386
|
|
|
class ModifyBizItems extends Rpc |
387
|
|
|
{ |
388
|
|
|
|
389
|
|
|
/** |
390
|
|
|
* @param array $itemList |
391
|
|
|
* |
392
|
|
|
* @return $this |
393
|
|
|
*/ |
394
|
1 |
|
public function withItemList(array $itemList) |
395
|
|
|
{ |
396
|
1 |
|
$this->data['ItemList'] = $itemList; |
397
|
1 |
|
foreach ($itemList as $depth1 => $depth1Value) { |
398
|
1 |
|
$this->options['form_params']['ItemList.' . ($depth1 + 1) . '.ItemId'] = $depth1Value['ItemId']; |
399
|
1 |
|
foreach ($depth1Value['SkuList'] as $depth2 => $depth2Value) { |
400
|
1 |
|
$this->options['form_params']['ItemList.' . ($depth1 + 1) . '.SkuList.' . ($depth2 + 1) . '.StatusAction'] = $depth2Value['StatusAction']; |
401
|
1 |
|
$this->options['form_params']['ItemList.' . ($depth1 + 1) . '.SkuList.' . ($depth2 + 1) . '.PriceCent'] = $depth2Value['PriceCent']; |
402
|
1 |
|
$this->options['form_params']['ItemList.' . ($depth1 + 1) . '.SkuList.' . ($depth2 + 1) . '.PointsAmount'] = $depth2Value['PointsAmount']; |
403
|
1 |
|
$this->options['form_params']['ItemList.' . ($depth1 + 1) . '.SkuList.' . ($depth2 + 1) . '.Quantity'] = $depth2Value['Quantity']; |
404
|
1 |
|
$this->options['form_params']['ItemList.' . ($depth1 + 1) . '.SkuList.' . ($depth2 + 1) . '.BenefitId'] = $depth2Value['BenefitId']; |
405
|
1 |
|
$this->options['form_params']['ItemList.' . ($depth1 + 1) . '.SkuList.' . ($depth2 + 1) . '.SkuId'] = $depth2Value['SkuId']; |
406
|
1 |
|
$this->options['form_params']['ItemList.' . ($depth1 + 1) . '.SkuList.' . ($depth2 + 1) . '.Points'] = $depth2Value['Points']; |
407
|
1 |
|
} |
408
|
1 |
|
} |
409
|
|
|
|
410
|
1 |
|
return $this; |
411
|
|
|
} |
412
|
|
|
} |
413
|
|
|
|
414
|
|
|
/** |
415
|
|
|
* @method string getBizId() |
416
|
|
|
* @method $this withBizId($value) |
417
|
|
|
* @method string getPageSize() |
418
|
|
|
* @method $this withPageSize($value) |
419
|
|
|
* @method string getUserId() |
420
|
|
|
* @method $this withUserId($value) |
421
|
|
|
* @method string getPageNumber() |
422
|
|
|
* @method $this withPageNumber($value) |
423
|
|
|
* @method string getSubBizId() |
424
|
|
|
* @method $this withSubBizId($value) |
425
|
|
|
*/ |
426
|
|
|
class QueryBizItemList extends Rpc |
427
|
|
|
{ |
428
|
|
|
} |
429
|
|
|
|
430
|
|
|
/** |
431
|
|
|
* @method string getBizId() |
432
|
|
|
* @method $this withBizId($value) |
433
|
|
|
* @method array getItemList() |
434
|
|
|
*/ |
435
|
|
|
class AddSupplierNewItems extends Rpc |
436
|
|
|
{ |
437
|
|
|
|
438
|
|
|
/** |
439
|
|
|
* @param array $itemList |
440
|
|
|
* |
441
|
|
|
* @return $this |
442
|
|
|
*/ |
443
|
|
|
public function withItemList(array $itemList) |
444
|
|
|
{ |
445
|
|
|
$this->data['ItemList'] = $itemList; |
446
|
|
|
foreach ($itemList as $depth1 => $depth1Value) { |
447
|
|
|
$this->options['query']['ItemList.' . ($depth1 + 1) . '.ItemId'] = $depth1Value['ItemId']; |
448
|
|
|
foreach ($depth1Value['SkuList'] as $i => $iValue) { |
449
|
|
|
$this->options['query']['ItemList.' . ($depth1 + 1) . '.SkuList.' . ($i + 1)] = $iValue; |
450
|
|
|
} |
451
|
|
|
} |
452
|
|
|
|
453
|
|
|
return $this; |
454
|
|
|
} |
455
|
|
|
} |
456
|
|
|
|
457
|
|
|
/** |
458
|
|
|
* @method string getAmount() |
459
|
|
|
* @method $this withAmount($value) |
460
|
|
|
* @method string getPayTypes() |
461
|
|
|
* @method $this withPayTypes($value) |
462
|
|
|
* @method string getTenantOrderId() |
463
|
|
|
* @method $this withTenantOrderId($value) |
464
|
|
|
* @method string getRequestId() |
465
|
|
|
* @method $this withRequestId($value) |
466
|
|
|
* @method string getOperationDate() |
467
|
|
|
* @method $this withOperationDate($value) |
468
|
|
|
* @method string getChannelId() |
469
|
|
|
* @method $this withChannelId($value) |
470
|
|
|
*/ |
471
|
|
|
class NotifyWithholdFund extends Rpc |
472
|
|
|
{ |
473
|
|
|
} |
474
|
|
|
|
475
|
|
|
/** |
476
|
|
|
* @method string getItemId() |
477
|
|
|
* @method $this withItemId($value) |
478
|
|
|
* @method string getQuantity() |
479
|
|
|
* @method $this withQuantity($value) |
480
|
|
|
* @method string getTotalAmount() |
481
|
|
|
* @method $this withTotalAmount($value) |
482
|
|
|
* @method string getBizUid() |
483
|
|
|
* @method $this withBizUid($value) |
484
|
|
|
* @method string getExtJson() |
485
|
|
|
* @method $this withExtJson($value) |
486
|
|
|
* @method string getBizId() |
487
|
|
|
* @method $this withBizId($value) |
488
|
|
|
* @method string getOutTradeId() |
489
|
|
|
* @method $this withOutTradeId($value) |
490
|
|
|
* @method string getOrderExpireTime() |
491
|
|
|
* @method $this withOrderExpireTime($value) |
492
|
|
|
* @method array getItemList() |
493
|
|
|
* @method string getDeliveryAddress() |
494
|
|
|
* @method $this withDeliveryAddress($value) |
495
|
|
|
*/ |
496
|
|
|
class CreateOrder extends Rpc |
497
|
|
|
{ |
498
|
|
|
|
499
|
|
|
/** |
500
|
|
|
* @param array $itemList |
501
|
|
|
* |
502
|
|
|
* @return $this |
503
|
|
|
*/ |
504
|
|
|
public function withItemList(array $itemList) |
505
|
|
|
{ |
506
|
|
|
$this->data['ItemList'] = $itemList; |
507
|
|
|
foreach ($itemList as $depth1 => $depth1Value) { |
508
|
|
|
$this->options['query']['ItemList.' . ($depth1 + 1) . '.ItemId'] = $depth1Value['ItemId']; |
509
|
|
|
$this->options['query']['ItemList.' . ($depth1 + 1) . '.Quantity'] = $depth1Value['Quantity']; |
510
|
|
|
$this->options['query']['ItemList.' . ($depth1 + 1) . '.SkuId'] = $depth1Value['SkuId']; |
511
|
|
|
} |
512
|
|
|
|
513
|
|
|
return $this; |
514
|
|
|
} |
515
|
|
|
} |
516
|
|
|
|
517
|
|
|
/** |
518
|
|
|
* @method string getBizId() |
519
|
|
|
* @method $this withBizId($value) |
520
|
|
|
* @method string getBizUid() |
521
|
|
|
* @method $this withBizUid($value) |
522
|
|
|
* @method string getOutTradeId() |
523
|
|
|
* @method $this withOutTradeId($value) |
524
|
|
|
* @method string getLockSeatAppKey() |
525
|
|
|
* @method $this withLockSeatAppKey($value) |
526
|
|
|
* @method string getExtJson() |
527
|
|
|
* @method $this withExtJson($value) |
528
|
|
|
*/ |
529
|
|
|
class CreateMovieTicketOrder extends Rpc |
530
|
|
|
{ |
531
|
|
|
|
532
|
|
|
/** @var string */ |
533
|
|
|
public $method = 'GET'; |
534
|
|
|
} |
535
|
|
|
|
536
|
|
|
/** |
537
|
|
|
* @method string getGroupId() |
538
|
|
|
* @method $this withGroupId($value) |
539
|
|
|
* @method string getBizId() |
540
|
|
|
* @method $this withBizId($value) |
541
|
|
|
* @method string getPageSize() |
542
|
|
|
* @method $this withPageSize($value) |
543
|
|
|
* @method string getPageNumber() |
544
|
|
|
* @method $this withPageNumber($value) |
545
|
|
|
*/ |
546
|
|
|
class QueryGuideItemGroup extends Rpc |
547
|
|
|
{ |
548
|
|
|
} |
549
|
|
|
|
550
|
|
|
/** |
551
|
|
|
* @method string getItemId() |
552
|
|
|
* @method $this withItemId($value) |
553
|
|
|
* @method string getBizId() |
554
|
|
|
* @method $this withBizId($value) |
555
|
|
|
*/ |
556
|
|
|
class QueryItemDetail extends Rpc |
557
|
|
|
{ |
558
|
|
|
} |
559
|
|
|
|
560
|
|
|
/** |
561
|
|
|
* @method string getCityCode() |
562
|
|
|
* @method $this withCityCode($value) |
563
|
|
|
* @method string getExtJson() |
564
|
|
|
* @method $this withExtJson($value) |
565
|
|
|
* @method string getBizId() |
566
|
|
|
* @method $this withBizId($value) |
567
|
|
|
*/ |
568
|
|
|
class QueryHotMovies extends Rpc |
569
|
|
|
{ |
570
|
|
|
} |
571
|
|
|
|
572
|
|
|
/** |
573
|
|
|
* @method string getExtJson() |
574
|
|
|
* @method $this withExtJson($value) |
575
|
|
|
* @method string getBizId() |
576
|
|
|
* @method $this withBizId($value) |
577
|
|
|
* @method string getMovieId() |
578
|
|
|
* @method $this withMovieId($value) |
579
|
|
|
* @method string getPageNumber() |
580
|
|
|
* @method $this withPageNumber($value) |
581
|
|
|
*/ |
582
|
|
|
class QueryMovieComments extends Rpc |
583
|
|
|
{ |
584
|
|
|
} |
585
|
|
|
|
586
|
|
|
/** |
587
|
|
|
* @method string getCinemaId() |
588
|
|
|
* @method $this withCinemaId($value) |
589
|
|
|
* @method string getExtJson() |
590
|
|
|
* @method $this withExtJson($value) |
591
|
|
|
* @method string getBizId() |
592
|
|
|
* @method $this withBizId($value) |
593
|
|
|
*/ |
594
|
|
|
class QueryMovieSchedules extends Rpc |
595
|
|
|
{ |
596
|
|
|
} |
597
|
|
|
|
598
|
|
|
/** |
599
|
|
|
* @method string getExtJson() |
600
|
|
|
* @method $this withExtJson($value) |
601
|
|
|
* @method string getBizId() |
602
|
|
|
* @method $this withBizId($value) |
603
|
|
|
* @method string getTopic() |
604
|
|
|
* @method $this withTopic($value) |
605
|
|
|
*/ |
606
|
|
|
class QueryMessages extends Rpc |
607
|
|
|
{ |
608
|
|
|
} |
609
|
|
|
|
610
|
|
|
/** |
611
|
|
|
* @method string getExtJson() |
612
|
|
|
* @method $this withExtJson($value) |
613
|
|
|
* @method string getBizId() |
614
|
|
|
* @method $this withBizId($value) |
615
|
|
|
* @method string getMessageIds() |
616
|
|
|
* @method $this withMessageIds($value) |
617
|
|
|
*/ |
618
|
|
|
class RemoveMessages extends Rpc |
619
|
|
|
{ |
620
|
|
|
} |
621
|
|
|
|
622
|
|
|
/** |
623
|
|
|
* @method string getOrderId() |
624
|
|
|
* @method $this withOrderId($value) |
625
|
|
|
* @method string getBizUid() |
626
|
|
|
* @method $this withBizUid($value) |
627
|
|
|
* @method string getExtJson() |
628
|
|
|
* @method $this withExtJson($value) |
629
|
|
|
* @method string getBizId() |
630
|
|
|
* @method $this withBizId($value) |
631
|
|
|
*/ |
632
|
|
|
class QueryMovieTickets extends Rpc |
633
|
|
|
{ |
634
|
|
|
|
635
|
|
|
/** @var string */ |
636
|
|
|
public $method = 'GET'; |
637
|
|
|
} |
638
|
|
|
|
639
|
|
|
/** |
640
|
|
|
* @method string getCityCode() |
641
|
|
|
* @method $this withCityCode($value) |
642
|
|
|
* @method string getExtJson() |
643
|
|
|
* @method $this withExtJson($value) |
644
|
|
|
* @method string getBizId() |
645
|
|
|
* @method $this withBizId($value) |
646
|
|
|
* @method string getPageNumber() |
647
|
|
|
* @method $this withPageNumber($value) |
648
|
|
|
*/ |
649
|
|
|
class QueryAllCinemas extends Rpc |
650
|
|
|
{ |
651
|
|
|
} |
652
|
|
|
|
653
|
|
|
/** |
654
|
|
|
* @method string getExtJson() |
655
|
|
|
* @method $this withExtJson($value) |
656
|
|
|
* @method string getBizId() |
657
|
|
|
* @method $this withBizId($value) |
658
|
|
|
*/ |
659
|
|
|
class QueryAllCities extends Rpc |
660
|
|
|
{ |
661
|
|
|
} |
662
|
|
|
|
663
|
|
|
/** |
664
|
|
|
* @method string getCityCode() |
665
|
|
|
* @method $this withCityCode($value) |
666
|
|
|
* @method string getExtJson() |
667
|
|
|
* @method $this withExtJson($value) |
668
|
|
|
* @method string getBizId() |
669
|
|
|
* @method $this withBizId($value) |
670
|
|
|
*/ |
671
|
|
|
class QueryUpcomingMovies extends Rpc |
672
|
|
|
{ |
673
|
|
|
} |
674
|
|
|
|
675
|
|
|
/** |
676
|
|
|
* @method string getExtJson() |
677
|
|
|
* @method $this withExtJson($value) |
678
|
|
|
* @method string getBizId() |
679
|
|
|
* @method $this withBizId($value) |
680
|
|
|
* @method string getScheduleId() |
681
|
|
|
* @method $this withScheduleId($value) |
682
|
|
|
*/ |
683
|
|
|
class QueryMovieSeats extends Rpc |
684
|
|
|
{ |
685
|
|
|
} |
686
|
|
|
|
687
|
|
|
/** |
688
|
|
|
* @method string getSeatIds() |
689
|
|
|
* @method $this withSeatIds($value) |
690
|
|
|
* @method string getBizUid() |
691
|
|
|
* @method $this withBizUid($value) |
692
|
|
|
* @method string getExtJson() |
693
|
|
|
* @method $this withExtJson($value) |
694
|
|
|
* @method string getBizId() |
695
|
|
|
* @method $this withBizId($value) |
696
|
|
|
* @method string getMobile() |
697
|
|
|
* @method $this withMobile($value) |
698
|
|
|
* @method string getSeatNames() |
699
|
|
|
* @method $this withSeatNames($value) |
700
|
|
|
* @method string getScheduleId() |
701
|
|
|
* @method $this withScheduleId($value) |
702
|
|
|
*/ |
703
|
|
|
class ReserveMovieSeat extends Rpc |
704
|
|
|
{ |
705
|
|
|
} |
706
|
|
|
|
707
|
|
|
/** |
708
|
|
|
* @method string getBizUid() |
709
|
|
|
* @method $this withBizUid($value) |
710
|
|
|
* @method string getExtJson() |
711
|
|
|
* @method $this withExtJson($value) |
712
|
|
|
* @method string getBizId() |
713
|
|
|
* @method $this withBizId($value) |
714
|
|
|
* @method string getLockSeatApplyKey() |
715
|
|
|
* @method $this withLockSeatApplyKey($value) |
716
|
|
|
*/ |
717
|
|
|
class ReleaseMovieSeat extends Rpc |
718
|
|
|
{ |
719
|
|
|
} |
720
|
|
|
|
721
|
|
|
/** |
722
|
|
|
* @method string getBizId() |
723
|
|
|
* @method $this withBizId($value) |
724
|
|
|
* @method string getPageSize() |
725
|
|
|
* @method $this withPageSize($value) |
726
|
|
|
* @method string getUserId() |
727
|
|
|
* @method $this withUserId($value) |
728
|
|
|
* @method string getPageNumber() |
729
|
|
|
* @method $this withPageNumber($value) |
730
|
|
|
* @method string getSubBizId() |
731
|
|
|
* @method $this withSubBizId($value) |
732
|
|
|
*/ |
733
|
|
|
class QueryBizItems extends Rpc |
734
|
|
|
{ |
735
|
|
|
} |
736
|
|
|
|
737
|
|
|
/** |
738
|
|
|
* @method string getAmount() |
739
|
|
|
* @method $this withAmount($value) |
740
|
|
|
* @method string getPayTypes() |
741
|
|
|
* @method $this withPayTypes($value) |
742
|
|
|
* @method string getRequestId() |
743
|
|
|
* @method $this withRequestId($value) |
744
|
|
|
* @method string getOperationDate() |
745
|
|
|
* @method $this withOperationDate($value) |
746
|
|
|
* @method string getChannelId() |
747
|
|
|
* @method $this withChannelId($value) |
748
|
|
|
*/ |
749
|
|
|
class NotifyPayOrderStatus extends Rpc |
750
|
|
|
{ |
751
|
|
|
} |
752
|
|
|
|