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.
Test Failed
Push — master ( cda04f...5a13f5 )
by
unknown
06:30
created

DescribePredictGroupResult::withTrackletId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace AlibabaCloud\ReidCloud\V20201029;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method DescribeBaseStatistics describeBaseStatistics(array $options = [])
9
 * @method DescribeCameraStatistics describeCameraStatistics(array $options = [])
10
 * @method DescribeCursor describeCursor(array $options = [])
11
 * @method DescribeCustomerFlowByLocation describeCustomerFlowByLocation(array $options = [])
12
 * @method DescribeCustomerFlowByLocationOffline describeCustomerFlowByLocationOffline(array $options = [])
13
 * @method DescribeDevices describeDevices(array $options = [])
14
 * @method DescribeHeatMap describeHeatMap(array $options = [])
15
 * @method DescribeImageUrls describeImageUrls(array $options = [])
16
 * @method DescribeIpcLiveAddress describeIpcLiveAddress(array $options = [])
17
 * @method DescribeOverviewData describeOverviewData(array $options = [])
18
 * @method DescribePredictGroupResult describePredictGroupResult(array $options = [])
19
 * @method ImportSpecialPersonnel importSpecialPersonnel(array $options = [])
20
 * @method ListActionData listActionData(array $options = [])
21
 * @method ListDevicesImages listDevicesImages(array $options = [])
22
 * @method ListEmap listEmap(array $options = [])
23
 * @method ListLocation listLocation(array $options = [])
24
 * @method ListMaskDetectionResults listMaskDetectionResults(array $options = [])
25
 * @method ListPersonByImage listPersonByImage(array $options = [])
26
 * @method ListSpecialPersonnelByImage listSpecialPersonnelByImage(array $options = [])
27
 * @method ListStore listStore(array $options = [])
28
 * @method PullActionData pullActionData(array $options = [])
29
 */
30
class ReidCloudApiResolver extends ApiResolver
31
{
32
}
33
34
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
35
{
36
    /** @var string */
37
    public $product = 'reid_cloud';
38
39
    /** @var string */
40
    public $version = '2020-10-29';
41
42
    /** @var string */
43
    public $method = 'POST';
44
45
    /** @var string */
46
    public $serviceCode = '1.2.3';
47
}
48
49
/**
50
 * @method string getDate()
51
 * @method string getExtraStatisticTypes()
52
 * @method string getStoreId()
53
 * @method string getSummaryType()
54
 * @method string getLocationId()
55
 */
56
class DescribeBaseStatistics extends Rpc
57
{
58
59
    /**
60
     * @param string $value
61
     *
62
     * @return $this
63
     */
64
    public function withDate($value)
65
    {
66
        $this->data['Date'] = $value;
67
        $this->options['form_params']['Date'] = $value;
68
69
        return $this;
70
    }
71
72
    /**
73
     * @param string $value
74
     *
75
     * @return $this
76
     */
77
    public function withExtraStatisticTypes($value)
78
    {
79
        $this->data['ExtraStatisticTypes'] = $value;
80
        $this->options['form_params']['ExtraStatisticTypes'] = $value;
81
82
        return $this;
83
    }
84
85
    /**
86
     * @param string $value
87
     *
88
     * @return $this
89
     */
90
    public function withStoreId($value)
91
    {
92
        $this->data['StoreId'] = $value;
93
        $this->options['form_params']['StoreId'] = $value;
94
95
        return $this;
96
    }
97
98
    /**
99
     * @param string $value
100
     *
101
     * @return $this
102
     */
103
    public function withSummaryType($value)
104
    {
105
        $this->data['SummaryType'] = $value;
106
        $this->options['form_params']['SummaryType'] = $value;
107
108
        return $this;
109
    }
110
111
    /**
112
     * @param string $value
113
     *
114
     * @return $this
115
     */
116
    public function withLocationId($value)
117
    {
118
        $this->data['LocationId'] = $value;
119
        $this->options['form_params']['LocationId'] = $value;
120
121
        return $this;
122
    }
123
}
124
125
/**
126
 * @method string getStartTimestamp()
127
 * @method string getStoreId()
128
 * @method string getEndTimestamp()
129
 * @method string getLocationId()
130
 */
