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 ( c84631...67166c )
by
unknown
06:10
created

DetectFaceAttributes::withDontSaveDB()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 6
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
namespace AlibabaCloud\Cloudauth\V20190307;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method CompareFaces compareFaces(array $options = [])
9
 * @method CompareFaceVerify compareFaceVerify(array $options = [])
10
 * @method ContrastFaceVerify contrastFaceVerify(array $options = [])
11
 * @method CreateAuthKey createAuthKey(array $options = [])
12
 * @method CreateRPSDK createRPSDK(array $options = [])
13
 * @method CreateVerifySDK createVerifySDK(array $options = [])
14
 * @method CreateVerifySetting createVerifySetting(array $options = [])
15
 * @method DescribeAppInfo describeAppInfo(array $options = [])
16
 * @method DescribeDeviceInfo describeDeviceInfo(array $options = [])
17
 * @method DescribeFaceUsage describeFaceUsage(array $options = [])
18
 * @method DescribeFaceVerify describeFaceVerify(array $options = [])
19
 * @method DescribeOssUploadToken describeOssUploadToken(array $options = [])
20
 * @method DescribeRPSDK describeRPSDK(array $options = [])
21
 * @method DescribeSdkUrl describeSdkUrl(array $options = [])
22
 * @method DescribeUpdatePackageResult describeUpdatePackageResult(array $options = [])
23
 * @method DescribeUploadInfo describeUploadInfo(array $options = [])
24
 * @method DescribeUserStatus describeUserStatus(array $options = [])
25
 * @method DescribeVerifyRecords describeVerifyRecords(array $options = [])
26
 * @method DescribeVerifyResult describeVerifyResult(array $options = [])
27
 * @method DescribeVerifySDK describeVerifySDK(array $options = [])
28
 * @method DescribeVerifySetting describeVerifySetting(array $options = [])
29
 * @method DescribeVerifyToken describeVerifyToken(array $options = [])
30
 * @method DescribeVerifyUsage describeVerifyUsage(array $options = [])
31
 * @method DetectFaceAttributes detectFaceAttributes(array $options = [])
32
 * @method InitDevice initDevice(array $options = [])
33
 * @method InitFaceVerify initFaceVerify(array $options = [])
34
 * @method ModifyDeviceInfo modifyDeviceInfo(array $options = [])
35
 * @method UpdateAppPackage updateAppPackage(array $options = [])
36
 * @method UpdateVerifySetting updateVerifySetting(array $options = [])
37
 * @method VerifyDevice verifyDevice(array $options = [])
38
 * @method VerifyMaterial verifyMaterial(array $options = [])
39
 */
40
class CloudauthApiResolver extends ApiResolver
41
{
42
}
43
44
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
45
{
46
    /** @var string */
47
    public $product = 'Cloudauth';
48
49
    /** @var string */
50
    public $version = '2019-03-07';
51
52
    /** @var string */
53
    public $method = 'POST';
54
55
    /** @var string */
56
    public $serviceCode = 'cloudauth';
57
}
58
59
/**
60
 * @method string getSourceImageType()
61
 * @method string getTargetImageType()
62
 * @method string getTargetImageValue()
63
 * @method string getSourceImageValue()
64
 */
65
class CompareFaces extends Rpc
66
{
67
68
    /** @var string */
69
    public $scheme = 'https';
70
71
    /**
72
     * @param string $value
73
     *
74
     * @return $this
75
     */
76
    public function withSourceImageType($value)
77
    {
78
        $this->data['SourceImageType'] = $value;
79
        $this->options['form_params']['SourceImageType'] = $value;
80
81
        return $this;
82
    }
83
84
    /**
85
     * @param string $value
86
     *
87
     * @return $this
88
     */
89
    public function withTargetImageType($value)
90
    {
91
        $this->data['TargetImageType'] = $value;
92
        $this->options['form_params']['TargetImageType'] = $value;
93
94
        return $this;
95
    }
96
97
    /**
98
     * @param string $value
99
     *
100
     * @return $this
101
     */
102
    public function withTargetImageValue($value)
103
    {
104
        $this->data['TargetImageValue'] = $value;
105
        $this->options['form_params']['TargetImageValue'] = $value;
106
107
        return $this;
108
    }
109
110
    /**
111
     * @param string $value
112
     *
113
     * @return $this
114
     */
115
    public function withSourceImageValue($value)
116
    {
117
        $this->data['SourceImageValue'] = $value;
118
        $this->options['form_params']['SourceImageValue'] = $value;
119
120
        return $this;
121
    }
122
}
123
124
/**
125
 * @method string getTargetFaceContrastPictureUrl()
126
 * @method string getProductCode()
127
 * @method string getTargetCertifyId()
128
 * @method string getSourceOssObjectName()
129
 * @method string getTargetFaceContrastPicture()
130
 * @method string getTargetOssBucketName()
131
 * @method string getSourceOssBucketName()
132
 * @method string getOuterOrderNo()
133
 * @method string getTargetOssObjectName()
134
 * @method string getSourceFaceContrastPicture()
135
 * @method string getSceneId()
136
 * @method string getSourceFaceContrastPictureUrl()
137
 * @method string getSourceCertifyId()
138
 */
