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 ( 9d0fba...41d1be )
by
unknown
06:06
created

VodAsyncScanResults   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A withClientInfo() 0 6 1
1
<?php
2
3
namespace AlibabaCloud\Green\V20180509;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method AddFaces addFaces(array $options = [])
9
 * @method AddGroups addGroups(array $options = [])
10
 * @method AddPerson addPerson(array $options = [])
11
 * @method AddSimilarityImage addSimilarityImage(array $options = [])
12
 * @method AddSimilarityLibrary addSimilarityLibrary(array $options = [])
13
 * @method AddVideoDna addVideoDna(array $options = [])
14
 * @method AddVideoDnaGroup addVideoDnaGroup(array $options = [])
15
 * @method DeleteFaces deleteFaces(array $options = [])
16
 * @method DeleteGroups deleteGroups(array $options = [])
17
 * @method DeletePerson deletePerson(array $options = [])
18
 * @method DeleteSimilarityImage deleteSimilarityImage(array $options = [])
19
 * @method DeleteSimilarityLibrary deleteSimilarityLibrary(array $options = [])
20
 * @method DeleteVideoDna deleteVideoDna(array $options = [])
21
 * @method DeleteVideoDnaGroup deleteVideoDnaGroup(array $options = [])
22
 * @method DetectFace detectFace(array $options = [])
23
 * @method FileAsyncScan fileAsyncScan(array $options = [])
24
 * @method FileAsyncScanResults fileAsyncScanResults(array $options = [])
25
 * @method GetAddVideoDnaResults getAddVideoDnaResults(array $options = [])
26
 * @method GetFaces getFaces(array $options = [])
27
 * @method GetGroups getGroups(array $options = [])
28
 * @method GetPerson getPerson(array $options = [])
29
 * @method GetPersons getPersons(array $options = [])
30
 * @method GetSimilarityImage getSimilarityImage(array $options = [])
31
 * @method GetSimilarityLibrary getSimilarityLibrary(array $options = [])
32
 * @method ImageAsyncScan imageAsyncScan(array $options = [])
33
 * @method ImageAsyncScanResults imageAsyncScanResults(array $options = [])
34
 * @method ImageScanFeedback imageScanFeedback(array $options = [])
35
 * @method ImageSyncScan imageSyncScan(array $options = [])
36
 * @method ListSimilarityImages listSimilarityImages(array $options = [])
37
 * @method ListSimilarityLibraries listSimilarityLibraries(array $options = [])
38
 * @method LiveStreamAsyncScan liveStreamAsyncScan(array $options = [])
39
 * @method LiveStreamAsyncScanResults liveStreamAsyncScanResults(array $options = [])
40
 * @method LiveStreamCancelScan liveStreamCancelScan(array $options = [])
41
 * @method SearchPerson searchPerson(array $options = [])
42
 * @method SetPerson setPerson(array $options = [])
43
 * @method TextFeedback textFeedback(array $options = [])
44
 * @method TextScan textScan(array $options = [])
45
 * @method UploadCredentials uploadCredentials(array $options = [])
46
 * @method VideoAsyncScan videoAsyncScan(array $options = [])
47
 * @method VideoAsyncScanResults videoAsyncScanResults(array $options = [])
48
 * @method VideoCancelScan videoCancelScan(array $options = [])
49
 * @method VideoFeedback videoFeedback(array $options = [])
50
 * @method VideoSyncScan videoSyncScan(array $options = [])
51
 * @method VodAsyncScan vodAsyncScan(array $options = [])
52
 * @method VodAsyncScanResults vodAsyncScanResults(array $options = [])
53
 * @method VoiceAsyncScan voiceAsyncScan(array $options = [])
54
 * @method VoiceAsyncScanResults voiceAsyncScanResults(array $options = [])
55
 * @method VoiceCancelScan voiceCancelScan(array $options = [])
56
 * @method VoiceIdentityCheck voiceIdentityCheck(array $options = [])
57
 * @method VoiceIdentityRegister voiceIdentityRegister(array $options = [])
58
 * @method VoiceIdentityStartCheck voiceIdentityStartCheck(array $options = [])
59
 * @method VoiceIdentityStartRegister voiceIdentityStartRegister(array $options = [])
60
 * @method VoiceIdentityUnregister voiceIdentityUnregister(array $options = [])
61
 * @method VoiceSyncScan voiceSyncScan(array $options = [])
