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 ( 715ab9...ba34e8 )
by
unknown
06:51
created

ContrastFaceVerify::withFaceContrastPicture()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 6
c 0
b 0
f 0
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 CreateFaceConfig createFaceConfig(array $options = [])
13
 * @method CreateRPSDK createRPSDK(array $options = [])
14
 * @method CreateVerifySDK createVerifySDK(array $options = [])
15
 * @method CreateVerifySetting createVerifySetting(array $options = [])
16
 * @method DescribeAppInfo describeAppInfo(array $options = [])
17
 * @method DescribeDeviceInfo describeDeviceInfo(array $options = [])
18
 * @method DescribeFaceConfig describeFaceConfig(array $options = [])
19
 * @method DescribeFaceUsage describeFaceUsage(array $options = [])
20
 * @method DescribeFaceVerify describeFaceVerify(array $options = [])
21
 * @method DescribeOssUploadToken describeOssUploadToken(array $options = [])
22
 * @method DescribeRPSDK describeRPSDK(array $options = [])
23
 * @method DescribeSdkUrl describeSdkUrl(array $options = [])
24
 * @method DescribeUpdatePackageResult describeUpdatePackageResult(array $options = [])
25
 * @method DescribeUploadInfo describeUploadInfo(array $options = [])
26
 * @method DescribeUserStatus describeUserStatus(array $options = [])
27
 * @method DescribeVerifyRecords describeVerifyRecords(array $options = [])
28
 * @method DescribeVerifyResult describeVerifyResult(array $options = [])
29
 * @method DescribeVerifySDK describeVerifySDK(array $options = [])
30
 * @method DescribeVerifySetting describeVerifySetting(array $options = [])
31
 * @method DescribeVerifyToken describeVerifyToken(array $options = [])
32
 * @method DescribeVerifyUsage describeVerifyUsage(array $options = [])
33
 * @method DetectFaceAttributes detectFaceAttributes(array $options = [])
34
 * @method InitDevice initDevice(array $options = [])
35
 * @method InitFaceVerify initFaceVerify(array $options = [])
36
 * @method LivenessFaceVerify livenessFaceVerify(array $options = [])
37
 * @method ModifyDeviceInfo modifyDeviceInfo(array $options = [])
38
 * @method UpdateAppPackage updateAppPackage(array $options = [])
39
 * @method UpdateFaceConfig updateFaceConfig(array $options = [])
40
 * @method UpdateVerifySetting updateVerifySetting(array $options = [])
41
 * @method VerifyDevice verifyDevice(array $options = [])
42
 * @method VerifyMaterial verifyMaterial(array $options = [])
43
 */
44
class CloudauthApiResolver extends ApiResolver
45
{
46
}
47
48
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
49
{
50
    /** @var string */
51
    public $product = 'Cloudauth';
52
53
    /** @var string */
54
    public $version = '2019-03-07';
55
56
    /** @var string */
57
    public $method = 'POST';
58
59
    /** @var string */
60
    public $serviceCode = 'cloudauth';
61
}
62
63
/**
64
 * @method string getSourceImageType()
65
 * @method string getTargetImageType()
66
 * @method string getTargetImageValue()
67
 * @method string getBizType()
68
 * @method string getSourceImageValue()
69
 */
70
class CompareFaces extends Rpc
71
{
72
73
    /** @var string */
74
    public $scheme = 'https';
75
76
    /**
77
     * @param string $value
78
     *
79
     * @return $this
80
     */
81
    public function withSourceImageType($value)
82
    {
83
        $this->data['SourceImageType'] = $value;
84
        $this->options['form_params']['SourceImageType'] = $value;
85
86
        return $this;
87
    }
88
89
    /**
90
     * @param string $value
91
     *
92
     * @return $this
93
     */
94
    public function withTargetImageType($value)
95
    {
96
        $this->data['TargetImageType'] = $value;
97
        $this->options['form_params']['TargetImageType'] = $value;
98
99
        return $this;
100
    }
101
102
    /**
103
     * @param string $value
104
     *
105
     * @return $this
106
     */
107
    public function withTargetImageValue($value)
108
    {
109
        $this->data['TargetImageValue'] = $value;
110
        $this->options['form_params']['TargetImageValue'] = $value;
111
112
        return $this;
113
    }
114
115
    /**
116
     * @param string $value
117
     *
118
     * @return $this
119
     */
120
    public function withBizType($value)
121
    {
122
        $this->data['BizType'] = $value;
123
        $this->options['form_params']['BizType'] = $value;
124
125
        return $this;
126
    }
127
128
    /**
129
     * @param string $value
130
     *
131
     * @return $this
132
     */
133
    public function withSourceImageValue($value)
134
    {
135
        $this->data['SourceImageValue'] = $value;
136
        $this->options['form_params']['SourceImageValue'] = $value;
137
138
        return $this;
139
    }
140
}
141
142
/**
143
 * @method string getTargetFaceContrastPictureUrl()
144
 * @method string getProductCode()
145
 * @method string getTargetCertifyId()
146
 * @method string getSourceOssObjectName()
147
 * @method string getTargetFaceContrastPicture()
148
 * @method string getTargetOssBucketName()
149
 * @method string getSourceOssBucketName()
150
 * @method string getOuterOrderNo()
151
 * @method string getTargetOssObjectName()
152
 * @method string getSourceFaceContrastPicture()
153
 * @method string getSceneId()
154
 * @method string getSourceFaceContrastPictureUrl()
155
 * @method string getSourceCertifyId()
156
 */
