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 ( 0d7f2b...04e45d )
by
unknown
06:51
created

VideoCancelScan   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

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