62
 * @method WebpageAsyncScan webpageAsyncScan(array $options = [])
63
 * @method WebpageAsyncScanResults webpageAsyncScanResults(array $options = [])
64
 * @method WebpageSyncScan webpageSyncScan(array $options = [])
65
 */
66
class GreenApiResolver extends ApiResolver
67
{
68
}
69
70
class Roa extends \AlibabaCloud\Client\Resolver\Roa
71
{
72
    /** @var string */
73
    public $product = 'Green';
74
75
    /** @var string */
76
    public $version = '2018-05-09';
77
78
    /** @var string */
79
    public $method = 'POST';
80
81
    /** @var string */
82
    public $serviceCode = 'green';
83
}
84
85
/**
86
 * @method string getClientInfo()
87
 */
88
class AddFaces extends Roa
89
{
90
    /** @var string */
91
    public $pathPattern = '/green/sface/face/add';
92
93
    /**
94
     * @param string $value
95
     *
96
     * @return $this
97
     */
98
    public function withClientInfo($value)
99
    {
100
        $this->data['ClientInfo'] = $value;
101
        $this->options['query']['ClientInfo'] = $value;
102
103
        return $this;
104
    }
105
}
106
107
/**
108
 * @method string getClientInfo()
109
 */
110
class AddGroups extends Roa
111
{
112
    /** @var string */
113
    public $pathPattern = '/green/sface/person/groups/add';
114
115
    /**
116
     * @param string $value
117
     *
118
     * @return $this
119
     */
120
    public function withClientInfo($value)
121
    {
122
        $this->data['ClientInfo'] = $value;
123
        $this->options['query']['ClientInfo'] = $value;
124
125
        return $this;
126
    }
127
}
128
129
/**
130
 * @method string getClientInfo()
131
 */
132
class AddPerson extends Roa
133
{
134
    /** @var string */
135
    public $pathPattern = '/green/sface/person/add';
136
137
    /**
138
     * @param string $value
139
     *
140
     * @return $this
141
     */
142
    public function withClientInfo($value)
143
    {
144
        $this->data['ClientInfo'] = $value;
145
        $this->options['query']['ClientInfo'] = $value;
146
147
        return $this;
148
    }
149
}
150
151
/**
152
 * @method string getClientInfo()
153
 */
154
class AddSimilarityImage extends Roa
155
{
156
    /** @var string */
157
    public $pathPattern = '/green/similarity/image/add';
158
159
    /**
160
     * @param string $value
161
     *
162
     * @return $this
163
     */
164
    public function withClientInfo($value)
165
    {
166
        $this->data['ClientInfo'] = $value;
167
        $this->options['query']['ClientInfo'] = $value;
168
169
        return $this;
170
    }
171
}
172
173
/**
174
 * @method string getClientInfo()
175
 */
176
class AddSimilarityLibrary extends Roa
177
{
178
    /** @var string */
179
    public $pathPattern = '/green/similarity/library/add';
180
181
    /**
182
     * @param string $value
183
     *
184
     * @return $this
185
     */
186
    public function withClientInfo($value)
187
    {
188
        $this->data['ClientInfo'] = $value;
189
        $this->options['query']['ClientInfo'] = $value;
190
191
        return $this;
192
    }
193
}
194
195
/**
196
 * @method string getClientInfo()
197
 */
198
class AddVideoDna extends Roa
199
{
200
    /** @var string */
201
    public $pathPattern = '/green/video/dna/add';
202
203
    /**
204
     * @param string $value
205
     *
206
     * @return $this
207
     */
208
    public function withClientInfo($value)
209
    {
210
        $this->data['ClientInfo'] = $value;
211
        $this->options['query']['ClientInfo'] = $value;
212
213
        return $this;
214
    }
215
}
216
217
/**
218
 * @method string getClientInfo()
219
 */
220
class AddVideoDnaGroup extends Roa
221
{
222
    /** @var string */
223
    public $pathPattern = '/green/video/dna/group/add';
224
225
    /**
226
     * @param string $value
227
     *
228
     * @return $this
229
     */
230
    public function withClientInfo($value)
231
    {
232
        $this->data['ClientInfo'] = $value;
233
        $this->options['query']['ClientInfo'] = $value;
234
235
        return $this;
236
    }
237
}
238
239
/**
240
 * @method string getClientInfo()
241
 */
