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 ( 4e84d6...140692 )
by
unknown
05:37
created

DescribeDevices   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 4
dl 0
loc 14
rs 10
c 0
b 0
f 0

1 Method

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