157
class CompareFaceVerify extends Rpc
158
{
159
160
    /**
161
     * @param string $value
162
     *
163
     * @return $this
164
     */
165
    public function withTargetFaceContrastPictureUrl($value)
166
    {
167
        $this->data['TargetFaceContrastPictureUrl'] = $value;
168
        $this->options['form_params']['TargetFaceContrastPictureUrl'] = $value;
169
170
        return $this;
171
    }
172
173
    /**
174
     * @param string $value
175
     *
176
     * @return $this
177
     */
178
    public function withProductCode($value)
179
    {
180
        $this->data['ProductCode'] = $value;
181
        $this->options['form_params']['ProductCode'] = $value;
182
183
        return $this;
184
    }
185
186
    /**
187
     * @param string $value
188
     *
189
     * @return $this
190
     */
191
    public function withTargetCertifyId($value)
192
    {
193
        $this->data['TargetCertifyId'] = $value;
194
        $this->options['form_params']['TargetCertifyId'] = $value;
195
196
        return $this;
197
    }
198
199
    /**
200
     * @param string $value
201
     *
202
     * @return $this
203
     */
204
    public function withSourceOssObjectName($value)
205
    {
206
        $this->data['SourceOssObjectName'] = $value;
207
        $this->options['form_params']['SourceOssObjectName'] = $value;
208
209
        return $this;
210
    }
211
212
    /**
213
     * @param string $value
214
     *
215
     * @return $this
216
     */
217
    public function withTargetFaceContrastPicture($value)
218
    {
219
        $this->data['TargetFaceContrastPicture'] = $value;
220
        $this->options['form_params']['TargetFaceContrastPicture'] = $value;
221
222
        return $this;
223
    }
224
225
    /**
226
     * @param string $value
227
     *
228
     * @return $this
229
     */
230
    public function withTargetOssBucketName($value)
231
    {
232
        $this->data['TargetOssBucketName'] = $value;
233
        $this->options['form_params']['TargetOssBucketName'] = $value;
234
235
        return $this;
236
    }
237
238
    /**
239
     * @param string $value
240
     *
241
     * @return $this
242
     */
243
    public function withSourceOssBucketName($value)
244
    {
245
        $this->data['SourceOssBucketName'] = $value;
246
        $this->options['form_params']['SourceOssBucketName'] = $value;
247
248
        return $this;
249
    }
250
251
    /**
252
     * @param string $value
253
     *
254
     * @return $this
255
     */
256
    public function withOuterOrderNo($value)
257
    {
258
        $this->data['OuterOrderNo'] = $value;
259
        $this->options['form_params']['OuterOrderNo'] = $value;
260
261
        return $this;
262
    }
263
264
    /**
265
     * @param string $value
266
     *
267
     * @return $this
268
     */
269
    public function withTargetOssObjectName($value)
270
    {
271
        $this->data['TargetOssObjectName'] = $value;
272
        $this->options['form_params']['TargetOssObjectName'] = $value;
273
274
        return $this;
275
    }
276
277
    /**
278
     * @param string $value
279
     *
280
     * @return $this
281
     */
282
    public function withSourceFaceContrastPicture($value)
283
    {
284
        $this->data['SourceFaceContrastPicture'] = $value;
285
        $this->options['form_params']['SourceFaceContrastPicture'] = $value;
286
287
        return $this;
288
    }
289
290
    /**
291
     * @param string $value
292
     *
293
     * @return $this
294
     */
295
    public function withSceneId($value)
296
    {
297
        $this->data['SceneId'] = $value;
298
        $this->options['form_params']['SceneId'] = $value;
299
300
        return $this;
301
    }
302
303
    /**
304
     * @param string $value
305
     *
306
     * @return $this
307
     */
308
    public function withSourceFaceContrastPictureUrl($value)
309
    {
310
        $this->data['SourceFaceContrastPictureUrl'] = $value;
311
        $this->options['form_params']['SourceFaceContrastPictureUrl'] = $value;
312
313
        return $this;
314
    }
315
316
    /**
317
     * @param string $value
318
     *
319
     * @return $this
320
     */
321
    public function withSourceCertifyId($value)
322
    {
323
        $this->data['SourceCertifyId'] = $value;
324
        $this->options['form_params']['SourceCertifyId'] = $value;
325
326
        return $this;
327
    }
328
}
329
330
/**
331
 * @method string getProductCode()
332
 * @method string getFaceContrastPicture()
333
 * @method string getDeviceToken()
334
 * @method string getUserId()
335
 * @method string getCertifyId()
336
 * @method string getCertNo()
337
 * @method string getOuterOrderNo()
338
 * @method string getCertType()
339
 * @method string getFaceContrastPictureUrl()
340
 * @method string getModel()
341
 * @method $this withModel($value)
342
 * @method string getOssObjectName()
343
 * @method string getCertName()
344
 * @method string getIp()
345
 * @method string getMobile()
346
 * @method string getFaceContrastFile()
347
 * @method string getSceneId()
348
 * @method string getOssBucketName()
349
 */