131
class DescribeCameraStatistics extends Rpc
132
{
133
134
    /**
135
     * @param string $value
136
     *
137
     * @return $this
138
     */
139
    public function withStartTimestamp($value)
140
    {
141
        $this->data['StartTimestamp'] = $value;
142
        $this->options['form_params']['StartTimestamp'] = $value;
143
144
        return $this;
145
    }
146
147
    /**
148
     * @param string $value
149
     *
150
     * @return $this
151
     */
152
    public function withStoreId($value)
153
    {
154
        $this->data['StoreId'] = $value;
155
        $this->options['form_params']['StoreId'] = $value;
156
157
        return $this;
158
    }
159
160
    /**
161
     * @param string $value
162
     *
163
     * @return $this
164
     */
165
    public function withEndTimestamp($value)
166
    {
167
        $this->data['EndTimestamp'] = $value;
168
        $this->options['form_params']['EndTimestamp'] = $value;
169
170
        return $this;
171
    }
172
173
    /**
174
     * @param string $value
175
     *
176
     * @return $this
177
     */
178
    public function withLocationId($value)
179
    {
180
        $this->data['LocationId'] = $value;
181
        $this->options['form_params']['LocationId'] = $value;
182
183
        return $this;
184
    }
185
}
186
187
/**
188
 * @method string getPartitionIndex()
189
 * @method string getStoreId()
190
 * @method string getTime()
191
 */
192
class DescribeCursor extends Rpc
193
{
194
195
    /**
196
     * @param string $value
197
     *
198
     * @return $this
199
     */
200
    public function withPartitionIndex($value)
201
    {
202
        $this->data['PartitionIndex'] = $value;
203
        $this->options['form_params']['PartitionIndex'] = $value;
204
205
        return $this;
206
    }
207
208
    /**
209
     * @param string $value
210
     *
211
     * @return $this
212
     */
213
    public function withStoreId($value)
214
    {
215
        $this->data['StoreId'] = $value;
216
        $this->options['form_params']['StoreId'] = $value;
217
218
        return $this;
219
    }
220
221
    /**
222
     * @param string $value
223
     *
224
     * @return $this
225
     */
226
    public function withTime($value)
227
    {
228
        $this->data['Time'] = $value;
229
        $this->options['form_params']['Time'] = $value;
230
231
        return $this;
232
    }
233
}
234
235
/**
236
 * @method string getStartDate()
237
 * @method string getStoreId()
238
 * @method string getMinCount()
239
 * @method string getParentAmount()
240
 * @method string getMaxCount()
241
 * @method string getEndDate()
242
 * @method string getLocationId()
243
 * @method string getParentLocationIds()
244
 */
245
class DescribeCustomerFlowByLocation extends Rpc
246
{
247
248
    /**
249
     * @param string $value
250
     *
251
     * @return $this
252
     */
253
    public function withStartDate($value)
254
    {
255
        $this->data['StartDate'] = $value;
256
        $this->options['form_params']['StartDate'] = $value;
257
258
        return $this;
259
    }
260
261
    /**
262
     * @param string $value
263
     *
264
     * @return $this
265
     */
266
    public function withStoreId($value)
267
    {
268
        $this->data['StoreId'] = $value;
269
        $this->options['form_params']['StoreId'] = $value;
270
271
        return $this;
272
    }
273
274
    /**
275
     * @param string $value
276
     *
277
     * @return $this
278
     */
279
    public function withMinCount($value)
280
    {
281
        $this->data['MinCount'] = $value;
282
        $this->options['form_params']['MinCount'] = $value;
283
284
        return $this;
285
    }
286
287
    /**
288
     * @param string $value
289
     *
290
     * @return $this
291
     */
292
    public function withParentAmount($value)
293
    {
294
        $this->data['ParentAmount'] = $value;
295
        $this->options['form_params']['ParentAmount'] = $value;
296
297
        return $this;
298
    }
299
300
    /**
301
     * @param string $value
302
     *
303
     * @return $this
304
     */
305
    public function withMaxCount($value)
306
    {
307
        $this->data['MaxCount'] = $value;
308
        $this->options['form_params']['MaxCount'] = $value;
309
310
        return $this;
311
    }
312
313
    /**
314
     * @param string $value
315
     *
316
     * @return $this
317
     */
318
    public function withEndDate($value)
319
    {
320
        $this->data['EndDate'] = $value;
321
        $this->options['form_params']['EndDate'] = $value;
322
323
        return $this;
324
    }
325
326
    /**
327
     * @param string $value
328
     *
329
     * @return $this
330
     */
331
    public function withLocationId($value)
332
    {
333
        $this->data['LocationId'] = $value;
334
        $this->options['form_params']['LocationId'] = $value;
335
336
        return $this;
337
    }
338
339
    /**
340
     * @param string $value
341
     *
342
     * @return $this
343
     */
344
    public function withParentLocationIds($value)
345
    {
346
        $this->data['ParentLocationIds'] = $value;
347
        $this->options['form_params']['ParentLocationIds'] = $value;
348
349
        return $this;
350
    }
351
}
352
353
/**
354
 * @method string getStartDate()
355
 * @method string getStoreId()
356
 */