139
class CompareFaceVerify extends Rpc
140
{
141
142
    /**
143
     * @param string $value
144
     *
145
     * @return $this
146
     */
147
    public function withTargetFaceContrastPictureUrl($value)
148
    {
149
        $this->data['TargetFaceContrastPictureUrl'] = $value;
150
        $this->options['form_params']['TargetFaceContrastPictureUrl'] = $value;
151
152
        return $this;
153
    }
154
155
    /**
156
     * @param string $value
157
     *
158
     * @return $this
159
     */
160
    public function withProductCode($value)
161
    {
162
        $this->data['ProductCode'] = $value;
163
        $this->options['form_params']['ProductCode'] = $value;
164
165
        return $this;
166
    }
167
168
    /**
169
     * @param string $value
170
     *
171
     * @return $this
172
     */
173
    public function withTargetCertifyId($value)
174
    {
175
        $this->data['TargetCertifyId'] = $value;
176
        $this->options['form_params']['TargetCertifyId'] = $value;
177
178
        return $this;
179
    }
180
181
    /**
182
     * @param string $value
183
     *
184
     * @return $this
185
     */
186
    public function withSourceOssObjectName($value)
187
    {
188
        $this->data['SourceOssObjectName'] = $value;
189
        $this->options['form_params']['SourceOssObjectName'] = $value;
190
191
        return $this;
192
    }
193
194
    /**
195
     * @param string $value
196
     *
197
     * @return $this
198
     */
199
    public function withTargetFaceContrastPicture($value)
200
    {
201
        $this->data['TargetFaceContrastPicture'] = $value;
202
        $this->options['form_params']['TargetFaceContrastPicture'] = $value;
203
204
        return $this;
205
    }
206
207
    /**
208
     * @param string $value
209
     *
210
     * @return $this
211
     */
212
    public function withTargetOssBucketName($value)
213
    {
214
        $this->data['TargetOssBucketName'] = $value;
215
        $this->options['form_params']['TargetOssBucketName'] = $value;
216
217
        return $this;
218
    }
219
220
    /**
221
     * @param string $value
222
     *
223
     * @return $this
224
     */
225
    public function withSourceOssBucketName($value)
226
    {
227
        $this->data['SourceOssBucketName'] = $value;
228
        $this->options['form_params']['SourceOssBucketName'] = $value;
229
230
        return $this;
231
    }
232
233
    /**
234
     * @param string $value
235
     *
236
     * @return $this
237
     */
238
    public function withOuterOrderNo($value)
239
    {
240
        $this->data['OuterOrderNo'] = $value;
241
        $this->options['form_params']['OuterOrderNo'] = $value;
242
243
        return $this;
244
    }
245
246
    /**
247
     * @param string $value
248
     *
249
     * @return $this
250
     */
251
    public function withTargetOssObjectName($value)
252
    {
253
        $this->data['TargetOssObjectName'] = $value;
254
        $this->options['form_params']['TargetOssObjectName'] = $value;
255
256
        return $this;
257
    }
258
259
    /**
260
     * @param string $value
261
     *
262
     * @return $this
263
     */
264
    public function withSourceFaceContrastPicture($value)
265
    {
266
        $this->data['SourceFaceContrastPicture'] = $value;
267
        $this->options['form_params']['SourceFaceContrastPicture'] = $value;
268
269
        return $this;
270
    }
271
272
    /**
273
     * @param string $value
274
     *
275
     * @return $this
276
     */
277
    public function withSceneId($value)
278
    {
279
        $this->data['SceneId'] = $value;
280
        $this->options['form_params']['SceneId'] = $value;
281
282
        return $this;
283
    }
284
285
    /**
286
     * @param string $value
287
     *
288
     * @return $this
289
     */
290
    public function withSourceFaceContrastPictureUrl($value)
291
    {
292
        $this->data['SourceFaceContrastPictureUrl'] = $value;
293
        $this->options['form_params']['SourceFaceContrastPictureUrl'] = $value;
294
295
        return $this;
296
    }
297
298
    /**
299
     * @param string $value
300
     *
301
     * @return $this
302
     */
303
    public function withSourceCertifyId($value)
304
    {
305
        $this->data['SourceCertifyId'] = $value;
306
        $this->options['form_params']['SourceCertifyId'] = $value;
307
308
        return $this;
309
    }
310
}
311
312
/**
313
 * @method string getProductCode()
314
 * @method string getOssObjectName()
315
 * @method string getFaceContrastPicture()
316
 * @method string getCertName()
317
 * @method string getIp()
318
 * @method string getMobile()
319
 * @method string getDeviceToken()
320
 * @method string getUserId()
321
 * @method string getCertifyId()
322
 * @method string getCertNo()
323
 * @method string getOuterOrderNo()
324
 * @method string getCertType()
325
 * @method string getFaceContrastPictureUrl()
326
 * @method string getSceneId()
327
 * @method string getOssBucketName()
328
 */
