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 ( 31c436...15d2ad )
by
unknown
04:25
created

DescribeIpcLiveAddress::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 ImportSpecialPersonnel importSpecialPersonnel(array $options = [])
18
 * @method ListActionData listActionData(array $options = [])
19
 * @method ListDevicesImages listDevicesImages(array $options = [])
20
 * @method ListEmap listEmap(array $options = [])
21
 * @method ListLocation listLocation(array $options = [])
22
 * @method ListMaskDetectionResults listMaskDetectionResults(array $options = [])
23
 * @method ListPersonByImage listPersonByImage(array $options = [])
24
 * @method ListStore listStore(array $options = [])
25
 * @method PullActionData pullActionData(array $options = [])
26
 */
27
class ReidApiResolver extends ApiResolver
28
{
29
}
30
31
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
32
{
33
    /** @var string */
34
    public $product = 'reid';
35
36
    /** @var string */
37
    public $version = '2019-09-28';
38
39
    /** @var string */
40
    public $method = 'POST';
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 getStartTimestamp()
121
 * @method string getStoreId()
122
 * @method string getEndTimestamp()
123
 */
124
class DescribeCameraStatistics extends Rpc
125
{
126
127
    /**
128
     * @param string $value
129
     *
130
     * @return $this
131
     */
132
    public function withStartTimestamp($value)
133
    {
134
        $this->data['StartTimestamp'] = $value;
135
        $this->options['form_params']['StartTimestamp'] = $value;
136
137
        return $this;
138
    }
139
140
    /**
141
     * @param string $value
142
     *
143
     * @return $this
144
     */
145
    public function withStoreId($value)
146
    {
147
        $this->data['StoreId'] = $value;
148
        $this->options['form_params']['StoreId'] = $value;
149
150
        return $this;
151
    }
152
153
    /**
154
     * @param string $value
155
     *
156
     * @return $this
157
     */
158
    public function withEndTimestamp($value)
159
    {
160
        $this->data['EndTimestamp'] = $value;
161
        $this->options['form_params']['EndTimestamp'] = $value;
162
163
        return $this;
164
    }
165
}
166
167
/**
168
 * @method string getStoreId()
169
 * @method string getTime()
170
 */
171
class DescribeCursor extends Rpc
172
{
173
174
    /**
175
     * @param string $value
176
     *
177
     * @return $this
178
     */
179
    public function withStoreId($value)
180
    {
181
        $this->data['StoreId'] = $value;
182
        $this->options['form_params']['StoreId'] = $value;
183
184
        return $this;
185
    }
186
187
    /**
188
     * @param string $value
189
     *
190
     * @return $this
191
     */
192
    public function withTime($value)
193
    {
194
        $this->data['Time'] = $value;
195
        $this->options['form_params']['Time'] = $value;
196
197
        return $this;
198
    }
199
}
200
201
/**
202
 * @method string getStartDate()
203
 * @method string getStoreId()
204
 * @method string getMinCount()
205
 * @method string getParentAmount()
206
 * @method string getMaxCount()
207
 * @method string getEndDate()
208
 * @method string getLocationId()
209
 * @method string getParentLocationIds()
210
 */
211
class DescribeCustomerFlowByLocation extends Rpc
212
{
213
214
    /**
215
     * @param string $value
216
     *
217
     * @return $this
218
     */
219
    public function withStartDate($value)
220
    {
221
        $this->data['StartDate'] = $value;
222
        $this->options['form_params']['StartDate'] = $value;
223
224
        return $this;
225
    }
226
227
    /**
228
     * @param string $value
229
     *
230
     * @return $this
231
     */
232
    public function withStoreId($value)
233
    {
234
        $this->data['StoreId'] = $value;
235
        $this->options['form_params']['StoreId'] = $value;
236
237
        return $this;
238
    }
239
240
    /**
241
     * @param string $value
242
     *
243
     * @return $this
244
     */
245
    public function withMinCount($value)
246
    {
247
        $this->data['MinCount'] = $value;
248
        $this->options['form_params']['MinCount'] = $value;
249
250
        return $this;
251
    }
252
253
    /**
254
     * @param string $value
255
     *
256
     * @return $this
257
     */
258
    public function withParentAmount($value)
259
    {
260
        $this->data['ParentAmount'] = $value;
261
        $this->options['form_params']['ParentAmount'] = $value;
262
263
        return $this;
264
    }
265
266
    /**
267
     * @param string $value
268
     *
269
     * @return $this
270
     */
271
    public function withMaxCount($value)
272
    {
273
        $this->data['MaxCount'] = $value;
274
        $this->options['form_params']['MaxCount'] = $value;
275
276
        return $this;
277
    }
278
279
    /**
280
     * @param string $value
281
     *
282
     * @return $this
283
     */
284
    public function withEndDate($value)
285
    {
286
        $this->data['EndDate'] = $value;
287
        $this->options['form_params']['EndDate'] = $value;
288
289
        return $this;
290
    }
291
292
    /**
293
     * @param string $value
294
     *
295
     * @return $this
296
     */
297
    public function withLocationId($value)
298
    {
299
        $this->data['LocationId'] = $value;
300
        $this->options['form_params']['LocationId'] = $value;
301
302
        return $this;
303
    }
304
305
    /**
306
     * @param string $value
307
     *
308
     * @return $this
309
     */
310
    public function withParentLocationIds($value)
311
    {
312
        $this->data['ParentLocationIds'] = $value;
313
        $this->options['form_params']['ParentLocationIds'] = $value;
314
315
        return $this;
316
    }
317
}
318
319
/**
320
 * @method string getStoreId()
321
 */
322
class DescribeDevices extends Rpc
323
{
324
325
    /**
326
     * @param string $value
327
     *
328
     * @return $this
329
     */
330
    public function withStoreId($value)
331
    {
332
        $this->data['StoreId'] = $value;
333
        $this->options['form_params']['StoreId'] = $value;
334
335
        return $this;
336
    }
337
}
338
339
/**
340
 * @method string getDate()
341
 * @method string getStoreId()
342
 * @method string getEmapId()
343
 */
344
class DescribeHeatMap extends Rpc
345
{
346
347
    /**
348
     * @param string $value
349
     *
350
     * @return $this
351
     */
352
    public function withDate($value)
353
    {
354
        $this->data['Date'] = $value;
355
        $this->options['form_params']['Date'] = $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 withEmapId($value)
379
    {
380
        $this->data['EmapId'] = $value;
381
        $this->options['form_params']['EmapId'] = $value;
382
383
        return $this;
384
    }
385
}
386
387
/**
388
 * @method string getOriginUrls()
389
 * @method string getStoreId()
390
 * @method string getObjectKeys()
391
 */
392
class DescribeImageUrls extends Rpc
393
{
394
395
    /**
396
     * @param string $value
397
     *
398
     * @return $this
399
     */
400
    public function withOriginUrls($value)
401
    {
402
        $this->data['OriginUrls'] = $value;
403
        $this->options['form_params']['OriginUrls'] = $value;
404
405
        return $this;
406
    }
407
408
    /**
409
     * @param string $value
410
     *
411
     * @return $this
412
     */
413
    public function withStoreId($value)
414
    {
415
        $this->data['StoreId'] = $value;
416
        $this->options['form_params']['StoreId'] = $value;
417
418
        return $this;
419
    }
420
421
    /**
422
     * @param string $value
423
     *
424
     * @return $this
425
     */
426
    public function withObjectKeys($value)
427
    {
428
        $this->data['ObjectKeys'] = $value;
429
        $this->options['form_params']['ObjectKeys'] = $value;
430
431
        return $this;
432
    }
433
}
434
435
/**
436
 * @method string getIpcId()
437
 * @method string getStoreId()
438
 */
439
class DescribeIpcLiveAddress extends Rpc
440
{
441
442
    /**
443
     * @param string $value
444
     *
445
     * @return $this
446
     */
447
    public function withIpcId($value)
448
    {
449
        $this->data['IpcId'] = $value;
450
        $this->options['form_params']['IpcId'] = $value;
451
452
        return $this;
453
    }
454
455
    /**
456
     * @param string $value
457
     *
458
     * @return $this
459
     */
460
    public function withStoreId($value)
461
    {
462
        $this->data['StoreId'] = $value;
463
        $this->options['form_params']['StoreId'] = $value;
464
465
        return $this;
466
    }
467
}
468
469
/**
470
 * @method string getDate()
471
 * @method string getStoreIds()
472
 */
473
class DescribeOverviewData extends Rpc
474
{
475
476
    /**
477
     * @param string $value
478
     *
479
     * @return $this
480
     */
481
    public function withDate($value)
482
    {
483
        $this->data['Date'] = $value;
484
        $this->options['form_params']['Date'] = $value;
485
486
        return $this;
487
    }
488
489
    /**
490
     * @param string $value
491
     *
492
     * @return $this
493
     */
494
    public function withStoreIds($value)
495
    {
496
        $this->data['StoreIds'] = $value;
497
        $this->options['form_params']['StoreIds'] = $value;
498
499
        return $this;
500
    }
501
}
502
503
/**
504
 * @method string getUkId()
505
 * @method string getDescription()
506
 * @method string getExternalId()
507
 * @method string getPersonType()
508
 * @method string getUrls()
509
 * @method string getPersonName()
510
 * @method string getStoreIds()
511
 * @method string getStatus()
512
 */
513
class ImportSpecialPersonnel extends Rpc
514
{
515
516
    /**
517
     * @param string $value
518
     *
519
     * @return $this
520
     */
521
    public function withUkId($value)
522
    {
523
        $this->data['UkId'] = $value;
524
        $this->options['form_params']['UkId'] = $value;
525
526
        return $this;
527
    }
528
529
    /**
530
     * @param string $value
531
     *
532
     * @return $this
533
     */
534
    public function withDescription($value)
535
    {
536
        $this->data['Description'] = $value;
537
        $this->options['form_params']['Description'] = $value;
538
539
        return $this;
540
    }
541
542
    /**
543
     * @param string $value
544
     *
545
     * @return $this
546
     */
547
    public function withExternalId($value)
548
    {
549
        $this->data['ExternalId'] = $value;
550
        $this->options['form_params']['ExternalId'] = $value;
551
552
        return $this;
553
    }
554
555
    /**
556
     * @param string $value
557
     *
558
     * @return $this
559
     */
560
    public function withPersonType($value)
561
    {
562
        $this->data['PersonType'] = $value;
563
        $this->options['form_params']['PersonType'] = $value;
564
565
        return $this;
566
    }
567
568
    /**
569
     * @param string $value
570
     *
571
     * @return $this
572
     */
573
    public function withUrls($value)
574
    {
575
        $this->data['Urls'] = $value;
576
        $this->options['form_params']['Urls'] = $value;
577
578
        return $this;
579
    }
580
581
    /**
582
     * @param string $value
583
     *
584
     * @return $this
585
     */
586
    public function withPersonName($value)
587
    {
588
        $this->data['PersonName'] = $value;
589
        $this->options['form_params']['PersonName'] = $value;
590
591
        return $this;
592
    }
593
594
    /**
595
     * @param string $value
596
     *
597
     * @return $this
598
     */
599
    public function withStoreIds($value)
600
    {
601
        $this->data['StoreIds'] = $value;
602
        $this->options['form_params']['StoreIds'] = $value;
603
604
        return $this;
605
    }
606
607
    /**
608
     * @param string $value
609
     *
610
     * @return $this
611
     */
612
    public function withStatus($value)
613
    {
614
        $this->data['Status'] = $value;
615
        $this->options['form_params']['Status'] = $value;
616
617
        return $this;
618
    }
619
}
620
621
/**
622
 * @method string getEndTime()
623
 * @method string getStartTime()
624
 * @method string getStoreId()
625
 * @method string getPageNumber()
626
 * @method string getPageSize()
627
 * @method string getFilterInvalidData()
628
 */
629
class ListActionData extends Rpc
630
{
631
632
    /**
633
     * @param string $value
634
     *
635
     * @return $this
636
     */
637
    public function withEndTime($value)
638
    {
639
        $this->data['EndTime'] = $value;
640
        $this->options['form_params']['EndTime'] = $value;
641
642
        return $this;
643
    }
644
645
    /**
646
     * @param string $value
647
     *
648
     * @return $this
649
     */
650
    public function withStartTime($value)
651
    {
652
        $this->data['StartTime'] = $value;
653
        $this->options['form_params']['StartTime'] = $value;
654
655
        return $this;
656
    }
657
658
    /**
659
     * @param string $value
660
     *
661
     * @return $this
662
     */
663
    public function withStoreId($value)
664
    {
665
        $this->data['StoreId'] = $value;
666
        $this->options['form_params']['StoreId'] = $value;
667
668
        return $this;
669
    }
670
671
    /**
672
     * @param string $value
673
     *
674
     * @return $this
675
     */
676
    public function withPageNumber($value)
677
    {
678
        $this->data['PageNumber'] = $value;
679
        $this->options['form_params']['PageNumber'] = $value;
680
681
        return $this;
682
    }
683
684
    /**
685
     * @param string $value
686
     *
687
     * @return $this
688
     */
689
    public function withPageSize($value)
690
    {
691
        $this->data['PageSize'] = $value;
692
        $this->options['form_params']['PageSize'] = $value;
693
694
        return $this;
695
    }
696
697
    /**
698
     * @param string $value
699
     *
700
     * @return $this
701
     */
702
    public function withFilterInvalidData($value)
703
    {
704
        $this->data['FilterInvalidData'] = $value;
705
        $this->options['form_params']['FilterInvalidData'] = $value;
706
707
        return $this;
708
    }
709
}
710
711
/**
712
 * @method string getIpcIdList()
713
 * @method string getStoreId()
714
 */
715
class ListDevicesImages extends Rpc
716
{
717
718
    /**
719
     * @param string $value
720
     *
721
     * @return $this
722
     */
723
    public function withIpcIdList($value)
724
    {
725
        $this->data['IpcIdList'] = $value;
726
        $this->options['form_params']['IpcIdList'] = $value;
727
728
        return $this;
729
    }
730
731
    /**
732
     * @param string $value
733
     *
734
     * @return $this
735
     */
736
    public function withStoreId($value)
737
    {
738
        $this->data['StoreId'] = $value;
739
        $this->options['form_params']['StoreId'] = $value;
740
741
        return $this;
742
    }
743
}
744
745
/**
746
 * @method string getStoreId()
747
 */
748
class ListEmap extends Rpc
749
{
750
751
    /**
752
     * @param string $value
753
     *
754
     * @return $this
755
     */
756
    public function withStoreId($value)
757
    {
758
        $this->data['StoreId'] = $value;
759
        $this->options['form_params']['StoreId'] = $value;
760
761
        return $this;
762
    }
763
}
764
765
/**
766
 * @method string getStoreId()
767
 */
768
class ListLocation extends Rpc
769
{
770
771
    /**
772
     * @param string $value
773
     *
774
     * @return $this
775
     */
776
    public function withStoreId($value)
777
    {
778
        $this->data['StoreId'] = $value;
779
        $this->options['form_params']['StoreId'] = $value;
780
781
        return $this;
782
    }
783
}
784
785
/**
786
 * @method string getEndTime()
787
 * @method string getStartTime()
788
 * @method string getStoreId()
789
 * @method string getPageNumber()
790
 * @method string getPageSize()
791
 */
792
class ListMaskDetectionResults extends Rpc
793
{
794
795
    /**
796
     * @param string $value
797
     *
798
     * @return $this
799
     */
800
    public function withEndTime($value)
801
    {
802
        $this->data['EndTime'] = $value;
803
        $this->options['form_params']['EndTime'] = $value;
804
805
        return $this;
806
    }
807
808
    /**
809
     * @param string $value
810
     *
811
     * @return $this
812
     */
813
    public function withStartTime($value)
814
    {
815
        $this->data['StartTime'] = $value;
816
        $this->options['form_params']['StartTime'] = $value;
817
818
        return $this;
819
    }
820
821
    /**
822
     * @param string $value
823
     *
824
     * @return $this
825
     */
826
    public function withStoreId($value)
827
    {
828
        $this->data['StoreId'] = $value;
829
        $this->options['form_params']['StoreId'] = $value;
830
831
        return $this;
832
    }
833
834
    /**
835
     * @param string $value
836
     *
837
     * @return $this
838
     */
839
    public function withPageNumber($value)
840
    {
841
        $this->data['PageNumber'] = $value;
842
        $this->options['form_params']['PageNumber'] = $value;
843
844
        return $this;
845
    }
846
847
    /**
848
     * @param string $value
849
     *
850
     * @return $this
851
     */
852
    public function withPageSize($value)
853
    {
854
        $this->data['PageSize'] = $value;
855
        $this->options['form_params']['PageSize'] = $value;
856
857
        return $this;
858
    }
859
}
860
861
/**
862
 * @method string getStoreId()
863
 * @method string getImageUrl()
864
 */
865
class ListPersonByImage extends Rpc
866
{
867
868
    /**
869
     * @param string $value
870
     *
871
     * @return $this
872
     */
873
    public function withStoreId($value)
874
    {
875
        $this->data['StoreId'] = $value;
876
        $this->options['form_params']['StoreId'] = $value;
877
878
        return $this;
879
    }
880
881
    /**
882
     * @param string $value
883
     *
884
     * @return $this
885
     */
886
    public function withImageUrl($value)
887
    {
888
        $this->data['ImageUrl'] = $value;
889
        $this->options['form_params']['ImageUrl'] = $value;
890
891
        return $this;
892
    }
893
}
894
895
class ListStore extends Rpc
896
{
897
}
898
899
/**
900
 * @method string getStoreId()
901
 * @method string getEndMessageId()
902
 * @method string getLimit()
903
 * @method string getStartMessageId()
904
 */
905
class PullActionData extends Rpc
906
{
907
908
    /**
909
     * @param string $value
910
     *
911
     * @return $this
912
     */
913
    public function withStoreId($value)
914
    {
915
        $this->data['StoreId'] = $value;
916
        $this->options['form_params']['StoreId'] = $value;
917
918
        return $this;
919
    }
920
921
    /**
922
     * @param string $value
923
     *
924
     * @return $this
925
     */
926
    public function withEndMessageId($value)
927
    {
928
        $this->data['EndMessageId'] = $value;
929
        $this->options['form_params']['EndMessageId'] = $value;
930
931
        return $this;
932
    }
933
934
    /**
935
     * @param string $value
936
     *
937
     * @return $this
938
     */
939
    public function withLimit($value)
940
    {
941
        $this->data['Limit'] = $value;
942
        $this->options['form_params']['Limit'] = $value;
943
944
        return $this;
945
    }
946
947
    /**
948
     * @param string $value
949
     *
950
     * @return $this
951
     */
952
    public function withStartMessageId($value)
953
    {
954
        $this->data['StartMessageId'] = $value;
955
        $this->options['form_params']['StartMessageId'] = $value;
956
957
        return $this;
958
    }
959
}
960