242
class DeleteFaces extends Roa
243
{
244
    /** @var string */
245
    public $pathPattern = '/green/sface/face/delete';
246
247
    /**
248
     * @param string $value
249
     *
250
     * @return $this
251
     */
252
    public function withClientInfo($value)
253
    {
254
        $this->data['ClientInfo'] = $value;
255
        $this->options['query']['ClientInfo'] = $value;
256
257
        return $this;
258
    }
259
}
260
261
/**
262
 * @method string getClientInfo()
263
 */
264
class DeleteGroups extends Roa
265
{
266
    /** @var string */
267
    public $pathPattern = '/green/sface/person/groups/delete';
268
269
    /**
270
     * @param string $value
271
     *
272
     * @return $this
273
     */
274
    public function withClientInfo($value)
275
    {
276
        $this->data['ClientInfo'] = $value;
277
        $this->options['query']['ClientInfo'] = $value;
278
279
        return $this;
280
    }
281
}
282
283
/**
284
 * @method string getClientInfo()
285
 */
286
class DeletePerson extends Roa
287
{
288
    /** @var string */
289
    public $pathPattern = '/green/sface/person/delete';
290
291
    /**
292
     * @param string $value
293
     *
294
     * @return $this
295
     */
296
    public function withClientInfo($value)
297
    {
298
        $this->data['ClientInfo'] = $value;
299
        $this->options['query']['ClientInfo'] = $value;
300
301
        return $this;
302
    }
303
}
304
305
/**
306
 * @method string getClientInfo()
307
 */
308
class DeleteSimilarityImage extends Roa
309
{
310
    /** @var string */
311
    public $pathPattern = '/green/similarity/image/delete';
312
313
    /**
314
     * @param string $value
315
     *
316
     * @return $this
317
     */
318
    public function withClientInfo($value)
319
    {
320
        $this->data['ClientInfo'] = $value;
321
        $this->options['query']['ClientInfo'] = $value;
322
323
        return $this;
324
    }
325
}
326
327
/**
328
 * @method string getClientInfo()
329
 */
330
class DeleteSimilarityLibrary extends Roa
331
{
332
    /** @var string */
333
    public $pathPattern = '/green/similarity/library/delete';
334
335
    /**
336
     * @param string $value
337
     *
338
     * @return $this
339
     */
340
    public function withClientInfo($value)
341
    {
342
        $this->data['ClientInfo'] = $value;
343
        $this->options['query']['ClientInfo'] = $value;
344
345
        return $this;
346
    }
347
}
348
349
/**
350
 * @method string getClientInfo()
351
 */
352
class DeleteVideoDna extends Roa
353
{
354
    /** @var string */
355
    public $pathPattern = '/green/video/dna/delete';
356
357
    /**
358
     * @param string $value
359
     *
360
     * @return $this
361
     */
362
    public function withClientInfo($value)
363
    {
364
        $this->data['ClientInfo'] = $value;
365
        $this->options['query']['ClientInfo'] = $value;
366
367
        return $this;
368
    }
369
}
370
371
/**
372
 * @method string getClientInfo()
373
 */
374
class DeleteVideoDnaGroup extends Roa
375
{
376
    /** @var string */
377
    public $pathPattern = '/green/video/dna/group/delete';
378
379
    /**
380
     * @param string $value
381
     *
382
     * @return $this
383
     */
384
    public function withClientInfo($value)
385
    {
386
        $this->data['ClientInfo'] = $value;
387
        $this->options['query']['ClientInfo'] = $value;
388
389
        return $this;
390
    }
391
}
392
393
/**
394
 * @method string getClientInfo()
395
 */
396
class DetectFace extends Roa
397
{
398
    /** @var string */
399
    public $pathPattern = '/green/face/detect';
400
401
    /**
402
     * @param string $value
403
     *
404
     * @return $this
405
     */
406
    public function withClientInfo($value)
407
    {
408
        $this->data['ClientInfo'] = $value;
409
        $this->options['query']['ClientInfo'] = $value;
410
411
        return $this;
412
    }
413
}
414
415
/**
416
 * @method string getClientInfo()
417
 */
418
class FileAsyncScan extends Roa
419
{
420
    /** @var string */
421
    public $pathPattern = '/green/file/asyncscan';
422
423
    /**
424
     * @param string $value
425
     *
426
     * @return $this
427
     */
428
    public function withClientInfo($value)
429
    {
430
        $this->data['ClientInfo'] = $value;
431
        $this->options['query']['ClientInfo'] = $value;
432
433
        return $this;
434
    }
435
}
436
437
/**
438
 * @method string getClientInfo()
439
 */
