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 ( 2d31c1...67653d )
by
unknown
04:06
created

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