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 ( 53aad4...30005c )
by
unknown
15:29
created

ListMaskDetectionResults::withPageSize()   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 DescribeCursor describeCursor(array $options = [])
10
 * @method DescribeCustomerFlowByLocation describeCustomerFlowByLocation(array $options = [])
11
 * @method DescribeDevices describeDevices(array $options = [])
12
 * @method DescribeHeatMap describeHeatMap(array $options = [])
13
 * @method DescribeImageUrls describeImageUrls(array $options = [])
14
 * @method DescribeOverviewData describeOverviewData(array $options = [])
15
 * @method ImportSpecialPersonnel importSpecialPersonnel(array $options = [])
16
 * @method ListActionData listActionData(array $options = [])
17
 * @method ListEmap listEmap(array $options = [])
18
 * @method ListLocation listLocation(array $options = [])
19
 * @method ListMaskDetectionResults listMaskDetectionResults(array $options = [])
20
 * @method ListPersonByImage listPersonByImage(array $options = [])
21
 * @method ListStore listStore(array $options = [])
22
 * @method PullActionData pullActionData(array $options = [])
23
 */
24
class ReidApiResolver extends ApiResolver
25
{
26
}
27
28
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
29
{
30
    /** @var string */
31
    public $product = 'reid';
32
33
    /** @var string */
34
    public $version = '2019-09-28';
35
36
    /** @var string */
37
    public $method = 'POST';
38
39
    /** @var string */
40
    public $serviceCode = 'reid';
41
}
42
43
/**
44
 * @method string getDate()
45
 * @method string getExtraStatisticTypes()
46
 * @method string getStoreId()
47
 * @method string getSummaryType()
48
 * @method string getLocationId()
49
 */
50
class DescribeBaseStatistics extends Rpc
51
{
52
53
    /**
54
     * @param string $value
55
     *
56
     * @return $this
57
     */
58
    public function withDate($value)
59
    {
60
        $this->data['Date'] = $value;
61
        $this->options['form_params']['Date'] = $value;
62
63
        return $this;
64
    }
65
66
    /**
67
     * @param string $value
68
     *
69
     * @return $this
70
     */
71
    public function withExtraStatisticTypes($value)
72
    {
73
        $this->data['ExtraStatisticTypes'] = $value;
74
        $this->options['form_params']['ExtraStatisticTypes'] = $value;
75
76
        return $this;
77
    }
78
79
    /**
80
     * @param string $value
81
     *
82
     * @return $this
83
     */
84
    public function withStoreId($value)
85
    {
86
        $this->data['StoreId'] = $value;
87
        $this->options['form_params']['StoreId'] = $value;
88
89
        return $this;
90
    }
91
92
    /**
93
     * @param string $value
94
     *
95
     * @return $this
96
     */
97
    public function withSummaryType($value)
98
    {
99
        $this->data['SummaryType'] = $value;
100
        $this->options['form_params']['SummaryType'] = $value;
101
102
        return $this;
103
    }
104
105
    /**
106
     * @param string $value
107
     *
108
     * @return $this
109
     */
110
    public function withLocationId($value)
111
    {
112
        $this->data['LocationId'] = $value;
113
        $this->options['form_params']['LocationId'] = $value;
114
115
        return $this;
116
    }
117
}
118
119
/**
120
 * @method string getStoreId()
121
 * @method string getTime()
122
 */
123
class DescribeCursor extends Rpc
124
{
125
126
    /**
127
     * @param string $value
128
     *
129
     * @return $this
130
     */
131
    public function withStoreId($value)
132
    {
133
        $this->data['StoreId'] = $value;
134
        $this->options['form_params']['StoreId'] = $value;
135
136
        return $this;
137
    }
138
139
    /**
140
     * @param string $value
141
     *
142
     * @return $this
143
     */
144
    public function withTime($value)
145
    {
146
        $this->data['Time'] = $value;
147
        $this->options['form_params']['Time'] = $value;
148
149
        return $this;
150
    }
151
}
152
153
/**
154
 * @method string getStartDate()
155
 * @method string getStoreId()
156
 * @method string getMinCount()
157
 * @method string getParentAmount()
158
 * @method string getMaxCount()
159
 * @method string getEndDate()
160
 * @method string getLocationId()
161
 * @method string getParentLocationIds()
162
 */