440
class FileAsyncScanResults extends Roa
441
{
442
    /** @var string */
443
    public $pathPattern = '/green/file/results';
444
445
    /**
446
     * @param string $value
447
     *
448
     * @return $this
449
     */
450
    public function withClientInfo($value)
451
    {
452
        $this->data['ClientInfo'] = $value;
453
        $this->options['query']['ClientInfo'] = $value;
454
455
        return $this;
456
    }
457
}
458
459
/**
460
 * @method string getClientInfo()
461
 */
462
class GetAddVideoDnaResults extends Roa
463
{
464
    /** @var string */
465
    public $pathPattern = '/green/video/dna/add/results';
466
467
    /**
468
     * @param string $value
469
     *
470
     * @return $this
471
     */
472
    public function withClientInfo($value)
473
    {
474
        $this->data['ClientInfo'] = $value;
475
        $this->options['query']['ClientInfo'] = $value;
476
477
        return $this;
478
    }
479
}
480
481
/**
482
 * @method string getClientInfo()
483
 */
484
class GetFaces extends Roa
485
{
486
    /** @var string */
487
    public $pathPattern = '/green/sface/faces';
488
489
    /**
490
     * @param string $value
491
     *
492
     * @return $this
493
     */
494
    public function withClientInfo($value)
495
    {
496
        $this->data['ClientInfo'] = $value;
497
        $this->options['query']['ClientInfo'] = $value;
498
499
        return $this;
500
    }
501
}
502
503
/**
504
 * @method string getClientInfo()
505
 */
506
class GetGroups extends Roa
507
{
508
    /** @var string */
509
    public $pathPattern = '/green/sface/groups';
510
511
    /**
512
     * @param string $value
513
     *
514
     * @return $this
515
     */
516
    public function withClientInfo($value)
517
    {
518
        $this->data['ClientInfo'] = $value;
519
        $this->options['query']['ClientInfo'] = $value;
520
521
        return $this;
522
    }
523
}
524
525
/**
526
 * @method string getClientInfo()
527
 */
528
class GetPerson extends Roa
529
{
530
    /** @var string */
531
    public $pathPattern = '/green/sface/person';
532
533
    /**
534
     * @param string $value
535
     *
536
     * @return $this
537
     */
538
    public function withClientInfo($value)
539
    {
540
        $this->data['ClientInfo'] = $value;
541
        $this->options['query']['ClientInfo'] = $value;
542
543
        return $this;
544
    }
545
}
546
547
/**
548
 * @method string getClientInfo()
549
 */
550
class GetPersons extends Roa
551
{
552
    /** @var string */
553
    public $pathPattern = '/green/sface/group/persons';
554
555
    /**
556
     * @param string $value
557
     *
558
     * @return $this
559
     */
560
    public function withClientInfo($value)
561
    {
562
        $this->data['ClientInfo'] = $value;
563
        $this->options['query']['ClientInfo'] = $value;
564
565
        return $this;
566
    }
567
}
568
569
/**
570
 * @method string getClientInfo()
571
 */
572
class GetSimilarityImage extends Roa
573
{
574
    /** @var string */
575
    public $pathPattern = '/green/similarity/image/get';
576
577
    /**
578
     * @param string $value
579
     *
580
     * @return $this
581
     */
582
    public function withClientInfo($value)
583
    {
584
        $this->data['ClientInfo'] = $value;
585
        $this->options['query']['ClientInfo'] = $value;
586
587
        return $this;
588
    }
589
}
590
591
/**
592
 * @method string getClientInfo()
593
 */
594
class GetSimilarityLibrary extends Roa
595
{
596
    /** @var string */
597
    public $pathPattern = '/green/similarity/library/get';
598
599
    /**
600
     * @param string $value
601
     *
602
     * @return $this
603
     */
604
    public function withClientInfo($value)
605
    {
606
        $this->data['ClientInfo'] = $value;
607
        $this->options['query']['ClientInfo'] = $value;
608
609
        return $this;
610
    }
611
}
612
613
/**
614
 * @method string getClientInfo()
615
 */