329
class ContrastFaceVerify extends Rpc
330
{
331
332
    /**
333
     * @param string $value
334
     *
335
     * @return $this
336
     */
337
    public function withProductCode($value)
338
    {
339
        $this->data['ProductCode'] = $value;
340
        $this->options['form_params']['ProductCode'] = $value;
341
342
        return $this;
343
    }
344
345
    /**
346
     * @param string $value
347
     *
348
     * @return $this
349
     */
350
    public function withOssObjectName($value)
351
    {
352
        $this->data['OssObjectName'] = $value;
353
        $this->options['form_params']['OssObjectName'] = $value;
354
355
        return $this;
356
    }
357
358
    /**
359
     * @param string $value
360
     *
361
     * @return $this
362
     */
363
    public function withFaceContrastPicture($value)
364
    {
365
        $this->data['FaceContrastPicture'] = $value;
366
        $this->options['form_params']['FaceContrastPicture'] = $value;
367
368
        return $this;
369
    }
370
371
    /**
372
     * @param string $value
373
     *
374
     * @return $this
375
     */
376
    public function withCertName($value)
377
    {
378
        $this->data['CertName'] = $value;
379
        $this->options['form_params']['CertName'] = $value;
380
381
        return $this;
382
    }
383
384
    /**
385
     * @param string $value
386
     *
387
     * @return $this
388
     */
389
    public function withIp($value)
390
    {
391
        $this->data['Ip'] = $value;
392
        $this->options['form_params']['Ip'] = $value;
393
394
        return $this;
395
    }
396
397
    /**
398
     * @param string $value
399
     *
400
     * @return $this
401
     */
402
    public function withMobile($value)
403
    {
404
        $this->data['Mobile'] = $value;
405
        $this->options['form_params']['Mobile'] = $value;
406
407
        return $this;
408
    }
409
410
    /**
411
     * @param string $value
412
     *
413
     * @return $this
414
     */
415
    public function withDeviceToken($value)
416
    {
417
        $this->data['DeviceToken'] = $value;
418
        $this->options['form_params']['DeviceToken'] = $value;
419
420
        return $this;
421
    }
422
423
    /**
424
     * @param string $value
425
     *
426
     * @return $this
427
     */
428
    public function withUserId($value)
429
    {
430
        $this->data['UserId'] = $value;
431
        $this->options['form_params']['UserId'] = $value;
432
433
        return $this;
434
    }
435
436
    /**
437
     * @param string $value
438
     *
439
     * @return $this
440
     */
441
    public function withCertifyId($value)
442
    {
443
        $this->data['CertifyId'] = $value;
444
        $this->options['form_params']['CertifyId'] = $value;
445
446
        return $this;
447
    }
448
449
    /**
450
     * @param string $value
451
     *
452
     * @return $this
453
     */
454
    public function withCertNo($value)
455
    {
456
        $this->data['CertNo'] = $value;
457
        $this->options['form_params']['CertNo'] = $value;
458
459
        return $this;
460
    }
461
462
    /**
463
     * @param string $value
464
     *
465
     * @return $this
466
     */
467
    public function withOuterOrderNo($value)
468
    {
469
        $this->data['OuterOrderNo'] = $value;
470
        $this->options['form_params']['OuterOrderNo'] = $value;
471
472
        return $this;
473
    }
474
475
    /**
476
     * @param string $value
477
     *
478
     * @return $this
479
     */
480
    public function withCertType($value)
481
    {
482
        $this->data['CertType'] = $value;
483
        $this->options['form_params']['CertType'] = $value;
484
485
        return $this;
486
    }
487
488
    /**
489
     * @param string $value
490
     *
491
     * @return $this
492
     */
493
    public function withFaceContrastPictureUrl($value)
494
    {
495
        $this->data['FaceContrastPictureUrl'] = $value;
496
        $this->options['form_params']['FaceContrastPictureUrl'] = $value;
497
498
        return $this;
499
    }
500
501
    /**
502
     * @param string $value
503
     *
504
     * @return $this
505
     */
506
    public function withSceneId($value)
507
    {
508
        $this->data['SceneId'] = $value;
509
        $this->options['form_params']['SceneId'] = $value;
510
511
        return $this;
512
    }
513
514
    /**
515
     * @param string $value
516
     *
517
     * @return $this
518
     */
519
    public function withOssBucketName($value)
520
    {
521
        $this->data['OssBucketName'] = $value;
522
        $this->options['form_params']['OssBucketName'] = $value;
523
524
        return $this;
525
    }
526
}
527
528
/**
529
 * @method string getUserDeviceId()
530
 * @method $this withUserDeviceId($value)
531
 * @method string getTest()
532
 * @method $this withTest($value)
533
 * @method string getBizType()
534
 * @method $this withBizType($value)
535
 * @method string getSourceIp()
536
 * @method $this withSourceIp($value)
537
 * @method string getAuthYears()
538
 * @method $this withAuthYears($value)
539
 * @method string getLang()
540
 * @method $this withLang($value)
541
 */