350
class ContrastFaceVerify extends Rpc
351
{
352
353
    /**
354
     * @param string $value
355
     *
356
     * @return $this
357
     */
358
    public function withProductCode($value)
359
    {
360
        $this->data['ProductCode'] = $value;
361
        $this->options['form_params']['ProductCode'] = $value;
362
363
        return $this;
364
    }
365
366
    /**
367
     * @param string $value
368
     *
369
     * @return $this
370
     */
371
    public function withFaceContrastPicture($value)
372
    {
373
        $this->data['FaceContrastPicture'] = $value;
374
        $this->options['form_params']['FaceContrastPicture'] = $value;
375
376
        return $this;
377
    }
378
379
    /**
380
     * @param string $value
381
     *
382
     * @return $this
383
     */
384
    public function withDeviceToken($value)
385
    {
386
        $this->data['DeviceToken'] = $value;
387
        $this->options['form_params']['DeviceToken'] = $value;
388
389
        return $this;
390
    }
391
392
    /**
393
     * @param string $value
394
     *
395
     * @return $this
396
     */
397
    public function withUserId($value)
398
    {
399
        $this->data['UserId'] = $value;
400
        $this->options['form_params']['UserId'] = $value;
401
402
        return $this;
403
    }
404
405
    /**
406
     * @param string $value
407
     *
408
     * @return $this
409
     */
410
    public function withCertifyId($value)
411
    {
412
        $this->data['CertifyId'] = $value;
413
        $this->options['form_params']['CertifyId'] = $value;
414
415
        return $this;
416
    }
417
418
    /**
419
     * @param string $value
420
     *
421
     * @return $this
422
     */
423
    public function withCertNo($value)
424
    {
425
        $this->data['CertNo'] = $value;
426
        $this->options['form_params']['CertNo'] = $value;
427
428
        return $this;
429
    }
430
431
    /**
432
     * @param string $value
433
     *
434
     * @return $this
435
     */
436
    public function withOuterOrderNo($value)
437
    {
438
        $this->data['OuterOrderNo'] = $value;
439
        $this->options['form_params']['OuterOrderNo'] = $value;
440
441
        return $this;
442
    }
443
444
    /**
445
     * @param string $value
446
     *
447
     * @return $this
448
     */
449
    public function withCertType($value)
450
    {
451
        $this->data['CertType'] = $value;
452
        $this->options['form_params']['CertType'] = $value;
453
454
        return $this;
455
    }
456
457
    /**
458
     * @param string $value
459
     *
460
     * @return $this
461
     */
462
    public function withFaceContrastPictureUrl($value)
463
    {
464
        $this->data['FaceContrastPictureUrl'] = $value;
465
        $this->options['form_params']['FaceContrastPictureUrl'] = $value;
466
467
        return $this;
468
    }
469
470
    /**
471
     * @param string $value
472
     *
473
     * @return $this
474
     */
475
    public function withOssObjectName($value)
476
    {
477
        $this->data['OssObjectName'] = $value;
478
        $this->options['form_params']['OssObjectName'] = $value;
479
480
        return $this;
481
    }
482
483
    /**
484
     * @param string $value
485
     *
486
     * @return $this
487
     */
488
    public function withCertName($value)
489
    {
490
        $this->data['CertName'] = $value;
491
        $this->options['form_params']['CertName'] = $value;
492
493
        return $this;
494
    }
495
496
    /**
497
     * @param string $value
498
     *
499
     * @return $this
500
     */
501
    public function withIp($value)
502
    {
503
        $this->data['Ip'] = $value;
504
        $this->options['form_params']['Ip'] = $value;
505
506
        return $this;
507
    }
508
509
    /**
510
     * @param string $value
511
     *
512
     * @return $this
513
     */
514
    public function withMobile($value)
515
    {
516
        $this->data['Mobile'] = $value;
517
        $this->options['form_params']['Mobile'] = $value;
518
519
        return $this;
520
    }
521
522
    /**
523
     * @param string $value
524
     *
525
     * @return $this
526
     */
527
    public function withFaceContrastFile($value)
528
    {
529
        $this->data['FaceContrastFile'] = $value;
530
        $this->options['form_params']['FaceContrastFile'] = $value;
531
532
        return $this;
533
    }
534
535
    /**
536
     * @param string $value
537
     *
538
     * @return $this
539
     */
540
    public function withSceneId($value)
541
    {
542
        $this->data['SceneId'] = $value;
543
        $this->options['form_params']['SceneId'] = $value;
544
545
        return $this;
546
    }
547
548
    /**
549
     * @param string $value
550
     *
551
     * @return $this
552
     */
553
    public function withOssBucketName($value)
554
    {
555
        $this->data['OssBucketName'] = $value;
556
        $this->options['form_params']['OssBucketName'] = $value;
557
558
        return $this;
559
    }
560
}
561
562
/**
563
 * @method string getUserDeviceId()
564
 * @method $this withUserDeviceId($value)
565
 * @method string getTest()
566
 * @method $this withTest($value)
567
 * @method string getBizType()
568
 * @method $this withBizType($value)
569
 * @method string getSourceIp()
570
 * @method $this withSourceIp($value)
571
 * @method string getAuthYears()
572
 * @method $this withAuthYears($value)
573
 * @method string getLang()
574
 * @method $this withLang($value)
575
 */