357
class DescribeCustomerFlowByLocationOffline extends Rpc
358
{
359
360
    /**
361
     * @param string $value
362
     *
363
     * @return $this
364
     */
365
    public function withStartDate($value)
366
    {
367
        $this->data['StartDate'] = $value;
368
        $this->options['form_params']['StartDate'] = $value;
369
370
        return $this;
371
    }
372
373
    /**
374
     * @param string $value
375
     *
376
     * @return $this
377
     */
378
    public function withStoreId($value)
379
    {
380
        $this->data['StoreId'] = $value;
381
        $this->options['form_params']['StoreId'] = $value;
382
383
        return $this;
384
    }
385
}
386
387
/**
388
 * @method string getStoreId()
389
 */
390
class DescribeDevices extends Rpc
391
{
392
393
    /**
394
     * @param string $value
395
     *
396
     * @return $this
397
     */
398
    public function withStoreId($value)
399
    {
400
        $this->data['StoreId'] = $value;
401
        $this->options['form_params']['StoreId'] = $value;
402
403
        return $this;
404
    }
405
}
406
407
/**
408
 * @method string getDate()
409
 * @method string getStoreId()
410
 * @method string getEmapId()
411
 */
412
class DescribeHeatMap extends Rpc
413
{
414
415
    /**
416
     * @param string $value
417
     *
418
     * @return $this
419
     */
420
    public function withDate($value)
421
    {
422
        $this->data['Date'] = $value;
423
        $this->options['form_params']['Date'] = $value;
424
425
        return $this;
426
    }
427
428
    /**
429
     * @param string $value
430
     *
431
     * @return $this
432
     */
433
    public function withStoreId($value)
434
    {
435
        $this->data['StoreId'] = $value;
436
        $this->options['form_params']['StoreId'] = $value;
437
438
        return $this;
439
    }
440
441
    /**
442
     * @param string $value
443
     *
444
     * @return $this
445
     */
446
    public function withEmapId($value)
447
    {
448
        $this->data['EmapId'] = $value;
449
        $this->options['form_params']['EmapId'] = $value;
450
451
        return $this;
452
    }
453
}
454
455
/**
456
 * @method string getOriginUrls()
457
 * @method string getStoreId()
458
 * @method string getObjectKeys()
459
 */
460
class DescribeImageUrls extends Rpc
461
{
462
463
    /**
464
     * @param string $value
465
     *
466
     * @return $this
467
     */
468
    public function withOriginUrls($value)
469
    {
470
        $this->data['OriginUrls'] = $value;
471
        $this->options['form_params']['OriginUrls'] = $value;
472
473
        return $this;
474
    }
475
476
    /**
477
     * @param string $value
478
     *
479
     * @return $this
480
     */
481
    public function withStoreId($value)
482
    {
483
        $this->data['StoreId'] = $value;
484
        $this->options['form_params']['StoreId'] = $value;
485
486
        return $this;
487
    }
488
489
    /**
490
     * @param string $value
491
     *
492
     * @return $this
493
     */
494
    public function withObjectKeys($value)
495
    {
496
        $this->data['ObjectKeys'] = $value;
497
        $this->options['form_params']['ObjectKeys'] = $value;
498
499
        return $this;
500
    }
501
}
502
503
/**
504
 * @method string getIpcId()
505
 * @method string getStoreId()
506
 * @method string getProtocolType()
507
 */