542
class CreateAuthKey extends Rpc
543
{
544
}
545
546
/**
547
 * @method string getAppUrl()
548
 * @method $this withAppUrl($value)
549
 * @method string getPlatform()
550
 * @method $this withPlatform($value)
551
 * @method string getSourceIp()
552
 * @method $this withSourceIp($value)
553
 * @method string getLang()
554
 * @method $this withLang($value)
555
 */
556
class CreateRPSDK extends Rpc
557
{
558
}
559
560
/**
561
 * @method string getAppUrl()
562
 * @method $this withAppUrl($value)
563
 * @method string getPlatform()
564
 * @method $this withPlatform($value)
565
 * @method string getSourceIp()
566
 * @method $this withSourceIp($value)
567
 * @method string getLang()
568
 * @method $this withLang($value)
569
 */
570
class CreateVerifySDK extends Rpc
571
{
572
}
573
574
/**
575
 * @method string getGuideStep()
576
 * @method $this withGuideStep($value)
577
 * @method string getResultStep()
578
 * @method $this withResultStep($value)
579
 * @method string getSourceIp()
580
 * @method $this withSourceIp($value)
581
 * @method string getSolution()
582
 * @method $this withSolution($value)
583
 * @method string getBizName()
584
 * @method $this withBizName($value)
585
 * @method string getBizType()
586
 * @method $this withBizType($value)
587
 * @method string getPrivacyStep()
588
 * @method $this withPrivacyStep($value)
589
 */
590
class CreateVerifySetting extends Rpc
591
{
592
}
593
594
/**
595
 * @method string getCurrentPage()
596
 * @method $this withCurrentPage($value)
597
 * @method string getPlatform()
598
 * @method $this withPlatform($value)
599
 * @method string getSourceIp()
600
 * @method $this withSourceIp($value)
601
 * @method string getPageSize()
602
 * @method $this withPageSize($value)
603
 */
604
class DescribeAppInfo extends Rpc
605
{
606
}
607
608
/**
609
 * @method string getUserDeviceId()
610
 * @method $this withUserDeviceId($value)
611
 * @method string getSourceIp()
612
 * @method $this withSourceIp($value)
613
 * @method string getPageSize()
614
 * @method $this withPageSize($value)
615
 * @method string getLang()
616
 * @method $this withLang($value)
617
 * @method string getExpiredStartDay()
618
 * @method $this withExpiredStartDay($value)
619
 * @method string getTotalCount()
620
 * @method $this withTotalCount($value)
621
 * @method string getCurrentPage()
622
 * @method $this withCurrentPage($value)
623
 * @method string getDeviceId()
624
 * @method $this withDeviceId($value)
625
 * @method string getBizType()
626
 * @method $this withBizType($value)
627
 * @method string getExpiredEndDay()
628
 * @method $this withExpiredEndDay($value)
629
 */