576
class CreateAuthKey extends Rpc
577
{
578
}
579
580
/**
581
 * @method string getBizName()
582
 * @method $this withBizName($value)
583
 * @method string getBizType()
584
 * @method $this withBizType($value)
585
 * @method string getSourceIp()
586
 * @method $this withSourceIp($value)
587
 * @method string getLang()
588
 * @method $this withLang($value)
589
 */
590
class CreateFaceConfig extends Rpc
591
{
592
}
593
594
/**
595
 * @method string getAppUrl()
596
 * @method $this withAppUrl($value)
597
 * @method string getPlatform()
598
 * @method $this withPlatform($value)
599
 * @method string getSourceIp()
600
 * @method $this withSourceIp($value)
601
 * @method string getLang()
602
 * @method $this withLang($value)
603
 */
604
class CreateRPSDK extends Rpc
605
{
606
}
607
608
/**
609
 * @method string getAppUrl()
610
 * @method $this withAppUrl($value)
611
 * @method string getPlatform()
612
 * @method $this withPlatform($value)
613
 * @method string getSourceIp()
614
 * @method $this withSourceIp($value)
615
 * @method string getLang()
616
 * @method $this withLang($value)
617
 */
618
class CreateVerifySDK extends Rpc
619
{
620
}
621
622
/**
623
 * @method string getGuideStep()
624
 * @method $this withGuideStep($value)
625
 * @method string getResultStep()
626
 * @method $this withResultStep($value)
627
 * @method string getSourceIp()
628
 * @method $this withSourceIp($value)
629
 * @method string getSolution()
630
 * @method $this withSolution($value)
631
 * @method string getBizName()
632
 * @method $this withBizName($value)
633
 * @method string getBizType()
634
 * @method $this withBizType($value)
635
 * @method string getPrivacyStep()
636
 * @method $this withPrivacyStep($value)
637
 */
638
class CreateVerifySetting extends Rpc
639
{
640
}
641
642
/**
643
 * @method string getCurrentPage()
644
 * @method $this withCurrentPage($value)
645
 * @method string getPlatform()
646
 * @method $this withPlatform($value)
647
 * @method string getSourceIp()
648
 * @method $this withSourceIp($value)
649
 * @method string getPageSize()
650
 * @method $this withPageSize($value)
651
 */
652
class DescribeAppInfo extends Rpc
653
{
654
}
655
656
/**
657
 * @method string getUserDeviceId()
658
 * @method $this withUserDeviceId($value)
659
 * @method string getSourceIp()
660
 * @method $this withSourceIp($value)
661
 * @method string getPageSize()
662
 * @method $this withPageSize($value)
663
 * @method string getLang()
664
 * @method $this withLang($value)
665
 * @method string getExpiredStartDay()
666
 * @method $this withExpiredStartDay($value)
667
 * @method string getTotalCount()
668
 * @method $this withTotalCount($value)
669
 * @method string getCurrentPage()
670
 * @method $this withCurrentPage($value)
671
 * @method string getDeviceId()
672
 * @method $this withDeviceId($value)
673
 * @method string getBizType()
674
 * @method $this withBizType($value)
675
 * @method string getExpiredEndDay()
676
 * @method $this withExpiredEndDay($value)
677
 */
678
class DescribeDeviceInfo extends Rpc
679
{
680
}
681
682
/**
683
 * @method string getSourceIp()
684
 * @method $this withSourceIp($value)
685
 * @method string getLang()
686
 * @method $this withLang($value)
687
 */