163
class DescribeCustomerFlowByLocation extends Rpc
164
{
165
166
    /**
167
     * @param string $value
168
     *
169
     * @return $this
170
     */
171
    public function withStartDate($value)
172
    {
173
        $this->data['StartDate'] = $value;
174
        $this->options['form_params']['StartDate'] = $value;
175
176
        return $this;
177
    }
178
179
    /**
180
     * @param string $value
181
     *
182
     * @return $this
183
     */
184
    public function withStoreId($value)
185
    {
186
        $this->data['StoreId'] = $value;
187
        $this->options['form_params']['StoreId'] = $value;
188
189
        return $this;
190
    }
191
192
    /**
193
     * @param string $value
194
     *
195
     * @return $this
196
     */
197
    public function withMinCount($value)
198
    {
199
        $this->data['MinCount'] = $value;
200
        $this->options['form_params']['MinCount'] = $value;
201
202
        return $this;
203
    }
204
205
    /**
206
     * @param string $value
207
     *
208
     * @return $this
209
     */
210
    public function withParentAmount($value)
211
    {
212
        $this->data['ParentAmount'] = $value;
213
        $this->options['form_params']['ParentAmount'] = $value;
214
215
        return $this;
216
    }
217
218
    /**
219
     * @param string $value
220
     *
221
     * @return $this
222
     */
223
    public function withMaxCount($value)
224
    {
225
        $this->data['MaxCount'] = $value;
226
        $this->options['form_params']['MaxCount'] = $value;
227
228
        return $this;
229
    }
230
231
    /**
232
     * @param string $value
233
     *
234
     * @return $this
235
     */
236
    public function withEndDate($value)
237
    {
238
        $this->data['EndDate'] = $value;
239
        $this->options['form_params']['EndDate'] = $value;
240
241
        return $this;
242
    }
243
244
    /**
245
     * @param string $value
246
     *
247
     * @return $this
248
     */
249
    public function withLocationId($value)
250
    {
251
        $this->data['LocationId'] = $value;
252
        $this->options['form_params']['LocationId'] = $value;
253
254
        return $this;
255
    }
256
257
    /**
258
     * @param string $value
259
     *
260
     * @return $this
261
     */
262
    public function withParentLocationIds($value)
263
    {
264
        $this->data['ParentLocationIds'] = $value;
265
        $this->options['form_params']['ParentLocationIds'] = $value;
266
267
        return $this;
268
    }
269
}
270
271
/**
272
 * @method string getStoreId()
273
 */
274
class DescribeDevices extends Rpc
275
{
276
277
    /**
278
     * @param string $value
279
     *
280
     * @return $this
281
     */
282
    public function withStoreId($value)
283
    {
284
        $this->data['StoreId'] = $value;
285
        $this->options['form_params']['StoreId'] = $value;
286
287
        return $this;
288
    }
289
}
290
291
/**
292
 * @method string getDate()
293
 * @method string getStoreId()
294
 * @method string getEmapId()
295
 */
296
class DescribeHeatMap extends Rpc
297
{
298
299
    /**
300
     * @param string $value
301
     *
302
     * @return $this
303
     */
304
    public function withDate($value)
305
    {
306
        $this->data['Date'] = $value;
307
        $this->options['form_params']['Date'] = $value;
308
309
        return $this;
310
    }
311
312
    /**
313
     * @param string $value
314
     *
315
     * @return $this
316
     */
317
    public function withStoreId($value)
318
    {
319
        $this->data['StoreId'] = $value;
320
        $this->options['form_params']['StoreId'] = $value;
321
322
        return $this;
323
    }
324
325
    /**
326
     * @param string $value
327
     *
328
     * @return $this
329
     */
330
    public function withEmapId($value)
331
    {
332
        $this->data['EmapId'] = $value;
333
        $this->options['form_params']['EmapId'] = $value;
334
335
        return $this;
336
    }
337
}
338
339
/**
340
 * @method string getOriginUrls()
341
 * @method string getStoreId()
342
 * @method string getObjectKeys()
343
 */