616
class ImageAsyncScan extends Roa
617
{
618
    /** @var string */
619
    public $pathPattern = '/green/image/asyncscan';
620
621
    /**
622
     * @param string $value
623
     *
624
     * @return $this
625
     */
626
    public function withClientInfo($value)
627
    {
628
        $this->data['ClientInfo'] = $value;
629
        $this->options['query']['ClientInfo'] = $value;
630
631
        return $this;
632
    }
633
}
634
635
/**
636
 * @method string getClientInfo()
637
 */
638
class ImageAsyncScanResults extends Roa
639
{
640
    /** @var string */
641
    public $pathPattern = '/green/image/results';
642
643
    /**
644
     * @param string $value
645
     *
646
     * @return $this
647
     */
648
    public function withClientInfo($value)
649
    {
650
        $this->data['ClientInfo'] = $value;
651
        $this->options['query']['ClientInfo'] = $value;
652
653
        return $this;
654
    }
655
}
656
657
/**
658
 * @method string getClientInfo()
659
 */
660
class ImageScanFeedback extends Roa
661
{
662
    /** @var string */
663
    public $pathPattern = '/green/image/feedback';
664
665
    /**
666
     * @param string $value
667
     *
668
     * @return $this
669
     */
670
    public function withClientInfo($value)
671
    {
672
        $this->data['ClientInfo'] = $value;
673
        $this->options['query']['ClientInfo'] = $value;
674
675
        return $this;
676
    }
677
}
678
679
/**
680
 * @method string getClientInfo()
681
 */
682
class ImageSyncScan extends Roa
683
{
684
    /** @var string */
685
    public $pathPattern = '/green/image/scan';
686
687
    /**
688
     * @param string $value
689
     *
690
     * @return $this
691
     */
692
    public function withClientInfo($value)
693
    {
694
        $this->data['ClientInfo'] = $value;
695
        $this->options['query']['ClientInfo'] = $value;
696
697
        return $this;
698
    }
699
}
700
701
/**
702
 * @method string getClientInfo()
703
 */
704
class ListSimilarityImages extends Roa
705
{
706
    /** @var string */
707
    public $pathPattern = '/green/similarity/image/list';
708
709
    /**
710
     * @param string $value
711
     *
712
     * @return $this
713
     */
714
    public function withClientInfo($value)
715
    {
716
        $this->data['ClientInfo'] = $value;
717
        $this->options['query']['ClientInfo'] = $value;
718
719
        return $this;
720
    }
721
}
722
723
/**
724
 * @method string getClientInfo()
725
 */
726
class ListSimilarityLibraries extends Roa
727
{
728
    /** @var string */
729
    public $pathPattern = '/green/similarity/library/list';
730
731
    /**
732
     * @param string $value
733
     *
734
     * @return $this
735
     */
736
    public function withClientInfo($value)
737
    {
738
        $this->data['ClientInfo'] = $value;
739
        $this->options['query']['ClientInfo'] = $value;
740
741
        return $this;
742
    }
743
}
744
745
/**
746
 * @method string getClientInfo()
747
 */
748
class LiveStreamAsyncScan extends Roa
749
{
750
    /** @var string */
751
    public $pathPattern = '/green/livestream/asyncscan';
752
753
    /**
754
     * @param string $value
755
     *
756
     * @return $this
757
     */
758
    public function withClientInfo($value)
759
    {
760
        $this->data['ClientInfo'] = $value;
761
        $this->options['query']['ClientInfo'] = $value;
762
763
        return $this;
764
    }
765
}
766
767
/**
768
 * @method string getClientInfo()
769
 */
770
class LiveStreamAsyncScanResults extends Roa
771
{
772
    /** @var string */
773
    public $pathPattern = '/green/livestream/results';
774
775
    /**
776
     * @param string $value
777
     *
778
     * @return $this
779
     */
780
    public function withClientInfo($value)
781
    {
782
        $this->data['ClientInfo'] = $value;
783
        $this->options['query']['ClientInfo'] = $value;
784
785
        return $this;
786
    }
787
}
788
789
/**
790
 * @method string getClientInfo()
791
 */
792
class LiveStreamCancelScan extends Roa
793
{
794
    /** @var string */
795
    public $pathPattern = '/green/livestream/cancelscan';
796
797
    /**
798
     * @param string $value
799
     *
800
     * @return $this
801
     */
802
    public function withClientInfo($value)
803
    {
804
        $this->data['ClientInfo'] = $value;
805
        $this->options['query']['ClientInfo'] = $value;
806
807
        return $this;
808
    }
809
}
810
811
/**
812
 * @method string getClientInfo()
813
 */