630
class DescribeDeviceInfo extends Rpc
631
{
632
}
633
634
/**
635
 * @method string getStartDate()
636
 * @method $this withStartDate($value)
637
 * @method string getEndDate()
638
 * @method $this withEndDate($value)
639
 * @method string getSourceIp()
640
 * @method $this withSourceIp($value)
641
 */
642
class DescribeFaceUsage extends Rpc
643
{
644
}
645
646
/**
647
 * @method string getSceneId()
648
 * @method $this withSceneId($value)
649
 * @method string getCertifyId()
650
 * @method $this withCertifyId($value)
651
 */
652
class DescribeFaceVerify extends Rpc
653
{
654
}
655
656
/**
657
 * @method string getSourceIp()
658
 * @method $this withSourceIp($value)
659
 */
660
class DescribeOssUploadToken extends Rpc
661
{
662
}
663
664
/**
665
 * @method string getSourceIp()
666
 * @method $this withSourceIp($value)
667
 * @method string getLang()
668
 * @method $this withLang($value)
669
 * @method string getTaskId()
670
 * @method $this withTaskId($value)
671
 */
672
class DescribeRPSDK extends Rpc
673
{
674
}
675
676
/**
677
 * @method string getDebug()
678
 * @method $this withDebug($value)
679
 * @method string getSourceIp()
680
 * @method $this withSourceIp($value)
681
 * @method string getId()
682
 * @method $this withId($value)
683
 */
684
class DescribeSdkUrl extends Rpc
685
{
686
}
687
688
/**
689
 * @method string getSourceIp()
690
 * @method $this withSourceIp($value)
691
 * @method string getTaskId()
692
 * @method $this withTaskId($value)
693
 */
694
class DescribeUpdatePackageResult extends Rpc
695
{
696
}
697
698
/**
699
 * @method string getBiz()
700
 * @method $this withBiz($value)
701
 * @method string getSourceIp()
702
 * @method $this withSourceIp($value)
703
 */
704
class DescribeUploadInfo extends Rpc
705
{
706
}
707
708
/**
709
 * @method string getSourceIp()
710
 * @method $this withSourceIp($value)
711
 */
712
class DescribeUserStatus extends Rpc
713
{
714
}
715
716
/**
717
 * @method string getStatusList()
718
 * @method $this withStatusList($value)
719
 * @method string getStartDate()
720
 * @method $this withStartDate($value)
721
 * @method string getSourceIp()
722
 * @method $this withSourceIp($value)
723
 * @method string getPageSize()
724
 * @method $this withPageSize($value)
725
 * @method string getTotalCount()
726
 * @method $this withTotalCount($value)
727
 * @method string getCurrentPage()
728
 * @method $this withCurrentPage($value)
729
 * @method string getQueryId()
730
 * @method $this withQueryId($value)
731
 * @method string getBizType()
732
 * @method $this withBizType($value)
733
 * @method string getIdCardNum()
734
 * @method $this withIdCardNum($value)
735
 * @method string getEndDate()
736
 * @method $this withEndDate($value)
737
 * @method string getBizId()
738
 * @method $this withBizId($value)
739
 */
740
class DescribeVerifyRecords extends Rpc
741
{
742
}
743
744
/**
745
 * @method string getBizType()
746
 * @method $this withBizType($value)
747
 * @method string getBizId()
748
 * @method $this withBizId($value)
749
 */
750
class DescribeVerifyResult extends Rpc
751
{
752
}
753
754
/**
755
 * @method string getSourceIp()
756
 * @method $this withSourceIp($value)
757
 * @method string getLang()
758
 * @method $this withLang($value)
759
 * @method string getTaskId()
760
 * @method $this withTaskId($value)
761
 */
762
class DescribeVerifySDK extends Rpc
763
{
764
}
765
766
/**
767
 * @method string getSourceIp()
768
 * @method $this withSourceIp($value)
769
 */