344
class DescribeImageUrls extends Rpc
345
{
346
347
    /**
348
     * @param string $value
349
     *
350
     * @return $this
351
     */
352
    public function withOriginUrls($value)
353
    {
354
        $this->data['OriginUrls'] = $value;
355
        $this->options['form_params']['OriginUrls'] = $value;
356
357
        return $this;
358
    }
359
360
    /**
361
     * @param string $value
362
     *
363
     * @return $this
364
     */
365
    public function withStoreId($value)
366
    {
367
        $this->data['StoreId'] = $value;
368
        $this->options['form_params']['StoreId'] = $value;
369
370
        return $this;
371
    }
372
373
    /**
374
     * @param string $value
375
     *
376
     * @return $this
377
     */
378
    public function withObjectKeys($value)
379
    {
380
        $this->data['ObjectKeys'] = $value;
381
        $this->options['form_params']['ObjectKeys'] = $value;
382
383
        return $this;
384
    }
385
}
386
387
/**
388
 * @method string getDate()
389
 * @method string getStoreIds()
390
 */
391
class DescribeOverviewData extends Rpc
392
{
393
394
    /**
395
     * @param string $value
396
     *
397
     * @return $this
398
     */
399
    public function withDate($value)
400
    {
401
        $this->data['Date'] = $value;
402
        $this->options['form_params']['Date'] = $value;
403
404
        return $this;
405
    }
406
407
    /**
408
     * @param string $value
409
     *
410
     * @return $this
411
     */
412
    public function withStoreIds($value)
413
    {
414
        $this->data['StoreIds'] = $value;
415
        $this->options['form_params']['StoreIds'] = $value;
416
417
        return $this;
418
    }
419
}
420
421
/**
422
 * @method string getUkId()
423
 * @method string getDescription()
424
 * @method string getExternalId()
425
 * @method string getPersonType()
426
 * @method string getUrls()
427
 * @method string getPersonName()
428
 * @method string getStoreIds()
429
 * @method string getStatus()
430
 */
431
class ImportSpecialPersonnel extends Rpc
432
{
433
434
    /**
435
     * @param string $value
436
     *
437
     * @return $this
438
     */
439
    public function withUkId($value)
440
    {
441
        $this->data['UkId'] = $value;
442
        $this->options['form_params']['UkId'] = $value;
443
444
        return $this;
445
    }
446
447
    /**
448
     * @param string $value
449
     *
450
     * @return $this
451
     */
452
    public function withDescription($value)
453
    {
454
        $this->data['Description'] = $value;
455
        $this->options['form_params']['Description'] = $value;
456
457
        return $this;
458
    }
459
460
    /**
461
     * @param string $value
462
     *
463
     * @return $this
464
     */
465
    public function withExternalId($value)
466
    {
467
        $this->data['ExternalId'] = $value;
468
        $this->options['form_params']['ExternalId'] = $value;
469
470
        return $this;
471
    }
472
473
    /**
474
     * @param string $value
475
     *
476
     * @return $this
477
     */
478
    public function withPersonType($value)
479
    {
480
        $this->data['PersonType'] = $value;
481
        $this->options['form_params']['PersonType'] = $value;
482
483
        return $this;
484
    }
485
486
    /**
487
     * @param string $value
488
     *
489
     * @return $this
490
     */
491
    public function withUrls($value)
492
    {
493
        $this->data['Urls'] = $value;
494
        $this->options['form_params']['Urls'] = $value;
495
496
        return $this;
497
    }
498
499
    /**
500
     * @param string $value
501
     *
502
     * @return $this
503
     */
504
    public function withPersonName($value)
505
    {
506
        $this->data['PersonName'] = $value;
507
        $this->options['form_params']['PersonName'] = $value;
508
509
        return $this;
510
    }
511
512
    /**
513
     * @param string $value
514
     *
515
     * @return $this
516
     */
517
    public function withStoreIds($value)
518
    {
519
        $this->data['StoreIds'] = $value;
520
        $this->options['form_params']['StoreIds'] = $value;
521
522
        return $this;
523
    }
524
525
    /**
526
     * @param string $value
527
     *
528
     * @return $this
529
     */
530
    public function withStatus($value)
531
    {
532
        $this->data['Status'] = $value;
533
        $this->options['form_params']['Status'] = $value;
534
535
        return $this;
536
    }
537
}
538
539
/**
540
 * @method string getEndTime()
541
 * @method string getStartTime()
542
 * @method string getStoreId()
543
 * @method string getPageNumber()
544
 * @method string getPageSize()
545
 * @method string getFilterInvalidData()
546
 */