814
class SearchPerson extends Roa
815
{
816
    /** @var string */
817
    public $pathPattern = '/green/sface/search';
818
819
    /**
820
     * @param string $value
821
     *
822
     * @return $this
823
     */
824
    public function withClientInfo($value)
825
    {
826
        $this->data['ClientInfo'] = $value;
827
        $this->options['query']['ClientInfo'] = $value;
828
829
        return $this;
830
    }
831
}
832
833
/**
834
 * @method string getClientInfo()
835
 */
836
class SetPerson extends Roa
837
{
838
    /** @var string */
839
    public $pathPattern = '/green/sface/person/update';
840
841
    /**
842
     * @param string $value
843
     *
844
     * @return $this
845
     */
846
    public function withClientInfo($value)
847
    {
848
        $this->data['ClientInfo'] = $value;
849
        $this->options['query']['ClientInfo'] = $value;
850
851
        return $this;
852
    }
853
}
854
855
/**
856
 * @method string getClientInfo()
857
 */
858
class TextFeedback extends Roa
859
{
860
    /** @var string */
861
    public $pathPattern = '/green/text/feedback';
862
863
    /**
864
     * @param string $value
865
     *
866
     * @return $this
867
     */
868
    public function withClientInfo($value)
869
    {
870
        $this->data['ClientInfo'] = $value;
871
        $this->options['query']['ClientInfo'] = $value;
872
873
        return $this;
874
    }
875
}
876
877
/**
878
 * @method string getClientInfo()
879
 */
880
class TextScan extends Roa
881
{
882
    /** @var string */
883
    public $pathPattern = '/green/text/scan';
884
885
    /**
886
     * @param string $value
887
     *
888
     * @return $this
889
     */
890
    public function withClientInfo($value)
891
    {
892
        $this->data['ClientInfo'] = $value;
893
        $this->options['query']['ClientInfo'] = $value;
894
895
        return $this;
896
    }
897
}
898
899
/**
900
 * @method string getClientInfo()
901
 */
902
class UploadCredentials extends Roa
903
{
904
    /** @var string */
905
    public $pathPattern = '/green/credentials/uploadcredentials';
906
907
    /**
908
     * @param string $value
909
     *
910
     * @return $this
911
     */
912
    public function withClientInfo($value)
913
    {
914
        $this->data['ClientInfo'] = $value;
915
        $this->options['query']['ClientInfo'] = $value;
916
917
        return $this;
918
    }
919
}
920
921
/**
922
 * @method string getClientInfo()
923
 */
924
class VideoAsyncScan extends Roa
925
{
926
    /** @var string */
927
    public $pathPattern = '/green/video/asyncscan';
928
929
    /**
930
     * @param string $value
931
     *
932
     * @return $this
933
     */
934
    public function withClientInfo($value)
935
    {
936
        $this->data['ClientInfo'] = $value;
937
        $this->options['query']['ClientInfo'] = $value;
938
939
        return $this;
940
    }
941
}
942
943
/**
944
 * @method string getClientInfo()
945
 */
946
class VideoAsyncScanResults extends Roa
947
{
948
    /** @var string */
949
    public $pathPattern = '/green/video/results';
950
951
    /**
952
     * @param string $value
953
     *
954
     * @return $this
955
     */
956
    public function withClientInfo($value)
957
    {
958
        $this->data['ClientInfo'] = $value;
959
        $this->options['query']['ClientInfo'] = $value;
960
961
        return $this;
962
    }
963
}
964
965
/**
966
 * @method string getClientInfo()
967
 */
968
class VideoCancelScan extends Roa
969
{
970
    /** @var string */
971
    public $pathPattern = '/green/video/cancelscan';
972
973
    /**
974
     * @param string $value
975
     *
976
     * @return $this
977
     */
978
    public function withClientInfo($value)
979
    {
980
        $this->data['ClientInfo'] = $value;
981
        $this->options['query']['ClientInfo'] = $value;
982
983
        return $this;
984
    }
985
}
986
987
/**
988
 * @method string getClientInfo()
989
 */