508
class DescribeIpcLiveAddress extends Rpc
509
{
510
511
    /**
512
     * @param string $value
513
     *
514
     * @return $this
515
     */
516
    public function withIpcId($value)
517
    {
518
        $this->data['IpcId'] = $value;
519
        $this->options['form_params']['IpcId'] = $value;
520
521
        return $this;
522
    }
523
524
    /**
525
     * @param string $value
526
     *
527
     * @return $this
528
     */
529
    public function withStoreId($value)
530
    {
531
        $this->data['StoreId'] = $value;
532
        $this->options['form_params']['StoreId'] = $value;
533
534
        return $this;
535
    }
536
537
    /**
538
     * @param string $value
539
     *
540
     * @return $this
541
     */
542
    public function withProtocolType($value)
543
    {
544
        $this->data['ProtocolType'] = $value;
545
        $this->options['form_params']['ProtocolType'] = $value;
546
547
        return $this;
548
    }
549
}
550
551
/**
552
 * @method string getDate()
553
 * @method string getStoreIds()
554
 */
555
class DescribeOverviewData extends Rpc
556
{
557
558
    /**
559
     * @param string $value
560
     *
561
     * @return $this
562
     */
563
    public function withDate($value)
564
    {
565
        $this->data['Date'] = $value;
566
        $this->options['form_params']['Date'] = $value;
567
568
        return $this;
569
    }
570
571
    /**
572
     * @param string $value
573
     *
574
     * @return $this
575
     */
576
    public function withStoreIds($value)
577
    {
578
        $this->data['StoreIds'] = $value;
579
        $this->options['form_params']['StoreIds'] = $value;
580
581
        return $this;
582
    }
583
}
584
585
/**
586
 * @method string getStartTime()
587
 * @method string getIpcId()
588
 * @method string getStoreId()
589
 * @method string getPageNumber()
590
 * @method string getPageSize()
591
 * @method string getTrackletId()
592
 * @method string getEndTime()
593
 * @method string getPredictType()
594
 */
595
class DescribePredictGroupResult extends Rpc
596
{
597
598
    /**
599
     * @param string $value
600
     *
601
     * @return $this
602
     */
603
    public function withStartTime($value)
604
    {
605
        $this->data['StartTime'] = $value;
606
        $this->options['form_params']['StartTime'] = $value;
607
608
        return $this;
609
    }
610
611
    /**
612
     * @param string $value
613
     *
614
     * @return $this
615
     */
616
    public function withIpcId($value)
617
    {
618
        $this->data['IpcId'] = $value;
619
        $this->options['form_params']['IpcId'] = $value;
620
621
        return $this;
622
    }
623
624
    /**
625
     * @param string $value
626
     *
627
     * @return $this
628
     */
629
    public function withStoreId($value)
630
    {
631
        $this->data['StoreId'] = $value;
632
        $this->options['form_params']['StoreId'] = $value;
633
634
        return $this;
635
    }
636
637
    /**
638
     * @param string $value
639
     *
640
     * @return $this
641
     */
642
    public function withPageNumber($value)
643
    {
644
        $this->data['PageNumber'] = $value;
645
        $this->options['form_params']['PageNumber'] = $value;
646
647
        return $this;
648
    }
649
650
    /**
651
     * @param string $value
652
     *
653
     * @return $this
654
     */
655
    public function withPageSize($value)
656
    {
657
        $this->data['PageSize'] = $value;
658
        $this->options['form_params']['PageSize'] = $value;
659
660
        return $this;
661
    }
662
663
    /**
664
     * @param string $value
665
     *
666
     * @return $this
667
     */
668
    public function withTrackletId($value)
669
    {
670
        $this->data['TrackletId'] = $value;
671
        $this->options['form_params']['TrackletId'] = $value;
672
673
        return $this;
674
    }
675
676
    /**
677
     * @param string $value
678
     *
679
     * @return $this
680
     */
681
    public function withEndTime($value)
682
    {
683
        $this->data['EndTime'] = $value;
684
        $this->options['form_params']['EndTime'] = $value;
685
686
        return $this;
687
    }
688
689
    /**
690
     * @param string $value
691
     *
692
     * @return $this
693
     */
694
    public function withPredictType($value)
695
    {
696
        $this->data['PredictType'] = $value;
697
        $this->options['form_params']['PredictType'] = $value;
698
699
        return $this;
700
    }
701
}
702
703
/**
704
 * @method string getUkId()
705
 * @method string getDescription()
706
 * @method string getExternalId()
707
 * @method string getSource()
708
 * @method string getPersonType()
709
 * @method string getUrls()
710
 * @method string getPersonName()
711
 * @method string getStoreIds()
712
 * @method string getStatus()
713
 */
