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 ( 256214...dc3037 )
by
unknown
03:53
created

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