990
class VideoFeedback extends Roa
991
{
992
    /** @var string */
993
    public $pathPattern = '/green/video/feedback';
994
995
    /**
996
     * @param string $value
997
     *
998
     * @return $this
999
     */
1000
    public function withClientInfo($value)
1001
    {
1002
        $this->data['ClientInfo'] = $value;
1003
        $this->options['query']['ClientInfo'] = $value;
1004
1005
        return $this;
1006
    }
1007
}
1008
1009
/**
1010
 * @method string getClientInfo()
1011
 */
1012
class VideoSyncScan extends Roa
1013
{
1014
    /** @var string */
1015
    public $pathPattern = '/green/video/syncscan';
1016
1017
    /**
1018
     * @param string $value
1019
     *
1020
     * @return $this
1021
     */
1022
    public function withClientInfo($value)
1023
    {
1024
        $this->data['ClientInfo'] = $value;
1025
        $this->options['query']['ClientInfo'] = $value;
1026
1027
        return $this;
1028
    }
1029
}
1030
1031
/**
1032
 * @method string getClientInfo()
1033
 */
1034
class VodAsyncScan extends Roa
1035
{
1036
    /** @var string */
1037
    public $pathPattern = '/green/vod/asyncscan';
1038
1039
    /**
1040
     * @param string $value
1041
     *
1042
     * @return $this
1043
     */
1044
    public function withClientInfo($value)
1045
    {
1046
        $this->data['ClientInfo'] = $value;
1047
        $this->options['query']['ClientInfo'] = $value;
1048
1049
        return $this;
1050
    }
1051
}
1052
1053
/**
1054
 * @method string getClientInfo()
1055
 */
1056
class VodAsyncScanResults extends Roa
1057
{
1058
    /** @var string */
1059
    public $pathPattern = '/green/vod/results';
1060
1061
    /**
1062
     * @param string $value
1063
     *
1064
     * @return $this
1065
     */
1066
    public function withClientInfo($value)
1067
    {
1068
        $this->data['ClientInfo'] = $value;
1069
        $this->options['query']['ClientInfo'] = $value;
1070
1071
        return $this;
1072
    }
1073
}
1074
1075
/**
1076
 * @method string getClientInfo()
1077
 */
1078
class VoiceAsyncScan extends Roa
1079
{
1080
    /** @var string */
1081
    public $pathPattern = '/green/voice/asyncscan';
1082
1083
    /**
1084
     * @param string $value
1085
     *
1086
     * @return $this
1087
     */
1088
    public function withClientInfo($value)
1089
    {
1090
        $this->data['ClientInfo'] = $value;
1091
        $this->options['query']['ClientInfo'] = $value;
1092
1093
        return $this;
1094
    }
1095
}
1096
1097
/**
1098
 * @method string getClientInfo()
1099
 */
1100
class VoiceAsyncScanResults extends Roa
1101
{
1102
    /** @var string */
1103
    public $pathPattern = '/green/voice/results';
1104
1105
    /**
1106
     * @param string $value
1107
     *
1108
     * @return $this
1109
     */
1110
    public function withClientInfo($value)
1111
    {
1112
        $this->data['ClientInfo'] = $value;
1113
        $this->options['query']['ClientInfo'] = $value;
1114
1115
        return $this;
1116
    }
1117
}
1118
1119
/**
1120
 * @method string getClientInfo()
1121
 */
1122
class VoiceCancelScan extends Roa
1123
{
1124
    /** @var string */
1125
    public $pathPattern = '/green/voice/cancelscan';
1126
1127
    /**
1128
     * @param string $value
1129
     *
1130
     * @return $this
1131
     */
1132
    public function withClientInfo($value)
1133
    {
1134
        $this->data['ClientInfo'] = $value;
1135
        $this->options['query']['ClientInfo'] = $value;
1136
1137
        return $this;
1138
    }
1139
}
1140
1141
/**
1142
 * @method string getClientInfo()
1143
 */
1144
class VoiceIdentityCheck extends Roa
1145
{
1146
    /** @var string */
1147
    public $pathPattern = '/green/voice/auth/check';
1148
1149
    /**
1150
     * @param string $value
1151
     *
1152
     * @return $this
1153
     */
1154
    public function withClientInfo($value)
1155
    {
1156
        $this->data['ClientInfo'] = $value;
1157
        $this->options['query']['ClientInfo'] = $value;
1158
1159
        return $this;
1160
    }
1161
}
1162
1163
/**
1164
 * @method string getClientInfo()
1165
 */