688
class DescribeFaceConfig extends Rpc
689
{
690
}
691
692
/**
693
 * @method string getStartDate()
694
 * @method $this withStartDate($value)
695
 * @method string getEndDate()
696
 * @method $this withEndDate($value)
697
 * @method string getSourceIp()
698
 * @method $this withSourceIp($value)
699
 */
700
class DescribeFaceUsage extends Rpc
701
{
702
}
703
704
/**
705
 * @method string getSceneId()
706
 * @method $this withSceneId($value)
707
 * @method string getCertifyId()
708
 * @method $this withCertifyId($value)
709
 */
710
class DescribeFaceVerify extends Rpc
711
{
712
}
713
714
/**
715
 * @method string getSourceIp()
716
 * @method $this withSourceIp($value)
717
 */
718
class DescribeOssUploadToken extends Rpc
719
{
720
}
721
722
/**
723
 * @method string getSourceIp()
724
 * @method $this withSourceIp($value)
725
 * @method string getLang()
726
 * @method $this withLang($value)
727
 * @method string getTaskId()
728
 * @method $this withTaskId($value)
729
 */
730
class DescribeRPSDK extends Rpc
731
{
732
}
733
734
/**
735
 * @method string getDebug()
736
 * @method $this withDebug($value)
737
 * @method string getSourceIp()
738
 * @method $this withSourceIp($value)
739
 * @method string getId()
740
 * @method $this withId($value)
741
 */
742
class DescribeSdkUrl extends Rpc
743
{
744
}
745
746
/**
747
 * @method string getSourceIp()
748
 * @method $this withSourceIp($value)
749
 * @method string getTaskId()
750
 * @method $this withTaskId($value)
751
 */
752
class DescribeUpdatePackageResult extends Rpc
753
{
754
}
755
756
/**
757
 * @method string getBiz()
758
 * @method $this withBiz($value)
759
 * @method string getSourceIp()
760
 * @method $this withSourceIp($value)
761
 */
762
class DescribeUploadInfo extends Rpc
763
{
764
}
765
766
/**
767
 * @method string getSourceIp()
768
 * @method $this withSourceIp($value)
769
 */
770
class DescribeUserStatus extends Rpc
771
{
772
}
773
774
/**
775
 * @method string getStatusList()
776
 * @method $this withStatusList($value)
777
 * @method string getStartDate()
778
 * @method $this withStartDate($value)
779
 * @method string getSourceIp()
780
 * @method $this withSourceIp($value)
781
 * @method string getPageSize()
782
 * @method $this withPageSize($value)
783
 * @method string getTotalCount()
784
 * @method $this withTotalCount($value)
785
 * @method string getCurrentPage()
786
 * @method $this withCurrentPage($value)
787
 * @method string getQueryId()
788
 * @method $this withQueryId($value)
789
 * @method string getBizType()
790
 * @method $this withBizType($value)
791
 * @method string getIdCardNum()
792
 * @method $this withIdCardNum($value)
793
 * @method string getEndDate()
794
 * @method $this withEndDate($value)
795
 * @method string getBizId()
796
 * @method $this withBizId($value)
797
 */
798
class DescribeVerifyRecords extends Rpc
799
{
800
}
801
802
/**
803
 * @method string getBizType()
804
 * @method $this withBizType($value)
805
 * @method string getBizId()
806
 * @method $this withBizId($value)
807
 */
808
class DescribeVerifyResult extends Rpc
809
{
810
}
811
812
/**
813
 * @method string getSourceIp()
814
 * @method $this withSourceIp($value)
815
 * @method string getLang()
816
 * @method $this withLang($value)
817
 * @method string getTaskId()
818
 * @method $this withTaskId($value)
819
 */
820
class DescribeVerifySDK extends Rpc
821
{
822
}
823
824
/**
825
 * @method string getSourceIp()
826
 * @method $this withSourceIp($value)
827
 */
828
class DescribeVerifySetting extends Rpc
829
{
830
}
831
832
/**
833
 * @method string getFaceRetainedImageUrl()
834
 * @method $this withFaceRetainedImageUrl($value)
835
 * @method string getUserId()
836
 * @method $this withUserId($value)
837
 * @method string getCallbackSeed()
838
 * @method $this withCallbackSeed($value)
839
 * @method string getUserIp()
840
 * @method $this withUserIp($value)
841
 * @method string getIdCardBackImageUrl()
842
 * @method $this withIdCardBackImageUrl($value)
843
 * @method string getIdCardNumber()
844
 * @method $this withIdCardNumber($value)
845
 * @method string getIdCardFrontImageUrl()
846
 * @method $this withIdCardFrontImageUrl($value)
847
 * @method string getBizType()
848
 * @method $this withBizType($value)
849
 * @method string getPassedRedirectUrl()
850
 * @method $this withPassedRedirectUrl($value)
851
 * @method string getUserRegistTime()
852
 * @method $this withUserRegistTime($value)
853
 * @method string getBizId()
854
 * @method $this withBizId($value)
855
 * @method string getName()
856
 * @method $this withName($value)
857
 * @method string getUserPhoneNumber()
858
 * @method $this withUserPhoneNumber($value)
859
 * @method string getCallbackUrl()
860
 * @method $this withCallbackUrl($value)
861
 * @method string getFailedRedirectUrl()
862
 * @method $this withFailedRedirectUrl($value)
863
 */