547
class ListActionData extends Rpc
548
{
549
550
    /**
551
     * @param string $value
552
     *
553
     * @return $this
554
     */
555
    public function withEndTime($value)
556
    {
557
        $this->data['EndTime'] = $value;
558
        $this->options['form_params']['EndTime'] = $value;
559
560
        return $this;
561
    }
562
563
    /**
564
     * @param string $value
565
     *
566
     * @return $this
567
     */
568
    public function withStartTime($value)
569
    {
570
        $this->data['StartTime'] = $value;
571
        $this->options['form_params']['StartTime'] = $value;
572
573
        return $this;
574
    }
575
576
    /**
577
     * @param string $value
578
     *
579
     * @return $this
580
     */
581
    public function withStoreId($value)
582
    {
583
        $this->data['StoreId'] = $value;
584
        $this->options['form_params']['StoreId'] = $value;
585
586
        return $this;
587
    }
588
589
    /**
590
     * @param string $value
591
     *
592
     * @return $this
593
     */
594
    public function withPageNumber($value)
595
    {
596
        $this->data['PageNumber'] = $value;
597
        $this->options['form_params']['PageNumber'] = $value;
598
599
        return $this;
600
    }
601
602
    /**
603
     * @param string $value
604
     *
605
     * @return $this
606
     */
607
    public function withPageSize($value)
608
    {
609
        $this->data['PageSize'] = $value;
610
        $this->options['form_params']['PageSize'] = $value;
611
612
        return $this;
613
    }
614
615
    /**
616
     * @param string $value
617
     *
618
     * @return $this
619
     */
620
    public function withFilterInvalidData($value)
621
    {
622
        $this->data['FilterInvalidData'] = $value;
623
        $this->options['form_params']['FilterInvalidData'] = $value;
624
625
        return $this;
626
    }
627
}
628
629
/**
630
 * @method string getStoreId()
631
 */
632
class ListEmap extends Rpc
633
{
634
635
    /**
636
     * @param string $value
637
     *
638
     * @return $this
639
     */
640
    public function withStoreId($value)
641
    {
642
        $this->data['StoreId'] = $value;
643
        $this->options['form_params']['StoreId'] = $value;
644
645
        return $this;
646
    }
647
}
648
649
/**
650
 * @method string getStoreId()
651
 */
652
class ListLocation extends Rpc
653
{
654
655
    /**
656
     * @param string $value
657
     *
658
     * @return $this
659
     */
660
    public function withStoreId($value)
661
    {
662
        $this->data['StoreId'] = $value;
663
        $this->options['form_params']['StoreId'] = $value;
664
665
        return $this;
666
    }
667
}
668
669
/**
670
 * @method string getEndTime()
671
 * @method string getStartTime()
672
 * @method string getStoreId()
673
 * @method string getPageNumber()
674
 * @method string getPageSize()
675
 */
