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 ( c07864...fdf501 )
by
unknown
05:24
created

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