770
class DescribeVerifySetting extends Rpc
771
{
772
}
773
774
/**
775
 * @method string getFaceRetainedImageUrl()
776
 * @method $this withFaceRetainedImageUrl($value)
777
 * @method string getUserId()
778
 * @method $this withUserId($value)
779
 * @method string getCallbackSeed()
780
 * @method $this withCallbackSeed($value)
781
 * @method string getUserIp()
782
 * @method $this withUserIp($value)
783
 * @method string getIdCardBackImageUrl()
784
 * @method $this withIdCardBackImageUrl($value)
785
 * @method string getIdCardNumber()
786
 * @method $this withIdCardNumber($value)
787
 * @method string getIdCardFrontImageUrl()
788
 * @method $this withIdCardFrontImageUrl($value)
789
 * @method string getBizType()
790
 * @method $this withBizType($value)
791
 * @method string getPassedRedirectUrl()
792
 * @method $this withPassedRedirectUrl($value)
793
 * @method string getUserRegistTime()
794
 * @method $this withUserRegistTime($value)
795
 * @method string getBizId()
796
 * @method $this withBizId($value)
797
 * @method string getName()
798
 * @method $this withName($value)
799
 * @method string getUserPhoneNumber()
800
 * @method $this withUserPhoneNumber($value)
801
 * @method string getCallbackUrl()
802
 * @method $this withCallbackUrl($value)
803
 * @method string getFailedRedirectUrl()
804
 * @method $this withFailedRedirectUrl($value)
805
 */
806
class DescribeVerifyToken extends Rpc
807
{
808
}
809
810
/**
811
 * @method string getStartDate()
812
 * @method $this withStartDate($value)
813
 * @method string getBizType()
814
 * @method $this withBizType($value)
815
 * @method string getEndDate()
816
 * @method $this withEndDate($value)
817
 * @method string getSourceIp()
818
 * @method $this withSourceIp($value)
819
 */
820
class DescribeVerifyUsage extends Rpc
821
{
822
}
823
824
/**
825
 * @method string getMaterialValue()
826
 */
827
class DetectFaceAttributes extends Rpc
828
{
829
830
    /**
831
     * @param string $value
832
     *
833
     * @return $this
834
     */
835
    public function withMaterialValue($value)
836
    {
837
        $this->data['MaterialValue'] = $value;
838
        $this->options['form_params']['MaterialValue'] = $value;
839
840
        return $this;
841
    }
842
}
843
844
/**
845
 * @method string getChannel()
846
 * @method $this withChannel($value)
847
 * @method string getBizData()
848
 * @method $this withBizData($value)
849
 * @method string getMerchant()
850
 * @method $this withMerchant($value)
851
 * @method string getAppVersion()
852
 * @method $this withAppVersion($value)
853
 * @method string getDeviceToken()
854
 * @method $this withDeviceToken($value)
855
 * @method string getCertifyId()
856
 * @method $this withCertifyId($value)
857
 * @method string getOuterOrderNo()
858
 * @method $this withOuterOrderNo($value)
859
 * @method string getProduceNode()
860
 * @method $this withProduceNode($value)
861
 * @method string getProductName()
862
 * @method $this withProductName($value)
863
 * @method string getCertifyPrincipal()
864
 * @method $this withCertifyPrincipal($value)
865
 * @method string getMetaInfo()
866
 * @method $this withMetaInfo($value)
867
 */
868
class InitDevice extends Rpc
869
{
870
}
871
872
/**
873
 * @method string getProductCode()
874
 * @method $this withProductCode($value)
875
 * @method string getFaceContrastPicture()
876
 * @method string getUserId()
877
 * @method $this withUserId($value)
878
 * @method string getCertifyId()
879
 * @method $this withCertifyId($value)
880
 * @method string getCertNo()
881
 * @method $this withCertNo($value)
882
 * @method string getOuterOrderNo()
883
 * @method $this withOuterOrderNo($value)
884
 * @method string getCertType()
885
 * @method $this withCertType($value)
886
 * @method string getFaceContrastPictureUrl()
887
 * @method $this withFaceContrastPictureUrl($value)
888
 * @method string getModel()
889
 * @method string getMetaInfo()
890
 * @method $this withMetaInfo($value)
891
 * @method string getOssObjectName()
892
 * @method $this withOssObjectName($value)
893
 * @method string getCertName()
894
 * @method $this withCertName($value)
895
 * @method string getIp()
896
 * @method $this withIp($value)
897
 * @method string getMobile()
898
 * @method $this withMobile($value)
899
 * @method string getSceneId()
900
 * @method $this withSceneId($value)
901
 * @method string getOssBucketName()
902
 * @method $this withOssBucketName($value)
903
 * @method string getReturnUrl()
904
 * @method $this withReturnUrl($value)
905
 */