864
class DescribeVerifyToken extends Rpc
865
{
866
}
867
868
/**
869
 * @method string getStartDate()
870
 * @method $this withStartDate($value)
871
 * @method string getBizType()
872
 * @method $this withBizType($value)
873
 * @method string getEndDate()
874
 * @method $this withEndDate($value)
875
 * @method string getSourceIp()
876
 * @method $this withSourceIp($value)
877
 */
878
class DescribeVerifyUsage extends Rpc
879
{
880
}
881
882
/**
883
 * @method string getBizType()
884
 * @method string getMaterialValue()
885
 */
886
class DetectFaceAttributes extends Rpc
887
{
888
889
    /**
890
     * @param string $value
891
     *
892
     * @return $this
893
     */
894
    public function withBizType($value)
895
    {
896
        $this->data['BizType'] = $value;
897
        $this->options['form_params']['BizType'] = $value;
898
899
        return $this;
900
    }
901
902
    /**
903
     * @param string $value
904
     *
905
     * @return $this
906
     */
907
    public function withMaterialValue($value)
908
    {
909
        $this->data['MaterialValue'] = $value;
910
        $this->options['form_params']['MaterialValue'] = $value;
911
912
        return $this;
913
    }
914
}
915
916
/**
917
 * @method string getChannel()
918
 * @method $this withChannel($value)
919
 * @method string getBizData()
920
 * @method $this withBizData($value)
921
 * @method string getMerchant()
922
 * @method $this withMerchant($value)
923
 * @method string getAppVersion()
924
 * @method $this withAppVersion($value)
925
 * @method string getDeviceToken()
926
 * @method $this withDeviceToken($value)
927
 * @method string getCertifyId()
928
 * @method $this withCertifyId($value)
929
 * @method string getWebUmidToken()
930
 * @method string getOuterOrderNo()
931
 * @method $this withOuterOrderNo($value)
932
 * @method string getProduceNode()
933
 * @method $this withProduceNode($value)
934
 * @method string getUaToken()
935
 * @method string getProductName()
936
 * @method $this withProductName($value)
937
 * @method string getCertifyPrincipal()
938
 * @method $this withCertifyPrincipal($value)
939
 * @method string getMetaInfo()
940
 * @method $this withMetaInfo($value)
941
 */
942
class InitDevice extends Rpc
943
{
944
945
    /**
946
     * @param string $value
947
     *
948
     * @return $this
949
     */
950
    public function withWebUmidToken($value)
951
    {
952
        $this->data['WebUmidToken'] = $value;
953
        $this->options['form_params']['WebUmidToken'] = $value;
954
955
        return $this;
956
    }
957
958
    /**
959
     * @param string $value
960
     *
961
     * @return $this
962
     */
963
    public function withUaToken($value)
964
    {
965
        $this->data['UaToken'] = $value;
966
        $this->options['form_params']['UaToken'] = $value;
967
968
        return $this;
969
    }
970
}
971
972
/**
973
 * @method string getProductCode()
974
 * @method $this withProductCode($value)
975
 * @method string getFaceContrastPicture()
976
 * @method string getUserId()
977
 * @method $this withUserId($value)
978
 * @method string getCertifyId()
979
 * @method $this withCertifyId($value)
980
 * @method string getCertNo()
981
 * @method $this withCertNo($value)
982
 * @method string getOuterOrderNo()
983
 * @method $this withOuterOrderNo($value)
984
 * @method string getCertType()
985
 * @method $this withCertType($value)
986
 * @method string getFaceContrastPictureUrl()
987
 * @method $this withFaceContrastPictureUrl($value)
988
 * @method string getModel()
989
 * @method string getMetaInfo()
990
 * @method $this withMetaInfo($value)
991
 * @method string getOssObjectName()
992
 * @method $this withOssObjectName($value)
993
 * @method string getCertName()
994
 * @method $this withCertName($value)
995
 * @method string getIp()
996
 * @method $this withIp($value)
997
 * @method string getMobile()
998
 * @method $this withMobile($value)
999
 * @method string getSceneId()
1000
 * @method $this withSceneId($value)
1001
 * @method string getOssBucketName()
1002
 * @method $this withOssBucketName($value)
1003
 * @method string getCallbackToken()
1004
 * @method $this withCallbackToken($value)
1005
 * @method string getReturnUrl()
1006
 * @method $this withReturnUrl($value)
1007
 * @method string getCallbackUrl()
1008
 * @method $this withCallbackUrl($value)
1009
 */