676
class ListMaskDetectionResults extends Rpc
677
{
678
679
    /**
680
     * @param string $value
681
     *
682
     * @return $this
683
     */
684
    public function withEndTime($value)
685
    {
686
        $this->data['EndTime'] = $value;
687
        $this->options['form_params']['EndTime'] = $value;
688
689
        return $this;
690
    }
691
692
    /**
693
     * @param string $value
694
     *
695
     * @return $this
696
     */
697
    public function withStartTime($value)
698
    {
699
        $this->data['StartTime'] = $value;
700
        $this->options['form_params']['StartTime'] = $value;
701
702
        return $this;
703
    }
704
705
    /**
706
     * @param string $value
707
     *
708
     * @return $this
709
     */
710
    public function withStoreId($value)
711
    {
712
        $this->data['StoreId'] = $value;
713
        $this->options['form_params']['StoreId'] = $value;
714
715
        return $this;
716
    }
717
718
    /**
719
     * @param string $value
720
     *
721
     * @return $this
722
     */
723
    public function withPageNumber($value)
724
    {
725
        $this->data['PageNumber'] = $value;
726
        $this->options['form_params']['PageNumber'] = $value;
727
728
        return $this;
729
    }
730
731
    /**
732
     * @param string $value
733
     *
734
     * @return $this
735
     */
736
    public function withPageSize($value)
737
    {
738
        $this->data['PageSize'] = $value;
739
        $this->options['form_params']['PageSize'] = $value;
740
741
        return $this;
742
    }
743
}
744
745
/**
746
 * @method string getStoreId()
747
 * @method string getImageUrl()
748
 */
749
class ListPersonByImage extends Rpc
750
{
751
752
    /**
753
     * @param string $value
754
     *
755
     * @return $this
756
     */
757
    public function withStoreId($value)
758
    {
759
        $this->data['StoreId'] = $value;
760
        $this->options['form_params']['StoreId'] = $value;
761
762
        return $this;
763
    }
764
765
    /**
766
     * @param string $value
767
     *
768
     * @return $this
769
     */
770
    public function withImageUrl($value)
771
    {
772
        $this->data['ImageUrl'] = $value;
773
        $this->options['form_params']['ImageUrl'] = $value;
774
775
        return $this;
776
    }
777
}
778
779
class ListStore extends Rpc
780
{
781
}
782
783
/**
784
 * @method string getStoreId()
785
 * @method string getEndMessageId()
786
 * @method string getLimit()
787
 * @method string getStartMessageId()
788
 */
789
class PullActionData extends Rpc
790
{
791
792
    /**
793
     * @param string $value
794
     *
795
     * @return $this
796
     */
797
    public function withStoreId($value)
798
    {
799
        $this->data['StoreId'] = $value;
800
        $this->options['form_params']['StoreId'] = $value;
801
802
        return $this;
803
    }
804
805
    /**
806
     * @param string $value
807
     *
808
     * @return $this
809
     */
810
    public function withEndMessageId($value)
811
    {
812
        $this->data['EndMessageId'] = $value;
813
        $this->options['form_params']['EndMessageId'] = $value;
814
815
        return $this;
816
    }
817
818
    /**
819
     * @param string $value
820
     *
821
     * @return $this
822
     */
823
    public function withLimit($value)
824
    {
825
        $this->data['Limit'] = $value;
826
        $this->options['form_params']['Limit'] = $value;
827
828
        return $this;
829
    }
830
831
    /**
832
     * @param string $value
833
     *
834
     * @return $this
835
     */
836
    public function withStartMessageId($value)
837
    {
838
        $this->data['StartMessageId'] = $value;
839
        $this->options['form_params']['StartMessageId'] = $value;
840
841
        return $this;
842
    }
843
}
844