GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#107)
by Yong
07:54
created

ApplyRefund::withLeavePictureList()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 9
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

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