1010
class InitFaceVerify extends Rpc
1011
{
1012
1013
    /**
1014
     * @param string $value
1015
     *
1016
     * @return $this
1017
     */
1018
    public function withFaceContrastPicture($value)
1019
    {
1020
        $this->data['FaceContrastPicture'] = $value;
1021
        $this->options['form_params']['FaceContrastPicture'] = $value;
1022
1023
        return $this;
1024
    }
1025
1026
    /**
1027
     * @param string $value
1028
     *
1029
     * @return $this
1030
     */
1031
    public function withModel($value)
1032
    {
1033
        $this->data['Model'] = $value;
1034
        $this->options['form_params']['Model'] = $value;
1035
1036
        return $this;
1037
    }
1038
}
1039
1040
/**
1041
 * @method string getProductCode()
1042
 * @method string getOssObjectName()
1043
 * @method string getFaceContrastPicture()
1044
 * @method string getIp()
1045
 * @method string getMobile()
1046
 * @method string getDeviceToken()
1047
 * @method string getUserId()
1048
 * @method string getCertifyId()
1049
 * @method string getOuterOrderNo()
1050
 * @method string getFaceContrastPictureUrl()
1051
 * @method string getSceneId()
1052
 * @method string getOssBucketName()
1053
 * @method string getModel()
1054
 * @method $this withModel($value)
1055
 */
1056
class LivenessFaceVerify extends Rpc
1057
{
1058
1059
    /**
1060
     * @param string $value
1061
     *
1062
     * @return $this
1063
     */
1064
    public function withProductCode($value)
1065
    {
1066
        $this->data['ProductCode'] = $value;
1067
        $this->options['form_params']['ProductCode'] = $value;
1068
1069
        return $this;
1070
    }
1071
1072
    /**
1073
     * @param string $value
1074
     *
1075
     * @return $this
1076
     */
1077
    public function withOssObjectName($value)
1078
    {
1079
        $this->data['OssObjectName'] = $value;
1080
        $this->options['form_params']['OssObjectName'] = $value;
1081
1082
        return $this;
1083
    }
1084
1085
    /**
1086
     * @param string $value
1087
     *
1088
     * @return $this
1089
     */
1090
    public function withFaceContrastPicture($value)
1091
    {
1092
        $this->data['FaceContrastPicture'] = $value;
1093
        $this->options['form_params']['FaceContrastPicture'] = $value;
1094
1095
        return $this;
1096
    }
1097
1098
    /**
1099
     * @param string $value
1100
     *
1101
     * @return $this
1102
     */
1103
    public function withIp($value)
1104
    {
1105
        $this->data['Ip'] = $value;
1106
        $this->options['form_params']['Ip'] = $value;
1107
1108
        return $this;
1109
    }
1110
1111
    /**
1112
     * @param string $value
1113
     *
1114
     * @return $this
1115
     */
1116
    public function withMobile($value)
1117
    {
1118
        $this->data['Mobile'] = $value;
1119
        $this->options['form_params']['Mobile'] = $value;
1120
1121
        return $this;
1122
    }
1123
1124
    /**
1125
     * @param string $value
1126
     *
1127
     * @return $this
1128
     */
1129
    public function withDeviceToken($value)
1130
    {
1131
        $this->data['DeviceToken'] = $value;
1132
        $this->options['form_params']['DeviceToken'] = $value;
1133
1134
        return $this;
1135
    }
1136
1137
    /**
1138
     * @param string $value
1139
     *
1140
     * @return $this
1141
     */
1142
    public function withUserId($value)
1143
    {
1144
        $this->data['UserId'] = $value;
1145
        $this->options['form_params']['UserId'] = $value;
1146
1147
        return $this;
1148
    }
1149
1150
    /**
1151
     * @param string $value
1152
     *
1153
     * @return $this
1154
     */
1155
    public function withCertifyId($value)
1156
    {
1157
        $this->data['CertifyId'] = $value;
1158
        $this->options['form_params']['CertifyId'] = $value;
1159
1160
        return $this;
1161
    }
1162
1163
    /**
1164
     * @param string $value
1165
     *
1166
     * @return $this
1167
     */
1168
    public function withOuterOrderNo($value)
1169
    {
1170
        $this->data['OuterOrderNo'] = $value;
1171
        $this->options['form_params']['OuterOrderNo'] = $value;
1172
1173
        return $this;
1174
    }
1175
1176
    /**
1177
     * @param string $value
1178
     *
1179
     * @return $this
1180
     */
1181
    public function withFaceContrastPictureUrl($value)
1182
    {
1183
        $this->data['FaceContrastPictureUrl'] = $value;
1184
        $this->options['form_params']['FaceContrastPictureUrl'] = $value;
1185
1186
        return $this;
1187
    }
1188
1189
    /**
1190
     * @param string $value
1191
     *
1192
     * @return $this
1193
     */
1194
    public function withSceneId($value)
1195
    {
1196
        $this->data['SceneId'] = $value;
1197
        $this->options['form_params']['SceneId'] = $value;
1198
1199
        return $this;
1200
    }
1201
1202
    /**
1203
     * @param string $value
1204
     *
1205
     * @return $this
1206
     */
1207
    public function withOssBucketName($value)
1208
    {
1209
        $this->data['OssBucketName'] = $value;
1210
        $this->options['form_params']['OssBucketName'] = $value;
1211
1212
        return $this;
1213
    }
1214
}
1215
1216
/**
1217
 * @method string getUserDeviceId()
1218
 * @method $this withUserDeviceId($value)
1219
 * @method string getDuration()
1220
 * @method $this withDuration($value)
1221
 * @method string getExpiredDay()
1222
 * @method $this withExpiredDay($value)
1223
 * @method string getSourceIp()
1224
 * @method $this withSourceIp($value)
1225
 * @method string getLang()
1226
 * @method $this withLang($value)
1227
 * @method string getDeviceId()
1228
 * @method $this withDeviceId($value)
1229
 * @method string getBizType()
1230
 * @method $this withBizType($value)
1231
 */