1166
class VoiceIdentityRegister extends Roa
1167
{
1168
    /** @var string */
1169
    public $pathPattern = '/green/voice/auth/register';
1170
1171
    /**
1172
     * @param string $value
1173
     *
1174
     * @return $this
1175
     */
1176
    public function withClientInfo($value)
1177
    {
1178
        $this->data['ClientInfo'] = $value;
1179
        $this->options['query']['ClientInfo'] = $value;
1180
1181
        return $this;
1182
    }
1183
}
1184
1185
/**
1186
 * @method string getClientInfo()
1187
 */
1188
class VoiceIdentityStartCheck extends Roa
1189
{
1190
    /** @var string */
1191
    public $pathPattern = '/green/voice/auth/start/check';
1192
1193
    /**
1194
     * @param string $value
1195
     *
1196
     * @return $this
1197
     */
1198
    public function withClientInfo($value)
1199
    {
1200
        $this->data['ClientInfo'] = $value;
1201
        $this->options['query']['ClientInfo'] = $value;
1202
1203
        return $this;
1204
    }
1205
}
1206
1207
/**
1208
 * @method string getClientInfo()
1209
 */
1210
class VoiceIdentityStartRegister extends Roa
1211
{
1212
    /** @var string */
1213
    public $pathPattern = '/green/voice/auth/start/register';
1214
1215
    /**
1216
     * @param string $value
1217
     *
1218
     * @return $this
1219
     */
1220
    public function withClientInfo($value)
1221
    {
1222
        $this->data['ClientInfo'] = $value;
1223
        $this->options['query']['ClientInfo'] = $value;
1224
1225
        return $this;
1226
    }
1227
}
1228
1229
/**
1230
 * @method string getClientInfo()
1231
 */
1232
class VoiceIdentityUnregister extends Roa
1233
{
1234
    /** @var string */
1235
    public $pathPattern = '/green/voice/auth/unregister';
1236
1237
    /**
1238
     * @param string $value
1239
     *
1240
     * @return $this
1241
     */
1242
    public function withClientInfo($value)
1243
    {
1244
        $this->data['ClientInfo'] = $value;
1245
        $this->options['query']['ClientInfo'] = $value;
1246
1247
        return $this;
1248
    }
1249
}
1250
1251
/**
1252
 * @method string getClientInfo()
1253
 */
1254
class VoiceSyncScan extends Roa
1255
{
1256
    /** @var string */
1257
    public $pathPattern = '/green/voice/syncscan';
1258
1259
    /**
1260
     * @param string $value
1261
     *
1262
     * @return $this
1263
     */
1264
    public function withClientInfo($value)
1265
    {
1266
        $this->data['ClientInfo'] = $value;
1267
        $this->options['query']['ClientInfo'] = $value;
1268
1269
        return $this;
1270
    }
1271
}
1272
1273
/**
1274
 * @method string getClientInfo()
1275
 */
1276
class WebpageAsyncScan extends Roa
1277
{
1278
    /** @var string */
1279
    public $pathPattern = '/green/webpage/asyncscan';
1280
1281
    /**
1282
     * @param string $value
1283
     *
1284
     * @return $this
1285
     */
1286
    public function withClientInfo($value)
1287
    {
1288
        $this->data['ClientInfo'] = $value;
1289
        $this->options['query']['ClientInfo'] = $value;
1290
1291
        return $this;
1292
    }
1293
}
1294
1295
/**
1296
 * @method string getClientInfo()
1297
 */
1298
class WebpageAsyncScanResults extends Roa
1299
{
1300
    /** @var string */
1301
    public $pathPattern = '/green/webpage/results';
1302
1303
    /**
1304
     * @param string $value
1305
     *
1306
     * @return $this
1307
     */
1308
    public function withClientInfo($value)
1309
    {
1310
        $this->data['ClientInfo'] = $value;
1311
        $this->options['query']['ClientInfo'] = $value;
1312
1313
        return $this;
1314
    }
1315
}
1316
1317
/**
1318
 * @method string getClientInfo()
1319
 */
1320
class WebpageSyncScan extends Roa
1321
{
1322
    /** @var string */
1323
    public $pathPattern = '/green/webpage/scan';
1324
1325
    /**
1326
     * @param string $value
1327
     *
1328
     * @return $this
1329
     */
1330
    public function withClientInfo($value)
1331
    {
1332
        $this->data['ClientInfo'] = $value;
1333
        $this->options['query']['ClientInfo'] = $value;
1334
1335
        return $this;
1336
    }
1337
}
1338