714
class ImportSpecialPersonnel extends Rpc
715
{
716
717
    /**
718
     * @param string $value
719
     *
720
     * @return $this
721
     */
722
    public function withUkId($value)
723
    {
724
        $this->data['UkId'] = $value;
725
        $this->options['form_params']['UkId'] = $value;
726
727
        return $this;
728
    }
729
730
    /**
731
     * @param string $value
732
     *
733
     * @return $this
734
     */
735
    public function withDescription($value)
736
    {
737
        $this->data['Description'] = $value;
738
        $this->options['form_params']['Description'] = $value;
739
740
        return $this;
741
    }
742
743
    /**
744
     * @param string $value
745
     *
746
     * @return $this
747
     */
748
    public function withExternalId($value)
749
    {
750
        $this->data['ExternalId'] = $value;
751
        $this->options['form_params']['ExternalId'] = $value;
752
753
        return $this;
754
    }
755
756
    /**
757
     * @param string $value
758
     *
759
     * @return $this
760
     */
761
    public function withSource($value)
762
    {
763
        $this->data['Source'] = $value;
764
        $this->options['form_params']['Source'] = $value;
765
766
        return $this;
767
    }
768
769
    /**
770
     * @param string $value
771
     *
772
     * @return $this
773
     */
774
    public function withPersonType($value)
775
    {
776
        $this->data['PersonType'] = $value;
777
        $this->options['form_params']['PersonType'] = $value;
778
779
        return $this;
780
    }
781
782
    /**
783
     * @param string $value
784
     *
785
     * @return $this
786
     */
787
    public function withUrls($value)
788
    {
789
        $this->data['Urls'] = $value;
790
        $this->options['form_params']['Urls'] = $value;
791
792
        return $this;
793
    }
794
795
    /**
796
     * @param string $value
797
     *
798
     * @return $this
799
     */
800
    public function withPersonName($value)
801
    {
802
        $this->data['PersonName'] = $value;
803
        $this->options['form_params']['PersonName'] = $value;
804
805
        return $this;
806
    }
807
808
    /**
809
     * @param string $value
810
     *
811
     * @return $this
812
     */
813
    public function withStoreIds($value)
814
    {
815
        $this->data['StoreIds'] = $value;
816
        $this->options['form_params']['StoreIds'] = $value;
817
818
        return $this;
819
    }
820
821
    /**
822
     * @param string $value
823
     *
824
     * @return $this
825
     */
826
    public function withStatus($value)
827
    {
828
        $this->data['Status'] = $value;
829
        $this->options['form_params']['Status'] = $value;
830
831
        return $this;
832
    }
833
}
834
835
/**
836
 * @method string getEndTime()
837
 * @method string getStartTime()
838
 * @method string getStoreId()
839
 * @method string getPageNumber()
840
 * @method string getName()
841
 * @method string getPageSize()
842
 * @method string getFilterInvalidData()
843
 */
844
class ListActionData extends Rpc
845
{
846
847
    /**
848
     * @param string $value
849
     *
850
     * @return $this
851
     */
852
    public function withEndTime($value)
853
    {
854
        $this->data['EndTime'] = $value;
855
        $this->options['form_params']['EndTime'] = $value;
856
857
        return $this;
858
    }
859
860
    /**
861
     * @param string $value
862
     *
863
     * @return $this
864
     */
865
    public function withStartTime($value)
866
    {
867
        $this->data['StartTime'] = $value;
868
        $this->options['form_params']['StartTime'] = $value;
869
870
        return $this;
871
    }
872
873
    /**
874
     * @param string $value
875
     *
876
     * @return $this
877
     */
878
    public function withStoreId($value)
879
    {
880
        $this->data['StoreId'] = $value;
881
        $this->options['form_params']['StoreId'] = $value;
882
883
        return $this;
884
    }
885
886
    /**
887
     * @param string $value
888
     *
889
     * @return $this
890
     */
891
    public function withPageNumber($value)
892
    {
893
        $this->data['PageNumber'] = $value;
894
        $this->options['form_params']['PageNumber'] = $value;
895
896
        return $this;
897
    }
898
899
    /**
900
     * @param string $value
901
     *
902
     * @return $this
903
     */
904
    public function withName($value)
905
    {
906
        $this->data['Name'] = $value;
907
        $this->options['form_params']['Name'] = $value;
908
909
        return $this;
910
    }
911
912
    /**
913
     * @param string $value
914
     *
915
     * @return $this
916
     */
917
    public function withPageSize($value)
918
    {
919
        $this->data['PageSize'] = $value;
920
        $this->options['form_params']['PageSize'] = $value;
921
922
        return $this;
923
    }
924
925
    /**
926
     * @param string $value
927
     *
928
     * @return $this
929
     */
930
    public function withFilterInvalidData($value)
931
    {
932
        $this->data['FilterInvalidData'] = $value;
933
        $this->options['form_params']['FilterInvalidData'] = $value;
934
935
        return $this;
936
    }
937
}
938
939
/**
940
 * @method string getIpcIdList()
941
 * @method string getStoreId()
942
 */