1232
class ModifyDeviceInfo extends Rpc
1233
{
1234
}
1235
1236
/**
1237
 * @method string getDebug()
1238
 * @method $this withDebug($value)
1239
 * @method string getPlatform()
1240
 * @method $this withPlatform($value)
1241
 * @method string getSourceIp()
1242
 * @method $this withSourceIp($value)
1243
 * @method string getPackageUrl()
1244
 * @method $this withPackageUrl($value)
1245
 * @method string getId()
1246
 * @method $this withId($value)
1247
 */
1248
class UpdateAppPackage extends Rpc
1249
{
1250
}
1251
1252
/**
1253
 * @method string getBizName()
1254
 * @method $this withBizName($value)
1255
 * @method string getBizType()
1256
 * @method $this withBizType($value)
1257
 * @method string getSourceIp()
1258
 * @method $this withSourceIp($value)
1259
 * @method string getLang()
1260
 * @method $this withLang($value)
1261
 */
1262
class UpdateFaceConfig extends Rpc
1263
{
1264
}
1265
1266
/**
1267
 * @method string getGuideStep()
1268
 * @method $this withGuideStep($value)
1269
 * @method string getResultStep()
1270
 * @method $this withResultStep($value)
1271
 * @method string getSourceIp()
1272
 * @method $this withSourceIp($value)
1273
 * @method string getSolution()
1274
 * @method $this withSolution($value)
1275
 * @method string getBizName()
1276
 * @method $this withBizName($value)
1277
 * @method string getBizType()
1278
 * @method $this withBizType($value)
1279
 * @method string getPrivacyStep()
1280
 * @method $this withPrivacyStep($value)
1281
 */
1282
class UpdateVerifySetting extends Rpc
1283
{
1284
}
1285
1286
/**
1287
 * @method string getExtInfo()
1288
 * @method string getCertifyData()
1289
 * @method $this withCertifyData($value)
1290
 * @method string getAppVersion()
1291
 * @method $this withAppVersion($value)
1292
 * @method string getCertifyId()
1293
 * @method $this withCertifyId($value)
1294
 */
1295
class VerifyDevice extends Rpc
1296
{
1297
1298
    /**
1299
     * @param string $value
1300
     *
1301
     * @return $this
1302
     */
1303
    public function withExtInfo($value)
1304
    {
1305
        $this->data['ExtInfo'] = $value;
1306
        $this->options['form_params']['ExtInfo'] = $value;
1307
1308
        return $this;
1309
    }
1310
}
1311
1312
/**
1313
 * @method string getFaceImageUrl()
1314
 * @method $this withFaceImageUrl($value)
1315
 * @method string getUserId()
1316
 * @method $this withUserId($value)
1317
 * @method string getIdCardBackImageUrl()
1318
 * @method $this withIdCardBackImageUrl($value)
1319
 * @method string getIdCardNumber()
1320
 * @method $this withIdCardNumber($value)
1321
 * @method string getIdCardFrontImageUrl()
1322
 * @method $this withIdCardFrontImageUrl($value)
1323
 * @method string getBizType()
1324
 * @method $this withBizType($value)
1325
 * @method string getBizId()
1326
 * @method $this withBizId($value)
1327
 * @method string getName()
1328
 * @method $this withName($value)
1329
 */
1330
class VerifyMaterial extends Rpc
1331
{
1332
}
1333