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 ( 26ce34...5a83d5 )
by
unknown
06:34
created

PullActionData   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 66
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 5
eloc 16
c 1
b 0
f 0
dl 0
loc 66
rs 10

5 Methods

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