943
class ListDevicesImages extends Rpc
944
{
945
946
    /**
947
     * @param string $value
948
     *
949
     * @return $this
950
     */
951
    public function withIpcIdList($value)
952
    {
953
        $this->data['IpcIdList'] = $value;
954
        $this->options['form_params']['IpcIdList'] = $value;
955
956
        return $this;
957
    }
958
959
    /**
960
     * @param string $value
961
     *
962
     * @return $this
963
     */
964
    public function withStoreId($value)
965
    {
966
        $this->data['StoreId'] = $value;
967
        $this->options['form_params']['StoreId'] = $value;
968
969
        return $this;
970
    }
971
}
972
973
/**
974
 * @method string getStoreId()
975
 */
976
class ListEmap extends Rpc
977
{
978
979
    /**
980
     * @param string $value
981
     *
982
     * @return $this
983
     */
984
    public function withStoreId($value)
985
    {
986
        $this->data['StoreId'] = $value;
987
        $this->options['form_params']['StoreId'] = $value;
988
989
        return $this;
990
    }
991
}
992
993
/**
994
 * @method string getStoreId()
995
 */
996
class ListLocation extends Rpc
997
{
998
999
    /**
1000
     * @param string $value
1001
     *
1002
     * @return $this
1003
     */
1004
    public function withStoreId($value)
1005
    {
1006
        $this->data['StoreId'] = $value;
1007
        $this->options['form_params']['StoreId'] = $value;
1008
1009
        return $this;
1010
    }
1011
}
1012
1013
/**
1014
 * @method string getEndTime()
1015
 * @method string getStartTime()
1016
 * @method string getStoreId()
1017
 * @method string getPageNumber()
1018
 * @method string getName()
1019
 * @method string getPageSize()
1020
 */
1021
class ListMaskDetectionResults extends Rpc
1022
{
1023
1024
    /**
1025
     * @param string $value
1026
     *
1027
     * @return $this
1028
     */
1029
    public function withEndTime($value)
1030
    {
1031
        $this->data['EndTime'] = $value;
1032
        $this->options['form_params']['EndTime'] = $value;
1033
1034
        return $this;
1035
    }
1036
1037
    /**
1038
     * @param string $value
1039
     *
1040
     * @return $this
1041
     */
1042
    public function withStartTime($value)
1043
    {
1044
        $this->data['StartTime'] = $value;
1045
        $this->options['form_params']['StartTime'] = $value;
1046
1047
        return $this;
1048
    }
1049
1050
    /**
1051
     * @param string $value
1052
     *
1053
     * @return $this
1054
     */
1055
    public function withStoreId($value)
1056
    {
1057
        $this->data['StoreId'] = $value;
1058
        $this->options['form_params']['StoreId'] = $value;
1059
1060
        return $this;
1061
    }
1062
1063
    /**
1064
     * @param string $value
1065
     *
1066
     * @return $this
1067
     */
1068
    public function withPageNumber($value)
1069
    {
1070
        $this->data['PageNumber'] = $value;
1071
        $this->options['form_params']['PageNumber'] = $value;
1072
1073
        return $this;
1074
    }
1075
1076
    /**
1077
     * @param string $value
1078
     *
1079
     * @return $this
1080
     */
1081
    public function withName($value)
1082
    {
1083
        $this->data['Name'] = $value;
1084
        $this->options['form_params']['Name'] = $value;
1085
1086
        return $this;
1087
    }
1088
1089
    /**
1090
     * @param string $value
1091
     *
1092
     * @return $this
1093
     */
1094
    public function withPageSize($value)
1095
    {
1096
        $this->data['PageSize'] = $value;
1097
        $this->options['form_params']['PageSize'] = $value;
1098
1099
        return $this;
1100
    }
1101
}
1102
1103
/**
1104
 * @method string getStoreId()
1105
 * @method string getImageUrl()
1106
 */