906
class InitFaceVerify extends Rpc
907
{
908
909
    /**
910
     * @param string $value
911
     *
912
     * @return $this
913
     */
914
    public function withFaceContrastPicture($value)
915
    {
916
        $this->data['FaceContrastPicture'] = $value;
917
        $this->options['form_params']['FaceContrastPicture'] = $value;
918
919
        return $this;
920
    }
921
922
    /**
923
     * @param string $value
924
     *
925
     * @return $this
926
     */
927
    public function withModel($value)
928
    {
929
        $this->data['Model'] = $value;
930
        $this->options['form_params']['Model'] = $value;
931
932
        return $this;
933
    }
934
}
935
936
/**
937
 * @method string getUserDeviceId()
938
 * @method $this withUserDeviceId($value)
939
 * @method string getDuration()
940
 * @method $this withDuration($value)
941
 * @method string getExpiredDay()
942
 * @method $this withExpiredDay($value)
943
 * @method string getSourceIp()
944
 * @method $this withSourceIp($value)
945
 * @method string getLang()
946
 * @method $this withLang($value)
947
 * @method string getDeviceId()
948
 * @method $this withDeviceId($value)
949
 * @method string getBizType()
950
 * @method $this withBizType($value)
951
 */
952
class ModifyDeviceInfo extends Rpc
953
{
954
}
955
956
/**
957
 * @method string getDebug()
958
 * @method $this withDebug($value)
959
 * @method string getPlatform()
960
 * @method $this withPlatform($value)
961
 * @method string getSourceIp()
962
 * @method $this withSourceIp($value)
963
 * @method string getPackageUrl()
964
 * @method $this withPackageUrl($value)
965
 * @method string getId()
966
 * @method $this withId($value)
967
 */
968
class UpdateAppPackage extends Rpc
969
{
970
}
971
972
/**
973
 * @method string getGuideStep()
974
 * @method $this withGuideStep($value)
975
 * @method string getResultStep()
976
 * @method $this withResultStep($value)
977
 * @method string getSourceIp()
978
 * @method $this withSourceIp($value)
979
 * @method string getSolution()
980
 * @method $this withSolution($value)
981
 * @method string getBizName()
982
 * @method $this withBizName($value)
983
 * @method string getBizType()
984
 * @method $this withBizType($value)
985
 * @method string getPrivacyStep()
986
 * @method $this withPrivacyStep($value)
987
 */
988
class UpdateVerifySetting extends Rpc
989
{
990
}
991
992
/**
993
 * @method string getExtInfo()
994
 * @method string getCertifyData()
995
 * @method $this withCertifyData($value)
996
 * @method string getAppVersion()
997
 * @method $this withAppVersion($value)
998
 * @method string getCertifyId()
999
 * @method $this withCertifyId($value)
1000
 */
1001
class VerifyDevice extends Rpc
1002
{
1003
1004
    /**
1005
     * @param string $value
1006
     *
1007
     * @return $this
1008
     */
1009
    public function withExtInfo($value)
1010
    {
1011
        $this->data['ExtInfo'] = $value;
1012
        $this->options['form_params']['ExtInfo'] = $value;
1013
1014
        return $this;
1015
    }
1016
}
1017
1018
/**
1019
 * @method string getFaceImageUrl()
1020
 * @method $this withFaceImageUrl($value)
1021
 * @method string getUserId()
1022
 * @method $this withUserId($value)
1023
 * @method string getIdCardBackImageUrl()
1024
 * @method $this withIdCardBackImageUrl($value)
1025
 * @method string getIdCardNumber()
1026
 * @method $this withIdCardNumber($value)
1027
 * @method string getIdCardFrontImageUrl()
1028
 * @method $this withIdCardFrontImageUrl($value)
1029
 * @method string getBizType()
1030
 * @method $this withBizType($value)
1031
 * @method string getBizId()
1032
 * @method $this withBizId($value)
1033
 * @method string getName()
1034
 * @method $this withName($value)
1035
 */
1036
class VerifyMaterial extends Rpc
1037
{
1038
}
1039