1107
class ListPersonByImage extends Rpc
1108
{
1109
1110
    /**
1111
     * @param string $value
1112
     *
1113
     * @return $this
1114
     */
1115
    public function withStoreId($value)
1116
    {
1117
        $this->data['StoreId'] = $value;
1118
        $this->options['form_params']['StoreId'] = $value;
1119
1120
        return $this;
1121
    }
1122
1123
    /**
1124
     * @param string $value
1125
     *
1126
     * @return $this
1127
     */
1128
    public function withImageUrl($value)
1129
    {
1130
        $this->data['ImageUrl'] = $value;
1131
        $this->options['form_params']['ImageUrl'] = $value;
1132
1133
        return $this;
1134
    }
1135
}
1136
1137
/**
1138
 * @method string getSource()
1139
 * @method string getStoreId()
1140
 * @method string getPersonType()
1141
 * @method string getImageUrl()
1142
 */
1143
class ListSpecialPersonnelByImage extends Rpc
1144
{
1145
1146
    /**
1147
     * @param string $value
1148
     *
1149
     * @return $this
1150
     */
1151
    public function withSource($value)
1152
    {
1153
        $this->data['Source'] = $value;
1154
        $this->options['form_params']['Source'] = $value;
1155
1156
        return $this;
1157
    }
1158
1159
    /**
1160
     * @param string $value
1161
     *
1162
     * @return $this
1163
     */
1164
    public function withStoreId($value)
1165
    {
1166
        $this->data['StoreId'] = $value;
1167
        $this->options['form_params']['StoreId'] = $value;
1168
1169
        return $this;
1170
    }
1171
1172
    /**
1173
     * @param string $value
1174
     *
1175
     * @return $this
1176
     */
1177
    public function withPersonType($value)
1178
    {
1179
        $this->data['PersonType'] = $value;
1180
        $this->options['form_params']['PersonType'] = $value;
1181
1182
        return $this;
1183
    }
1184
1185
    /**
1186
     * @param string $value
1187
     *
1188
     * @return $this
1189
     */
1190
    public function withImageUrl($value)
1191
    {
1192
        $this->data['ImageUrl'] = $value;
1193
        $this->options['form_params']['ImageUrl'] = $value;
1194
1195
        return $this;
1196
    }
1197
}
1198
1199
class ListStore extends Rpc
1200
{
1201
}
1202
1203
/**
1204
 * @method string getPartitionIndex()
1205
 * @method string getStoreId()
1206
 * @method string getEndMessageId()
1207
 * @method string getLimit()
1208
 * @method string getStartMessageId()
1209
 */
1210
class PullActionData extends Rpc
1211
{
1212
1213
    /**
1214
     * @param string $value
1215
     *
1216
     * @return $this
1217
     */
1218
    public function withPartitionIndex($value)
1219
    {
1220
        $this->data['PartitionIndex'] = $value;
1221
        $this->options['form_params']['PartitionIndex'] = $value;
1222
1223
        return $this;
1224
    }
1225
1226
    /**
1227
     * @param string $value
1228
     *
1229
     * @return $this
1230
     */
1231
    public function withStoreId($value)
1232
    {
1233
        $this->data['StoreId'] = $value;
1234
        $this->options['form_params']['StoreId'] = $value;
1235
1236
        return $this;
1237
    }
1238
1239
    /**
1240
     * @param string $value
1241
     *
1242
     * @return $this
1243
     */
1244
    public function withEndMessageId($value)
1245
    {
1246
        $this->data['EndMessageId'] = $value;
1247
        $this->options['form_params']['EndMessageId'] = $value;
1248
1249
        return $this;
1250
    }
1251
1252
    /**
1253
     * @param string $value
1254
     *
1255
     * @return $this
1256
     */
1257
    public function withLimit($value)
1258
    {
1259
        $this->data['Limit'] = $value;
1260
        $this->options['form_params']['Limit'] = $value;
1261
1262
        return $this;
1263
    }
1264
1265
    /**
1266
     * @param string $value
1267
     *
1268
     * @return $this
1269
     */
1270
    public function withStartMessageId($value)
1271
    {
1272
        $this->data['StartMessageId'] = $value;
1273
        $this->options['form_params']['StartMessageId'] = $value;
1274
1275
        return $this;
1276
    }
1277
}
1278