@alicloud/cloudauth20190307 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +91 -1160
- package/dist/client.js +283 -1981
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +223 -2391
package/dist/client.js
CHANGED
|
@@ -292,7 +292,7 @@ class CreateAuthKeyResponse extends $tea.Model {
|
|
|
292
292
|
}
|
|
293
293
|
}
|
|
294
294
|
exports.CreateAuthKeyResponse = CreateAuthKeyResponse;
|
|
295
|
-
class
|
|
295
|
+
class CreateVerifySettingRequest extends $tea.Model {
|
|
296
296
|
constructor(map) {
|
|
297
297
|
super(map);
|
|
298
298
|
}
|
|
@@ -300,163 +300,173 @@ class CreateFaceConfigRequest extends $tea.Model {
|
|
|
300
300
|
return {
|
|
301
301
|
bizName: 'BizName',
|
|
302
302
|
bizType: 'BizType',
|
|
303
|
-
|
|
304
|
-
|
|
303
|
+
guideStep: 'GuideStep',
|
|
304
|
+
privacyStep: 'PrivacyStep',
|
|
305
|
+
resultStep: 'ResultStep',
|
|
306
|
+
solution: 'Solution',
|
|
305
307
|
};
|
|
306
308
|
}
|
|
307
309
|
static types() {
|
|
308
310
|
return {
|
|
309
311
|
bizName: 'string',
|
|
310
312
|
bizType: 'string',
|
|
311
|
-
|
|
312
|
-
|
|
313
|
+
guideStep: 'boolean',
|
|
314
|
+
privacyStep: 'boolean',
|
|
315
|
+
resultStep: 'boolean',
|
|
316
|
+
solution: 'string',
|
|
313
317
|
};
|
|
314
318
|
}
|
|
315
319
|
}
|
|
316
|
-
exports.
|
|
317
|
-
class
|
|
320
|
+
exports.CreateVerifySettingRequest = CreateVerifySettingRequest;
|
|
321
|
+
class CreateVerifySettingResponse extends $tea.Model {
|
|
318
322
|
constructor(map) {
|
|
319
323
|
super(map);
|
|
320
324
|
}
|
|
321
325
|
static names() {
|
|
322
326
|
return {
|
|
327
|
+
bizName: 'BizName',
|
|
328
|
+
bizType: 'BizType',
|
|
323
329
|
requestId: 'RequestId',
|
|
330
|
+
solution: 'Solution',
|
|
331
|
+
stepList: 'StepList',
|
|
324
332
|
};
|
|
325
333
|
}
|
|
326
334
|
static types() {
|
|
327
335
|
return {
|
|
336
|
+
bizName: 'string',
|
|
337
|
+
bizType: 'string',
|
|
328
338
|
requestId: 'string',
|
|
339
|
+
solution: 'string',
|
|
340
|
+
stepList: { 'type': 'array', 'itemType': 'string' },
|
|
329
341
|
};
|
|
330
342
|
}
|
|
331
343
|
}
|
|
332
|
-
exports.
|
|
333
|
-
class
|
|
344
|
+
exports.CreateVerifySettingResponse = CreateVerifySettingResponse;
|
|
345
|
+
class DescribeDeviceInfoRequest extends $tea.Model {
|
|
334
346
|
constructor(map) {
|
|
335
347
|
super(map);
|
|
336
348
|
}
|
|
337
349
|
static names() {
|
|
338
350
|
return {
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
351
|
+
bizType: 'BizType',
|
|
352
|
+
currentPage: 'CurrentPage',
|
|
353
|
+
deviceId: 'DeviceId',
|
|
354
|
+
expiredEndDay: 'ExpiredEndDay',
|
|
355
|
+
expiredStartDay: 'ExpiredStartDay',
|
|
356
|
+
pageSize: 'PageSize',
|
|
357
|
+
userDeviceId: 'UserDeviceId',
|
|
343
358
|
};
|
|
344
359
|
}
|
|
345
360
|
static types() {
|
|
346
361
|
return {
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
362
|
+
bizType: 'string',
|
|
363
|
+
currentPage: 'number',
|
|
364
|
+
deviceId: 'string',
|
|
365
|
+
expiredEndDay: 'string',
|
|
366
|
+
expiredStartDay: 'string',
|
|
367
|
+
pageSize: 'number',
|
|
368
|
+
userDeviceId: 'string',
|
|
351
369
|
};
|
|
352
370
|
}
|
|
353
371
|
}
|
|
354
|
-
exports.
|
|
355
|
-
class
|
|
372
|
+
exports.DescribeDeviceInfoRequest = DescribeDeviceInfoRequest;
|
|
373
|
+
class DescribeDeviceInfoResponse extends $tea.Model {
|
|
356
374
|
constructor(map) {
|
|
357
375
|
super(map);
|
|
358
376
|
}
|
|
359
377
|
static names() {
|
|
360
378
|
return {
|
|
379
|
+
currentPage: 'CurrentPage',
|
|
380
|
+
pageSize: 'PageSize',
|
|
361
381
|
requestId: 'RequestId',
|
|
362
|
-
|
|
382
|
+
totalCount: 'TotalCount',
|
|
383
|
+
deviceInfoList: 'DeviceInfoList',
|
|
363
384
|
};
|
|
364
385
|
}
|
|
365
386
|
static types() {
|
|
366
387
|
return {
|
|
388
|
+
currentPage: 'number',
|
|
389
|
+
pageSize: 'number',
|
|
367
390
|
requestId: 'string',
|
|
368
|
-
|
|
391
|
+
totalCount: 'number',
|
|
392
|
+
deviceInfoList: DescribeDeviceInfoResponseDeviceInfoList,
|
|
369
393
|
};
|
|
370
394
|
}
|
|
371
395
|
}
|
|
372
|
-
exports.
|
|
373
|
-
class
|
|
396
|
+
exports.DescribeDeviceInfoResponse = DescribeDeviceInfoResponse;
|
|
397
|
+
class DescribeFaceVerifyRequest extends $tea.Model {
|
|
374
398
|
constructor(map) {
|
|
375
399
|
super(map);
|
|
376
400
|
}
|
|
377
401
|
static names() {
|
|
378
402
|
return {
|
|
379
|
-
|
|
380
|
-
|
|
403
|
+
certifyId: 'CertifyId',
|
|
404
|
+
pictureReturnType: 'PictureReturnType',
|
|
405
|
+
sceneId: 'SceneId',
|
|
381
406
|
};
|
|
382
407
|
}
|
|
383
408
|
static types() {
|
|
384
409
|
return {
|
|
385
|
-
|
|
386
|
-
|
|
410
|
+
certifyId: 'string',
|
|
411
|
+
pictureReturnType: 'string',
|
|
412
|
+
sceneId: 'number',
|
|
387
413
|
};
|
|
388
414
|
}
|
|
389
415
|
}
|
|
390
|
-
exports.
|
|
391
|
-
class
|
|
416
|
+
exports.DescribeFaceVerifyRequest = DescribeFaceVerifyRequest;
|
|
417
|
+
class DescribeFaceVerifyResponse extends $tea.Model {
|
|
392
418
|
constructor(map) {
|
|
393
419
|
super(map);
|
|
394
420
|
}
|
|
395
421
|
static names() {
|
|
396
422
|
return {
|
|
423
|
+
code: 'Code',
|
|
424
|
+
message: 'Message',
|
|
397
425
|
requestId: 'RequestId',
|
|
398
|
-
|
|
426
|
+
resultObject: 'ResultObject',
|
|
399
427
|
};
|
|
400
428
|
}
|
|
401
429
|
static types() {
|
|
402
430
|
return {
|
|
431
|
+
code: 'string',
|
|
432
|
+
message: 'string',
|
|
403
433
|
requestId: 'string',
|
|
404
|
-
|
|
434
|
+
resultObject: DescribeFaceVerifyResponseResultObject,
|
|
405
435
|
};
|
|
406
436
|
}
|
|
407
437
|
}
|
|
408
|
-
exports.
|
|
409
|
-
class
|
|
410
|
-
constructor(map) {
|
|
411
|
-
super(map);
|
|
412
|
-
}
|
|
438
|
+
exports.DescribeFaceVerifyResponse = DescribeFaceVerifyResponse;
|
|
439
|
+
class DescribeOssUploadTokenRequest extends $tea.Model {
|
|
413
440
|
static names() {
|
|
414
|
-
return {
|
|
415
|
-
bizName: 'BizName',
|
|
416
|
-
bizType: 'BizType',
|
|
417
|
-
guideStep: 'GuideStep',
|
|
418
|
-
privacyStep: 'PrivacyStep',
|
|
419
|
-
resultStep: 'ResultStep',
|
|
420
|
-
solution: 'Solution',
|
|
421
|
-
};
|
|
441
|
+
return {};
|
|
422
442
|
}
|
|
423
443
|
static types() {
|
|
424
|
-
return {
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
privacyStep: 'boolean',
|
|
429
|
-
resultStep: 'boolean',
|
|
430
|
-
solution: 'string',
|
|
431
|
-
};
|
|
444
|
+
return {};
|
|
445
|
+
}
|
|
446
|
+
constructor(map) {
|
|
447
|
+
super(map);
|
|
432
448
|
}
|
|
433
449
|
}
|
|
434
|
-
exports.
|
|
435
|
-
class
|
|
450
|
+
exports.DescribeOssUploadTokenRequest = DescribeOssUploadTokenRequest;
|
|
451
|
+
class DescribeOssUploadTokenResponse extends $tea.Model {
|
|
436
452
|
constructor(map) {
|
|
437
453
|
super(map);
|
|
438
454
|
}
|
|
439
455
|
static names() {
|
|
440
456
|
return {
|
|
441
|
-
bizName: 'BizName',
|
|
442
|
-
bizType: 'BizType',
|
|
443
457
|
requestId: 'RequestId',
|
|
444
|
-
|
|
445
|
-
stepList: 'StepList',
|
|
458
|
+
ossUploadToken: 'OssUploadToken',
|
|
446
459
|
};
|
|
447
460
|
}
|
|
448
461
|
static types() {
|
|
449
462
|
return {
|
|
450
|
-
bizName: 'string',
|
|
451
|
-
bizType: 'string',
|
|
452
463
|
requestId: 'string',
|
|
453
|
-
|
|
454
|
-
stepList: { 'type': 'array', 'itemType': 'string' },
|
|
464
|
+
ossUploadToken: DescribeOssUploadTokenResponseOssUploadToken,
|
|
455
465
|
};
|
|
456
466
|
}
|
|
457
467
|
}
|
|
458
|
-
exports.
|
|
459
|
-
class
|
|
468
|
+
exports.DescribeOssUploadTokenResponse = DescribeOssUploadTokenResponse;
|
|
469
|
+
class DescribeVerifyResultRequest extends $tea.Model {
|
|
460
470
|
constructor(map) {
|
|
461
471
|
super(map);
|
|
462
472
|
}
|
|
@@ -464,1156 +474,260 @@ class CreateWhitelistRequest extends $tea.Model {
|
|
|
464
474
|
return {
|
|
465
475
|
bizId: 'BizId',
|
|
466
476
|
bizType: 'BizType',
|
|
467
|
-
idCardNum: 'IdCardNum',
|
|
468
|
-
lang: 'Lang',
|
|
469
|
-
sourceIp: 'SourceIp',
|
|
470
|
-
validDay: 'ValidDay',
|
|
471
477
|
};
|
|
472
478
|
}
|
|
473
479
|
static types() {
|
|
474
480
|
return {
|
|
475
481
|
bizId: 'string',
|
|
476
482
|
bizType: 'string',
|
|
477
|
-
idCardNum: 'string',
|
|
478
|
-
lang: 'string',
|
|
479
|
-
sourceIp: 'string',
|
|
480
|
-
validDay: 'string',
|
|
481
483
|
};
|
|
482
484
|
}
|
|
483
485
|
}
|
|
484
|
-
exports.
|
|
485
|
-
class
|
|
486
|
+
exports.DescribeVerifyResultRequest = DescribeVerifyResultRequest;
|
|
487
|
+
class DescribeVerifyResultResponse extends $tea.Model {
|
|
486
488
|
constructor(map) {
|
|
487
489
|
super(map);
|
|
488
490
|
}
|
|
489
491
|
static names() {
|
|
490
492
|
return {
|
|
493
|
+
authorityComparisionScore: 'AuthorityComparisionScore',
|
|
494
|
+
faceComparisonScore: 'FaceComparisonScore',
|
|
495
|
+
idCardFaceComparisonScore: 'IdCardFaceComparisonScore',
|
|
491
496
|
requestId: 'RequestId',
|
|
497
|
+
verifyStatus: 'VerifyStatus',
|
|
498
|
+
material: 'Material',
|
|
492
499
|
};
|
|
493
500
|
}
|
|
494
501
|
static types() {
|
|
495
502
|
return {
|
|
503
|
+
authorityComparisionScore: 'number',
|
|
504
|
+
faceComparisonScore: 'number',
|
|
505
|
+
idCardFaceComparisonScore: 'number',
|
|
496
506
|
requestId: 'string',
|
|
507
|
+
verifyStatus: 'number',
|
|
508
|
+
material: DescribeVerifyResultResponseMaterial,
|
|
497
509
|
};
|
|
498
510
|
}
|
|
499
511
|
}
|
|
500
|
-
exports.
|
|
501
|
-
class
|
|
512
|
+
exports.DescribeVerifyResultResponse = DescribeVerifyResultResponse;
|
|
513
|
+
class DescribeVerifySDKRequest extends $tea.Model {
|
|
502
514
|
constructor(map) {
|
|
503
515
|
super(map);
|
|
504
516
|
}
|
|
505
517
|
static names() {
|
|
506
518
|
return {
|
|
507
|
-
|
|
508
|
-
certifyId: 'CertifyId',
|
|
509
|
-
lang: 'Lang',
|
|
510
|
-
sceneId: 'SceneId',
|
|
511
|
-
serviceCode: 'ServiceCode',
|
|
512
|
-
sourceIp: 'SourceIp',
|
|
513
|
-
validDay: 'ValidDay',
|
|
519
|
+
taskId: 'TaskId',
|
|
514
520
|
};
|
|
515
521
|
}
|
|
516
522
|
static types() {
|
|
517
523
|
return {
|
|
518
|
-
|
|
519
|
-
certifyId: 'string',
|
|
520
|
-
lang: 'string',
|
|
521
|
-
sceneId: 'number',
|
|
522
|
-
serviceCode: 'string',
|
|
523
|
-
sourceIp: 'string',
|
|
524
|
-
validDay: 'number',
|
|
524
|
+
taskId: 'string',
|
|
525
525
|
};
|
|
526
526
|
}
|
|
527
527
|
}
|
|
528
|
-
exports.
|
|
529
|
-
class
|
|
528
|
+
exports.DescribeVerifySDKRequest = DescribeVerifySDKRequest;
|
|
529
|
+
class DescribeVerifySDKResponse extends $tea.Model {
|
|
530
530
|
constructor(map) {
|
|
531
531
|
super(map);
|
|
532
532
|
}
|
|
533
533
|
static names() {
|
|
534
534
|
return {
|
|
535
535
|
requestId: 'RequestId',
|
|
536
|
-
|
|
536
|
+
sdkUrl: 'SdkUrl',
|
|
537
537
|
};
|
|
538
538
|
}
|
|
539
539
|
static types() {
|
|
540
540
|
return {
|
|
541
541
|
requestId: 'string',
|
|
542
|
-
|
|
542
|
+
sdkUrl: 'string',
|
|
543
543
|
};
|
|
544
544
|
}
|
|
545
545
|
}
|
|
546
|
-
exports.
|
|
547
|
-
class
|
|
546
|
+
exports.DescribeVerifySDKResponse = DescribeVerifySDKResponse;
|
|
547
|
+
class DescribeVerifyTokenRequest extends $tea.Model {
|
|
548
548
|
constructor(map) {
|
|
549
549
|
super(map);
|
|
550
550
|
}
|
|
551
551
|
static names() {
|
|
552
552
|
return {
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
553
|
+
bizId: 'BizId',
|
|
554
|
+
bizType: 'BizType',
|
|
555
|
+
callbackSeed: 'CallbackSeed',
|
|
556
|
+
callbackUrl: 'CallbackUrl',
|
|
557
|
+
faceRetainedImageUrl: 'FaceRetainedImageUrl',
|
|
558
|
+
failedRedirectUrl: 'FailedRedirectUrl',
|
|
559
|
+
idCardBackImageUrl: 'IdCardBackImageUrl',
|
|
560
|
+
idCardFrontImageUrl: 'IdCardFrontImageUrl',
|
|
561
|
+
idCardNumber: 'IdCardNumber',
|
|
562
|
+
name: 'Name',
|
|
563
|
+
passedRedirectUrl: 'PassedRedirectUrl',
|
|
564
|
+
userId: 'UserId',
|
|
565
|
+
userIp: 'UserIp',
|
|
566
|
+
userPhoneNumber: 'UserPhoneNumber',
|
|
567
|
+
userRegistTime: 'UserRegistTime',
|
|
556
568
|
};
|
|
557
569
|
}
|
|
558
570
|
static types() {
|
|
559
571
|
return {
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
572
|
+
bizId: 'string',
|
|
573
|
+
bizType: 'string',
|
|
574
|
+
callbackSeed: 'string',
|
|
575
|
+
callbackUrl: 'string',
|
|
576
|
+
faceRetainedImageUrl: 'string',
|
|
577
|
+
failedRedirectUrl: 'string',
|
|
578
|
+
idCardBackImageUrl: 'string',
|
|
579
|
+
idCardFrontImageUrl: 'string',
|
|
580
|
+
idCardNumber: 'string',
|
|
581
|
+
name: 'string',
|
|
582
|
+
passedRedirectUrl: 'string',
|
|
583
|
+
userId: 'string',
|
|
584
|
+
userIp: 'string',
|
|
585
|
+
userPhoneNumber: 'string',
|
|
586
|
+
userRegistTime: 'number',
|
|
563
587
|
};
|
|
564
588
|
}
|
|
565
589
|
}
|
|
566
|
-
exports.
|
|
567
|
-
class
|
|
590
|
+
exports.DescribeVerifyTokenRequest = DescribeVerifyTokenRequest;
|
|
591
|
+
class DescribeVerifyTokenResponse extends $tea.Model {
|
|
568
592
|
constructor(map) {
|
|
569
593
|
super(map);
|
|
570
594
|
}
|
|
571
595
|
static names() {
|
|
572
596
|
return {
|
|
573
597
|
requestId: 'RequestId',
|
|
598
|
+
verifyPageUrl: 'VerifyPageUrl',
|
|
599
|
+
verifyToken: 'VerifyToken',
|
|
600
|
+
ossUploadToken: 'OssUploadToken',
|
|
574
601
|
};
|
|
575
602
|
}
|
|
576
603
|
static types() {
|
|
577
604
|
return {
|
|
578
605
|
requestId: 'string',
|
|
606
|
+
verifyPageUrl: 'string',
|
|
607
|
+
verifyToken: 'string',
|
|
608
|
+
ossUploadToken: DescribeVerifyTokenResponseOssUploadToken,
|
|
579
609
|
};
|
|
580
610
|
}
|
|
581
611
|
}
|
|
582
|
-
exports.
|
|
583
|
-
class
|
|
612
|
+
exports.DescribeVerifyTokenResponse = DescribeVerifyTokenResponse;
|
|
613
|
+
class DetectFaceAttributesRequest extends $tea.Model {
|
|
584
614
|
constructor(map) {
|
|
585
615
|
super(map);
|
|
586
616
|
}
|
|
587
617
|
static names() {
|
|
588
618
|
return {
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
serviceCode: 'ServiceCode',
|
|
592
|
-
sourceIp: 'SourceIp',
|
|
619
|
+
bizType: 'BizType',
|
|
620
|
+
materialValue: 'MaterialValue',
|
|
593
621
|
};
|
|
594
622
|
}
|
|
595
623
|
static types() {
|
|
596
624
|
return {
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
serviceCode: 'string',
|
|
600
|
-
sourceIp: 'string',
|
|
625
|
+
bizType: 'string',
|
|
626
|
+
materialValue: 'string',
|
|
601
627
|
};
|
|
602
628
|
}
|
|
603
629
|
}
|
|
604
|
-
exports.
|
|
605
|
-
class
|
|
630
|
+
exports.DetectFaceAttributesRequest = DetectFaceAttributesRequest;
|
|
631
|
+
class DetectFaceAttributesResponse extends $tea.Model {
|
|
606
632
|
constructor(map) {
|
|
607
633
|
super(map);
|
|
608
634
|
}
|
|
609
635
|
static names() {
|
|
610
636
|
return {
|
|
637
|
+
code: 'Code',
|
|
638
|
+
message: 'Message',
|
|
611
639
|
requestId: 'RequestId',
|
|
612
|
-
|
|
640
|
+
success: 'Success',
|
|
641
|
+
data: 'Data',
|
|
613
642
|
};
|
|
614
643
|
}
|
|
615
644
|
static types() {
|
|
616
645
|
return {
|
|
646
|
+
code: 'string',
|
|
647
|
+
message: 'string',
|
|
617
648
|
requestId: 'string',
|
|
618
|
-
|
|
649
|
+
success: 'boolean',
|
|
650
|
+
data: DetectFaceAttributesResponseData,
|
|
619
651
|
};
|
|
620
652
|
}
|
|
621
653
|
}
|
|
622
|
-
exports.
|
|
623
|
-
class
|
|
654
|
+
exports.DetectFaceAttributesResponse = DetectFaceAttributesResponse;
|
|
655
|
+
class InitFaceVerifyRequest extends $tea.Model {
|
|
624
656
|
constructor(map) {
|
|
625
657
|
super(map);
|
|
626
658
|
}
|
|
627
659
|
static names() {
|
|
628
660
|
return {
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
661
|
+
authId: 'AuthId',
|
|
662
|
+
callbackToken: 'CallbackToken',
|
|
663
|
+
callbackUrl: 'CallbackUrl',
|
|
664
|
+
certName: 'CertName',
|
|
665
|
+
certNo: 'CertNo',
|
|
666
|
+
certType: 'CertType',
|
|
667
|
+
certifyId: 'CertifyId',
|
|
668
|
+
certifyUrlType: 'CertifyUrlType',
|
|
669
|
+
crop: 'Crop',
|
|
670
|
+
faceContrastPicture: 'FaceContrastPicture',
|
|
671
|
+
faceContrastPictureUrl: 'FaceContrastPictureUrl',
|
|
672
|
+
ip: 'Ip',
|
|
673
|
+
metaInfo: 'MetaInfo',
|
|
674
|
+
mobile: 'Mobile',
|
|
675
|
+
model: 'Model',
|
|
676
|
+
ossBucketName: 'OssBucketName',
|
|
677
|
+
ossObjectName: 'OssObjectName',
|
|
678
|
+
outerOrderNo: 'OuterOrderNo',
|
|
679
|
+
productCode: 'ProductCode',
|
|
680
|
+
returnUrl: 'ReturnUrl',
|
|
681
|
+
sceneId: 'SceneId',
|
|
682
|
+
userId: 'UserId',
|
|
632
683
|
};
|
|
633
684
|
}
|
|
634
685
|
static types() {
|
|
635
686
|
return {
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
687
|
+
authId: 'string',
|
|
688
|
+
callbackToken: 'string',
|
|
689
|
+
callbackUrl: 'string',
|
|
690
|
+
certName: 'string',
|
|
691
|
+
certNo: 'string',
|
|
692
|
+
certType: 'string',
|
|
693
|
+
certifyId: 'string',
|
|
694
|
+
certifyUrlType: 'string',
|
|
695
|
+
crop: 'string',
|
|
696
|
+
faceContrastPicture: 'string',
|
|
697
|
+
faceContrastPictureUrl: 'string',
|
|
698
|
+
ip: 'string',
|
|
699
|
+
metaInfo: 'string',
|
|
700
|
+
mobile: 'string',
|
|
701
|
+
model: 'string',
|
|
702
|
+
ossBucketName: 'string',
|
|
703
|
+
ossObjectName: 'string',
|
|
704
|
+
outerOrderNo: 'string',
|
|
705
|
+
productCode: 'string',
|
|
706
|
+
returnUrl: 'string',
|
|
707
|
+
sceneId: 'number',
|
|
708
|
+
userId: 'string',
|
|
639
709
|
};
|
|
640
710
|
}
|
|
641
711
|
}
|
|
642
|
-
exports.
|
|
643
|
-
class
|
|
712
|
+
exports.InitFaceVerifyRequest = InitFaceVerifyRequest;
|
|
713
|
+
class InitFaceVerifyResponse extends $tea.Model {
|
|
644
714
|
constructor(map) {
|
|
645
715
|
super(map);
|
|
646
716
|
}
|
|
647
717
|
static names() {
|
|
648
718
|
return {
|
|
649
|
-
|
|
650
|
-
|
|
719
|
+
code: 'Code',
|
|
720
|
+
message: 'Message',
|
|
651
721
|
requestId: 'RequestId',
|
|
652
|
-
|
|
653
|
-
appInfoList: 'AppInfoList',
|
|
722
|
+
resultObject: 'ResultObject',
|
|
654
723
|
};
|
|
655
724
|
}
|
|
656
725
|
static types() {
|
|
657
726
|
return {
|
|
658
|
-
|
|
659
|
-
|
|
727
|
+
code: 'string',
|
|
728
|
+
message: 'string',
|
|
660
729
|
requestId: 'string',
|
|
661
|
-
|
|
662
|
-
appInfoList: { 'type': 'array', 'itemType': DescribeAppInfoResponseAppInfoList },
|
|
663
|
-
};
|
|
664
|
-
}
|
|
665
|
-
}
|
|
666
|
-
exports.DescribeAppInfoResponse = DescribeAppInfoResponse;
|
|
667
|
-
class DescribeDeviceInfoRequest extends $tea.Model {
|
|
668
|
-
constructor(map) {
|
|
669
|
-
super(map);
|
|
670
|
-
}
|
|
671
|
-
static names() {
|
|
672
|
-
return {
|
|
673
|
-
bizType: 'BizType',
|
|
674
|
-
currentPage: 'CurrentPage',
|
|
675
|
-
deviceId: 'DeviceId',
|
|
676
|
-
expiredEndDay: 'ExpiredEndDay',
|
|
677
|
-
expiredStartDay: 'ExpiredStartDay',
|
|
678
|
-
pageSize: 'PageSize',
|
|
679
|
-
userDeviceId: 'UserDeviceId',
|
|
680
|
-
};
|
|
681
|
-
}
|
|
682
|
-
static types() {
|
|
683
|
-
return {
|
|
684
|
-
bizType: 'string',
|
|
685
|
-
currentPage: 'number',
|
|
686
|
-
deviceId: 'string',
|
|
687
|
-
expiredEndDay: 'string',
|
|
688
|
-
expiredStartDay: 'string',
|
|
689
|
-
pageSize: 'number',
|
|
690
|
-
userDeviceId: 'string',
|
|
691
|
-
};
|
|
692
|
-
}
|
|
693
|
-
}
|
|
694
|
-
exports.DescribeDeviceInfoRequest = DescribeDeviceInfoRequest;
|
|
695
|
-
class DescribeDeviceInfoResponse extends $tea.Model {
|
|
696
|
-
constructor(map) {
|
|
697
|
-
super(map);
|
|
698
|
-
}
|
|
699
|
-
static names() {
|
|
700
|
-
return {
|
|
701
|
-
currentPage: 'CurrentPage',
|
|
702
|
-
pageSize: 'PageSize',
|
|
703
|
-
requestId: 'RequestId',
|
|
704
|
-
totalCount: 'TotalCount',
|
|
705
|
-
deviceInfoList: 'DeviceInfoList',
|
|
706
|
-
};
|
|
707
|
-
}
|
|
708
|
-
static types() {
|
|
709
|
-
return {
|
|
710
|
-
currentPage: 'number',
|
|
711
|
-
pageSize: 'number',
|
|
712
|
-
requestId: 'string',
|
|
713
|
-
totalCount: 'number',
|
|
714
|
-
deviceInfoList: DescribeDeviceInfoResponseDeviceInfoList,
|
|
715
|
-
};
|
|
716
|
-
}
|
|
717
|
-
}
|
|
718
|
-
exports.DescribeDeviceInfoResponse = DescribeDeviceInfoResponse;
|
|
719
|
-
class DescribeFaceConfigRequest extends $tea.Model {
|
|
720
|
-
constructor(map) {
|
|
721
|
-
super(map);
|
|
722
|
-
}
|
|
723
|
-
static names() {
|
|
724
|
-
return {
|
|
725
|
-
lang: 'Lang',
|
|
726
|
-
sourceIp: 'SourceIp',
|
|
727
|
-
};
|
|
728
|
-
}
|
|
729
|
-
static types() {
|
|
730
|
-
return {
|
|
731
|
-
lang: 'string',
|
|
732
|
-
sourceIp: 'string',
|
|
733
|
-
};
|
|
734
|
-
}
|
|
735
|
-
}
|
|
736
|
-
exports.DescribeFaceConfigRequest = DescribeFaceConfigRequest;
|
|
737
|
-
class DescribeFaceConfigResponse extends $tea.Model {
|
|
738
|
-
constructor(map) {
|
|
739
|
-
super(map);
|
|
740
|
-
}
|
|
741
|
-
static names() {
|
|
742
|
-
return {
|
|
743
|
-
requestId: 'RequestId',
|
|
744
|
-
items: 'Items',
|
|
745
|
-
};
|
|
746
|
-
}
|
|
747
|
-
static types() {
|
|
748
|
-
return {
|
|
749
|
-
requestId: 'string',
|
|
750
|
-
items: { 'type': 'array', 'itemType': DescribeFaceConfigResponseItems },
|
|
751
|
-
};
|
|
752
|
-
}
|
|
753
|
-
}
|
|
754
|
-
exports.DescribeFaceConfigResponse = DescribeFaceConfigResponse;
|
|
755
|
-
class DescribeFaceUsageRequest extends $tea.Model {
|
|
756
|
-
constructor(map) {
|
|
757
|
-
super(map);
|
|
758
|
-
}
|
|
759
|
-
static names() {
|
|
760
|
-
return {
|
|
761
|
-
endDate: 'EndDate',
|
|
762
|
-
startDate: 'StartDate',
|
|
763
|
-
};
|
|
764
|
-
}
|
|
765
|
-
static types() {
|
|
766
|
-
return {
|
|
767
|
-
endDate: 'string',
|
|
768
|
-
startDate: 'string',
|
|
769
|
-
};
|
|
770
|
-
}
|
|
771
|
-
}
|
|
772
|
-
exports.DescribeFaceUsageRequest = DescribeFaceUsageRequest;
|
|
773
|
-
class DescribeFaceUsageResponse extends $tea.Model {
|
|
774
|
-
constructor(map) {
|
|
775
|
-
super(map);
|
|
776
|
-
}
|
|
777
|
-
static names() {
|
|
778
|
-
return {
|
|
779
|
-
requestId: 'RequestId',
|
|
780
|
-
totalCount: 'TotalCount',
|
|
781
|
-
faceUsageList: 'FaceUsageList',
|
|
782
|
-
};
|
|
783
|
-
}
|
|
784
|
-
static types() {
|
|
785
|
-
return {
|
|
786
|
-
requestId: 'string',
|
|
787
|
-
totalCount: 'number',
|
|
788
|
-
faceUsageList: { 'type': 'array', 'itemType': DescribeFaceUsageResponseFaceUsageList },
|
|
789
|
-
};
|
|
790
|
-
}
|
|
791
|
-
}
|
|
792
|
-
exports.DescribeFaceUsageResponse = DescribeFaceUsageResponse;
|
|
793
|
-
class DescribeFaceVerifyRequest extends $tea.Model {
|
|
794
|
-
constructor(map) {
|
|
795
|
-
super(map);
|
|
796
|
-
}
|
|
797
|
-
static names() {
|
|
798
|
-
return {
|
|
799
|
-
certifyId: 'CertifyId',
|
|
800
|
-
pictureReturnType: 'PictureReturnType',
|
|
801
|
-
sceneId: 'SceneId',
|
|
802
|
-
};
|
|
803
|
-
}
|
|
804
|
-
static types() {
|
|
805
|
-
return {
|
|
806
|
-
certifyId: 'string',
|
|
807
|
-
pictureReturnType: 'string',
|
|
808
|
-
sceneId: 'number',
|
|
809
|
-
};
|
|
810
|
-
}
|
|
811
|
-
}
|
|
812
|
-
exports.DescribeFaceVerifyRequest = DescribeFaceVerifyRequest;
|
|
813
|
-
class DescribeFaceVerifyResponse extends $tea.Model {
|
|
814
|
-
constructor(map) {
|
|
815
|
-
super(map);
|
|
816
|
-
}
|
|
817
|
-
static names() {
|
|
818
|
-
return {
|
|
819
|
-
code: 'Code',
|
|
820
|
-
message: 'Message',
|
|
821
|
-
requestId: 'RequestId',
|
|
822
|
-
resultObject: 'ResultObject',
|
|
823
|
-
};
|
|
824
|
-
}
|
|
825
|
-
static types() {
|
|
826
|
-
return {
|
|
827
|
-
code: 'string',
|
|
828
|
-
message: 'string',
|
|
829
|
-
requestId: 'string',
|
|
830
|
-
resultObject: DescribeFaceVerifyResponseResultObject,
|
|
831
|
-
};
|
|
832
|
-
}
|
|
833
|
-
}
|
|
834
|
-
exports.DescribeFaceVerifyResponse = DescribeFaceVerifyResponse;
|
|
835
|
-
class DescribeOssUploadTokenRequest extends $tea.Model {
|
|
836
|
-
static names() {
|
|
837
|
-
return {};
|
|
838
|
-
}
|
|
839
|
-
static types() {
|
|
840
|
-
return {};
|
|
841
|
-
}
|
|
842
|
-
constructor(map) {
|
|
843
|
-
super(map);
|
|
844
|
-
}
|
|
845
|
-
}
|
|
846
|
-
exports.DescribeOssUploadTokenRequest = DescribeOssUploadTokenRequest;
|
|
847
|
-
class DescribeOssUploadTokenResponse extends $tea.Model {
|
|
848
|
-
constructor(map) {
|
|
849
|
-
super(map);
|
|
850
|
-
}
|
|
851
|
-
static names() {
|
|
852
|
-
return {
|
|
853
|
-
requestId: 'RequestId',
|
|
854
|
-
ossUploadToken: 'OssUploadToken',
|
|
855
|
-
};
|
|
856
|
-
}
|
|
857
|
-
static types() {
|
|
858
|
-
return {
|
|
859
|
-
requestId: 'string',
|
|
860
|
-
ossUploadToken: DescribeOssUploadTokenResponseOssUploadToken,
|
|
861
|
-
};
|
|
862
|
-
}
|
|
863
|
-
}
|
|
864
|
-
exports.DescribeOssUploadTokenResponse = DescribeOssUploadTokenResponse;
|
|
865
|
-
class DescribeRPSDKRequest extends $tea.Model {
|
|
866
|
-
constructor(map) {
|
|
867
|
-
super(map);
|
|
868
|
-
}
|
|
869
|
-
static names() {
|
|
870
|
-
return {
|
|
871
|
-
lang: 'Lang',
|
|
872
|
-
sourceIp: 'SourceIp',
|
|
873
|
-
taskId: 'TaskId',
|
|
874
|
-
};
|
|
875
|
-
}
|
|
876
|
-
static types() {
|
|
877
|
-
return {
|
|
878
|
-
lang: 'string',
|
|
879
|
-
sourceIp: 'string',
|
|
880
|
-
taskId: 'string',
|
|
881
|
-
};
|
|
882
|
-
}
|
|
883
|
-
}
|
|
884
|
-
exports.DescribeRPSDKRequest = DescribeRPSDKRequest;
|
|
885
|
-
class DescribeRPSDKResponse extends $tea.Model {
|
|
886
|
-
constructor(map) {
|
|
887
|
-
super(map);
|
|
888
|
-
}
|
|
889
|
-
static names() {
|
|
890
|
-
return {
|
|
891
|
-
requestId: 'RequestId',
|
|
892
|
-
sdkUrl: 'SdkUrl',
|
|
893
|
-
};
|
|
894
|
-
}
|
|
895
|
-
static types() {
|
|
896
|
-
return {
|
|
897
|
-
requestId: 'string',
|
|
898
|
-
sdkUrl: 'string',
|
|
899
|
-
};
|
|
900
|
-
}
|
|
901
|
-
}
|
|
902
|
-
exports.DescribeRPSDKResponse = DescribeRPSDKResponse;
|
|
903
|
-
class DescribeSdkUrlRequest extends $tea.Model {
|
|
904
|
-
constructor(map) {
|
|
905
|
-
super(map);
|
|
906
|
-
}
|
|
907
|
-
static names() {
|
|
908
|
-
return {
|
|
909
|
-
debug: 'Debug',
|
|
910
|
-
id: 'Id',
|
|
911
|
-
};
|
|
912
|
-
}
|
|
913
|
-
static types() {
|
|
914
|
-
return {
|
|
915
|
-
debug: 'boolean',
|
|
916
|
-
id: 'number',
|
|
917
|
-
};
|
|
918
|
-
}
|
|
919
|
-
}
|
|
920
|
-
exports.DescribeSdkUrlRequest = DescribeSdkUrlRequest;
|
|
921
|
-
class DescribeSdkUrlResponse extends $tea.Model {
|
|
922
|
-
constructor(map) {
|
|
923
|
-
super(map);
|
|
924
|
-
}
|
|
925
|
-
static names() {
|
|
926
|
-
return {
|
|
927
|
-
requestId: 'RequestId',
|
|
928
|
-
sdkUrl: 'SdkUrl',
|
|
929
|
-
};
|
|
930
|
-
}
|
|
931
|
-
static types() {
|
|
932
|
-
return {
|
|
933
|
-
requestId: 'string',
|
|
934
|
-
sdkUrl: 'string',
|
|
935
|
-
};
|
|
936
|
-
}
|
|
937
|
-
}
|
|
938
|
-
exports.DescribeSdkUrlResponse = DescribeSdkUrlResponse;
|
|
939
|
-
class DescribeUpdatePackageResultRequest extends $tea.Model {
|
|
940
|
-
constructor(map) {
|
|
941
|
-
super(map);
|
|
942
|
-
}
|
|
943
|
-
static names() {
|
|
944
|
-
return {
|
|
945
|
-
taskId: 'TaskId',
|
|
946
|
-
};
|
|
947
|
-
}
|
|
948
|
-
static types() {
|
|
949
|
-
return {
|
|
950
|
-
taskId: 'string',
|
|
951
|
-
};
|
|
952
|
-
}
|
|
953
|
-
}
|
|
954
|
-
exports.DescribeUpdatePackageResultRequest = DescribeUpdatePackageResultRequest;
|
|
955
|
-
class DescribeUpdatePackageResultResponse extends $tea.Model {
|
|
956
|
-
constructor(map) {
|
|
957
|
-
super(map);
|
|
958
|
-
}
|
|
959
|
-
static names() {
|
|
960
|
-
return {
|
|
961
|
-
requestId: 'RequestId',
|
|
962
|
-
appInfo: 'AppInfo',
|
|
963
|
-
};
|
|
964
|
-
}
|
|
965
|
-
static types() {
|
|
966
|
-
return {
|
|
967
|
-
requestId: 'string',
|
|
968
|
-
appInfo: DescribeUpdatePackageResultResponseAppInfo,
|
|
969
|
-
};
|
|
970
|
-
}
|
|
971
|
-
}
|
|
972
|
-
exports.DescribeUpdatePackageResultResponse = DescribeUpdatePackageResultResponse;
|
|
973
|
-
class DescribeUploadInfoRequest extends $tea.Model {
|
|
974
|
-
constructor(map) {
|
|
975
|
-
super(map);
|
|
976
|
-
}
|
|
977
|
-
static names() {
|
|
978
|
-
return {
|
|
979
|
-
biz: 'Biz',
|
|
980
|
-
};
|
|
981
|
-
}
|
|
982
|
-
static types() {
|
|
983
|
-
return {
|
|
984
|
-
biz: 'string',
|
|
985
|
-
};
|
|
986
|
-
}
|
|
987
|
-
}
|
|
988
|
-
exports.DescribeUploadInfoRequest = DescribeUploadInfoRequest;
|
|
989
|
-
class DescribeUploadInfoResponse extends $tea.Model {
|
|
990
|
-
constructor(map) {
|
|
991
|
-
super(map);
|
|
992
|
-
}
|
|
993
|
-
static names() {
|
|
994
|
-
return {
|
|
995
|
-
accessid: 'Accessid',
|
|
996
|
-
expire: 'Expire',
|
|
997
|
-
folder: 'Folder',
|
|
998
|
-
host: 'Host',
|
|
999
|
-
policy: 'Policy',
|
|
1000
|
-
requestId: 'RequestId',
|
|
1001
|
-
signature: 'Signature',
|
|
1002
|
-
};
|
|
1003
|
-
}
|
|
1004
|
-
static types() {
|
|
1005
|
-
return {
|
|
1006
|
-
accessid: 'string',
|
|
1007
|
-
expire: 'number',
|
|
1008
|
-
folder: 'string',
|
|
1009
|
-
host: 'string',
|
|
1010
|
-
policy: 'string',
|
|
1011
|
-
requestId: 'string',
|
|
1012
|
-
signature: 'string',
|
|
1013
|
-
};
|
|
1014
|
-
}
|
|
1015
|
-
}
|
|
1016
|
-
exports.DescribeUploadInfoResponse = DescribeUploadInfoResponse;
|
|
1017
|
-
class DescribeUserStatusRequest extends $tea.Model {
|
|
1018
|
-
static names() {
|
|
1019
|
-
return {};
|
|
1020
|
-
}
|
|
1021
|
-
static types() {
|
|
1022
|
-
return {};
|
|
1023
|
-
}
|
|
1024
|
-
constructor(map) {
|
|
1025
|
-
super(map);
|
|
1026
|
-
}
|
|
1027
|
-
}
|
|
1028
|
-
exports.DescribeUserStatusRequest = DescribeUserStatusRequest;
|
|
1029
|
-
class DescribeUserStatusResponse extends $tea.Model {
|
|
1030
|
-
constructor(map) {
|
|
1031
|
-
super(map);
|
|
1032
|
-
}
|
|
1033
|
-
static names() {
|
|
1034
|
-
return {
|
|
1035
|
-
enabled: 'Enabled',
|
|
1036
|
-
requestId: 'RequestId',
|
|
1037
|
-
};
|
|
1038
|
-
}
|
|
1039
|
-
static types() {
|
|
1040
|
-
return {
|
|
1041
|
-
enabled: 'boolean',
|
|
1042
|
-
requestId: 'string',
|
|
1043
|
-
};
|
|
1044
|
-
}
|
|
1045
|
-
}
|
|
1046
|
-
exports.DescribeUserStatusResponse = DescribeUserStatusResponse;
|
|
1047
|
-
class DescribeVerifyRecordsRequest extends $tea.Model {
|
|
1048
|
-
constructor(map) {
|
|
1049
|
-
super(map);
|
|
1050
|
-
}
|
|
1051
|
-
static names() {
|
|
1052
|
-
return {
|
|
1053
|
-
bizId: 'BizId',
|
|
1054
|
-
bizType: 'BizType',
|
|
1055
|
-
currentPage: 'CurrentPage',
|
|
1056
|
-
endDate: 'EndDate',
|
|
1057
|
-
idCardNum: 'IdCardNum',
|
|
1058
|
-
pageSize: 'PageSize',
|
|
1059
|
-
queryId: 'QueryId',
|
|
1060
|
-
startDate: 'StartDate',
|
|
1061
|
-
statusList: 'StatusList',
|
|
1062
|
-
totalCount: 'TotalCount',
|
|
1063
|
-
};
|
|
1064
|
-
}
|
|
1065
|
-
static types() {
|
|
1066
|
-
return {
|
|
1067
|
-
bizId: 'string',
|
|
1068
|
-
bizType: 'string',
|
|
1069
|
-
currentPage: 'number',
|
|
1070
|
-
endDate: 'string',
|
|
1071
|
-
idCardNum: 'string',
|
|
1072
|
-
pageSize: 'number',
|
|
1073
|
-
queryId: 'string',
|
|
1074
|
-
startDate: 'string',
|
|
1075
|
-
statusList: 'string',
|
|
1076
|
-
totalCount: 'number',
|
|
1077
|
-
};
|
|
1078
|
-
}
|
|
1079
|
-
}
|
|
1080
|
-
exports.DescribeVerifyRecordsRequest = DescribeVerifyRecordsRequest;
|
|
1081
|
-
class DescribeVerifyRecordsResponse extends $tea.Model {
|
|
1082
|
-
constructor(map) {
|
|
1083
|
-
super(map);
|
|
1084
|
-
}
|
|
1085
|
-
static names() {
|
|
1086
|
-
return {
|
|
1087
|
-
currentPage: 'CurrentPage',
|
|
1088
|
-
pageSize: 'PageSize',
|
|
1089
|
-
queryId: 'QueryId',
|
|
1090
|
-
requestId: 'RequestId',
|
|
1091
|
-
totalCount: 'TotalCount',
|
|
1092
|
-
recordsList: 'RecordsList',
|
|
1093
|
-
};
|
|
1094
|
-
}
|
|
1095
|
-
static types() {
|
|
1096
|
-
return {
|
|
1097
|
-
currentPage: 'number',
|
|
1098
|
-
pageSize: 'number',
|
|
1099
|
-
queryId: 'string',
|
|
1100
|
-
requestId: 'string',
|
|
1101
|
-
totalCount: 'number',
|
|
1102
|
-
recordsList: { 'type': 'array', 'itemType': DescribeVerifyRecordsResponseRecordsList },
|
|
1103
|
-
};
|
|
1104
|
-
}
|
|
1105
|
-
}
|
|
1106
|
-
exports.DescribeVerifyRecordsResponse = DescribeVerifyRecordsResponse;
|
|
1107
|
-
class DescribeVerifyResultRequest extends $tea.Model {
|
|
1108
|
-
constructor(map) {
|
|
1109
|
-
super(map);
|
|
1110
|
-
}
|
|
1111
|
-
static names() {
|
|
1112
|
-
return {
|
|
1113
|
-
bizId: 'BizId',
|
|
1114
|
-
bizType: 'BizType',
|
|
1115
|
-
};
|
|
1116
|
-
}
|
|
1117
|
-
static types() {
|
|
1118
|
-
return {
|
|
1119
|
-
bizId: 'string',
|
|
1120
|
-
bizType: 'string',
|
|
1121
|
-
};
|
|
1122
|
-
}
|
|
1123
|
-
}
|
|
1124
|
-
exports.DescribeVerifyResultRequest = DescribeVerifyResultRequest;
|
|
1125
|
-
class DescribeVerifyResultResponse extends $tea.Model {
|
|
1126
|
-
constructor(map) {
|
|
1127
|
-
super(map);
|
|
1128
|
-
}
|
|
1129
|
-
static names() {
|
|
1130
|
-
return {
|
|
1131
|
-
authorityComparisionScore: 'AuthorityComparisionScore',
|
|
1132
|
-
faceComparisonScore: 'FaceComparisonScore',
|
|
1133
|
-
idCardFaceComparisonScore: 'IdCardFaceComparisonScore',
|
|
1134
|
-
requestId: 'RequestId',
|
|
1135
|
-
verifyStatus: 'VerifyStatus',
|
|
1136
|
-
material: 'Material',
|
|
1137
|
-
};
|
|
1138
|
-
}
|
|
1139
|
-
static types() {
|
|
1140
|
-
return {
|
|
1141
|
-
authorityComparisionScore: 'number',
|
|
1142
|
-
faceComparisonScore: 'number',
|
|
1143
|
-
idCardFaceComparisonScore: 'number',
|
|
1144
|
-
requestId: 'string',
|
|
1145
|
-
verifyStatus: 'number',
|
|
1146
|
-
material: DescribeVerifyResultResponseMaterial,
|
|
1147
|
-
};
|
|
1148
|
-
}
|
|
1149
|
-
}
|
|
1150
|
-
exports.DescribeVerifyResultResponse = DescribeVerifyResultResponse;
|
|
1151
|
-
class DescribeVerifySDKRequest extends $tea.Model {
|
|
1152
|
-
constructor(map) {
|
|
1153
|
-
super(map);
|
|
1154
|
-
}
|
|
1155
|
-
static names() {
|
|
1156
|
-
return {
|
|
1157
|
-
taskId: 'TaskId',
|
|
1158
|
-
};
|
|
1159
|
-
}
|
|
1160
|
-
static types() {
|
|
1161
|
-
return {
|
|
1162
|
-
taskId: 'string',
|
|
1163
|
-
};
|
|
1164
|
-
}
|
|
1165
|
-
}
|
|
1166
|
-
exports.DescribeVerifySDKRequest = DescribeVerifySDKRequest;
|
|
1167
|
-
class DescribeVerifySDKResponse extends $tea.Model {
|
|
1168
|
-
constructor(map) {
|
|
1169
|
-
super(map);
|
|
1170
|
-
}
|
|
1171
|
-
static names() {
|
|
1172
|
-
return {
|
|
1173
|
-
requestId: 'RequestId',
|
|
1174
|
-
sdkUrl: 'SdkUrl',
|
|
1175
|
-
};
|
|
1176
|
-
}
|
|
1177
|
-
static types() {
|
|
1178
|
-
return {
|
|
1179
|
-
requestId: 'string',
|
|
1180
|
-
sdkUrl: 'string',
|
|
1181
|
-
};
|
|
1182
|
-
}
|
|
1183
|
-
}
|
|
1184
|
-
exports.DescribeVerifySDKResponse = DescribeVerifySDKResponse;
|
|
1185
|
-
class DescribeVerifySettingRequest extends $tea.Model {
|
|
1186
|
-
static names() {
|
|
1187
|
-
return {};
|
|
1188
|
-
}
|
|
1189
|
-
static types() {
|
|
1190
|
-
return {};
|
|
1191
|
-
}
|
|
1192
|
-
constructor(map) {
|
|
1193
|
-
super(map);
|
|
1194
|
-
}
|
|
1195
|
-
}
|
|
1196
|
-
exports.DescribeVerifySettingRequest = DescribeVerifySettingRequest;
|
|
1197
|
-
class DescribeVerifySettingResponse extends $tea.Model {
|
|
1198
|
-
constructor(map) {
|
|
1199
|
-
super(map);
|
|
1200
|
-
}
|
|
1201
|
-
static names() {
|
|
1202
|
-
return {
|
|
1203
|
-
requestId: 'RequestId',
|
|
1204
|
-
verifySettingList: 'VerifySettingList',
|
|
1205
|
-
};
|
|
1206
|
-
}
|
|
1207
|
-
static types() {
|
|
1208
|
-
return {
|
|
1209
|
-
requestId: 'string',
|
|
1210
|
-
verifySettingList: { 'type': 'array', 'itemType': DescribeVerifySettingResponseVerifySettingList },
|
|
1211
|
-
};
|
|
1212
|
-
}
|
|
1213
|
-
}
|
|
1214
|
-
exports.DescribeVerifySettingResponse = DescribeVerifySettingResponse;
|
|
1215
|
-
class DescribeVerifyTokenRequest extends $tea.Model {
|
|
1216
|
-
constructor(map) {
|
|
1217
|
-
super(map);
|
|
1218
|
-
}
|
|
1219
|
-
static names() {
|
|
1220
|
-
return {
|
|
1221
|
-
bizId: 'BizId',
|
|
1222
|
-
bizType: 'BizType',
|
|
1223
|
-
callbackSeed: 'CallbackSeed',
|
|
1224
|
-
callbackUrl: 'CallbackUrl',
|
|
1225
|
-
faceRetainedImageUrl: 'FaceRetainedImageUrl',
|
|
1226
|
-
failedRedirectUrl: 'FailedRedirectUrl',
|
|
1227
|
-
idCardBackImageUrl: 'IdCardBackImageUrl',
|
|
1228
|
-
idCardFrontImageUrl: 'IdCardFrontImageUrl',
|
|
1229
|
-
idCardNumber: 'IdCardNumber',
|
|
1230
|
-
name: 'Name',
|
|
1231
|
-
passedRedirectUrl: 'PassedRedirectUrl',
|
|
1232
|
-
userId: 'UserId',
|
|
1233
|
-
userIp: 'UserIp',
|
|
1234
|
-
userPhoneNumber: 'UserPhoneNumber',
|
|
1235
|
-
userRegistTime: 'UserRegistTime',
|
|
1236
|
-
};
|
|
1237
|
-
}
|
|
1238
|
-
static types() {
|
|
1239
|
-
return {
|
|
1240
|
-
bizId: 'string',
|
|
1241
|
-
bizType: 'string',
|
|
1242
|
-
callbackSeed: 'string',
|
|
1243
|
-
callbackUrl: 'string',
|
|
1244
|
-
faceRetainedImageUrl: 'string',
|
|
1245
|
-
failedRedirectUrl: 'string',
|
|
1246
|
-
idCardBackImageUrl: 'string',
|
|
1247
|
-
idCardFrontImageUrl: 'string',
|
|
1248
|
-
idCardNumber: 'string',
|
|
1249
|
-
name: 'string',
|
|
1250
|
-
passedRedirectUrl: 'string',
|
|
1251
|
-
userId: 'string',
|
|
1252
|
-
userIp: 'string',
|
|
1253
|
-
userPhoneNumber: 'string',
|
|
1254
|
-
userRegistTime: 'number',
|
|
1255
|
-
};
|
|
1256
|
-
}
|
|
1257
|
-
}
|
|
1258
|
-
exports.DescribeVerifyTokenRequest = DescribeVerifyTokenRequest;
|
|
1259
|
-
class DescribeVerifyTokenResponse extends $tea.Model {
|
|
1260
|
-
constructor(map) {
|
|
1261
|
-
super(map);
|
|
1262
|
-
}
|
|
1263
|
-
static names() {
|
|
1264
|
-
return {
|
|
1265
|
-
requestId: 'RequestId',
|
|
1266
|
-
verifyPageUrl: 'VerifyPageUrl',
|
|
1267
|
-
verifyToken: 'VerifyToken',
|
|
1268
|
-
ossUploadToken: 'OssUploadToken',
|
|
1269
|
-
};
|
|
1270
|
-
}
|
|
1271
|
-
static types() {
|
|
1272
|
-
return {
|
|
1273
|
-
requestId: 'string',
|
|
1274
|
-
verifyPageUrl: 'string',
|
|
1275
|
-
verifyToken: 'string',
|
|
1276
|
-
ossUploadToken: DescribeVerifyTokenResponseOssUploadToken,
|
|
1277
|
-
};
|
|
1278
|
-
}
|
|
1279
|
-
}
|
|
1280
|
-
exports.DescribeVerifyTokenResponse = DescribeVerifyTokenResponse;
|
|
1281
|
-
class DescribeVerifyUsageRequest extends $tea.Model {
|
|
1282
|
-
constructor(map) {
|
|
1283
|
-
super(map);
|
|
1284
|
-
}
|
|
1285
|
-
static names() {
|
|
1286
|
-
return {
|
|
1287
|
-
bizType: 'BizType',
|
|
1288
|
-
endDate: 'EndDate',
|
|
1289
|
-
startDate: 'StartDate',
|
|
1290
|
-
};
|
|
1291
|
-
}
|
|
1292
|
-
static types() {
|
|
1293
|
-
return {
|
|
1294
|
-
bizType: 'string',
|
|
1295
|
-
endDate: 'string',
|
|
1296
|
-
startDate: 'string',
|
|
1297
|
-
};
|
|
1298
|
-
}
|
|
1299
|
-
}
|
|
1300
|
-
exports.DescribeVerifyUsageRequest = DescribeVerifyUsageRequest;
|
|
1301
|
-
class DescribeVerifyUsageResponse extends $tea.Model {
|
|
1302
|
-
constructor(map) {
|
|
1303
|
-
super(map);
|
|
1304
|
-
}
|
|
1305
|
-
static names() {
|
|
1306
|
-
return {
|
|
1307
|
-
requestId: 'RequestId',
|
|
1308
|
-
totalCount: 'TotalCount',
|
|
1309
|
-
verifyUsageList: 'VerifyUsageList',
|
|
1310
|
-
};
|
|
1311
|
-
}
|
|
1312
|
-
static types() {
|
|
1313
|
-
return {
|
|
1314
|
-
requestId: 'string',
|
|
1315
|
-
totalCount: 'number',
|
|
1316
|
-
verifyUsageList: { 'type': 'array', 'itemType': DescribeVerifyUsageResponseVerifyUsageList },
|
|
1317
|
-
};
|
|
1318
|
-
}
|
|
1319
|
-
}
|
|
1320
|
-
exports.DescribeVerifyUsageResponse = DescribeVerifyUsageResponse;
|
|
1321
|
-
class DescribeWhitelistRequest extends $tea.Model {
|
|
1322
|
-
constructor(map) {
|
|
1323
|
-
super(map);
|
|
1324
|
-
}
|
|
1325
|
-
static names() {
|
|
1326
|
-
return {
|
|
1327
|
-
bizId: 'BizId',
|
|
1328
|
-
bizType: 'BizType',
|
|
1329
|
-
currentPage: 'CurrentPage',
|
|
1330
|
-
idCardNum: 'IdCardNum',
|
|
1331
|
-
lang: 'Lang',
|
|
1332
|
-
pageSize: 'PageSize',
|
|
1333
|
-
sourceIp: 'SourceIp',
|
|
1334
|
-
valid: 'Valid',
|
|
1335
|
-
validEndDate: 'ValidEndDate',
|
|
1336
|
-
validStartDate: 'ValidStartDate',
|
|
1337
|
-
};
|
|
1338
|
-
}
|
|
1339
|
-
static types() {
|
|
1340
|
-
return {
|
|
1341
|
-
bizId: 'string',
|
|
1342
|
-
bizType: 'string',
|
|
1343
|
-
currentPage: 'number',
|
|
1344
|
-
idCardNum: 'string',
|
|
1345
|
-
lang: 'string',
|
|
1346
|
-
pageSize: 'number',
|
|
1347
|
-
sourceIp: 'string',
|
|
1348
|
-
valid: 'string',
|
|
1349
|
-
validEndDate: 'string',
|
|
1350
|
-
validStartDate: 'string',
|
|
1351
|
-
};
|
|
1352
|
-
}
|
|
1353
|
-
}
|
|
1354
|
-
exports.DescribeWhitelistRequest = DescribeWhitelistRequest;
|
|
1355
|
-
class DescribeWhitelistResponse extends $tea.Model {
|
|
1356
|
-
constructor(map) {
|
|
1357
|
-
super(map);
|
|
1358
|
-
}
|
|
1359
|
-
static names() {
|
|
1360
|
-
return {
|
|
1361
|
-
currentPage: 'CurrentPage',
|
|
1362
|
-
pageSize: 'PageSize',
|
|
1363
|
-
requestId: 'RequestId',
|
|
1364
|
-
totalCount: 'TotalCount',
|
|
1365
|
-
items: 'Items',
|
|
1366
|
-
};
|
|
1367
|
-
}
|
|
1368
|
-
static types() {
|
|
1369
|
-
return {
|
|
1370
|
-
currentPage: 'number',
|
|
1371
|
-
pageSize: 'number',
|
|
1372
|
-
requestId: 'string',
|
|
1373
|
-
totalCount: 'number',
|
|
1374
|
-
items: { 'type': 'array', 'itemType': DescribeWhitelistResponseItems },
|
|
1375
|
-
};
|
|
1376
|
-
}
|
|
1377
|
-
}
|
|
1378
|
-
exports.DescribeWhitelistResponse = DescribeWhitelistResponse;
|
|
1379
|
-
class DescribeWhitelistSettingRequest extends $tea.Model {
|
|
1380
|
-
constructor(map) {
|
|
1381
|
-
super(map);
|
|
1382
|
-
}
|
|
1383
|
-
static names() {
|
|
1384
|
-
return {
|
|
1385
|
-
certNo: 'CertNo',
|
|
1386
|
-
certifyId: 'CertifyId',
|
|
1387
|
-
currentPage: 'CurrentPage',
|
|
1388
|
-
lang: 'Lang',
|
|
1389
|
-
pageSize: 'PageSize',
|
|
1390
|
-
sceneId: 'SceneId',
|
|
1391
|
-
serviceCode: 'ServiceCode',
|
|
1392
|
-
sourceIp: 'SourceIp',
|
|
1393
|
-
status: 'Status',
|
|
1394
|
-
validEndDate: 'ValidEndDate',
|
|
1395
|
-
validStartDate: 'ValidStartDate',
|
|
1396
|
-
};
|
|
1397
|
-
}
|
|
1398
|
-
static types() {
|
|
1399
|
-
return {
|
|
1400
|
-
certNo: 'string',
|
|
1401
|
-
certifyId: 'string',
|
|
1402
|
-
currentPage: 'number',
|
|
1403
|
-
lang: 'string',
|
|
1404
|
-
pageSize: 'number',
|
|
1405
|
-
sceneId: 'number',
|
|
1406
|
-
serviceCode: 'string',
|
|
1407
|
-
sourceIp: 'string',
|
|
1408
|
-
status: 'string',
|
|
1409
|
-
validEndDate: 'number',
|
|
1410
|
-
validStartDate: 'number',
|
|
1411
|
-
};
|
|
1412
|
-
}
|
|
1413
|
-
}
|
|
1414
|
-
exports.DescribeWhitelistSettingRequest = DescribeWhitelistSettingRequest;
|
|
1415
|
-
class DescribeWhitelistSettingResponse extends $tea.Model {
|
|
1416
|
-
constructor(map) {
|
|
1417
|
-
super(map);
|
|
1418
|
-
}
|
|
1419
|
-
static names() {
|
|
1420
|
-
return {
|
|
1421
|
-
currentPage: 'CurrentPage',
|
|
1422
|
-
pageSize: 'PageSize',
|
|
1423
|
-
requestId: 'RequestId',
|
|
1424
|
-
totalCount: 'TotalCount',
|
|
1425
|
-
items: 'Items',
|
|
1426
|
-
};
|
|
1427
|
-
}
|
|
1428
|
-
static types() {
|
|
1429
|
-
return {
|
|
1430
|
-
currentPage: 'number',
|
|
1431
|
-
pageSize: 'number',
|
|
1432
|
-
requestId: 'string',
|
|
1433
|
-
totalCount: 'number',
|
|
1434
|
-
items: { 'type': 'array', 'itemType': DescribeWhitelistSettingResponseItems },
|
|
1435
|
-
};
|
|
1436
|
-
}
|
|
1437
|
-
}
|
|
1438
|
-
exports.DescribeWhitelistSettingResponse = DescribeWhitelistSettingResponse;
|
|
1439
|
-
class DetectFaceAttributesRequest extends $tea.Model {
|
|
1440
|
-
constructor(map) {
|
|
1441
|
-
super(map);
|
|
1442
|
-
}
|
|
1443
|
-
static names() {
|
|
1444
|
-
return {
|
|
1445
|
-
bizType: 'BizType',
|
|
1446
|
-
materialValue: 'MaterialValue',
|
|
1447
|
-
};
|
|
1448
|
-
}
|
|
1449
|
-
static types() {
|
|
1450
|
-
return {
|
|
1451
|
-
bizType: 'string',
|
|
1452
|
-
materialValue: 'string',
|
|
1453
|
-
};
|
|
1454
|
-
}
|
|
1455
|
-
}
|
|
1456
|
-
exports.DetectFaceAttributesRequest = DetectFaceAttributesRequest;
|
|
1457
|
-
class DetectFaceAttributesResponse extends $tea.Model {
|
|
1458
|
-
constructor(map) {
|
|
1459
|
-
super(map);
|
|
1460
|
-
}
|
|
1461
|
-
static names() {
|
|
1462
|
-
return {
|
|
1463
|
-
code: 'Code',
|
|
1464
|
-
message: 'Message',
|
|
1465
|
-
requestId: 'RequestId',
|
|
1466
|
-
success: 'Success',
|
|
1467
|
-
data: 'Data',
|
|
1468
|
-
};
|
|
1469
|
-
}
|
|
1470
|
-
static types() {
|
|
1471
|
-
return {
|
|
1472
|
-
code: 'string',
|
|
1473
|
-
message: 'string',
|
|
1474
|
-
requestId: 'string',
|
|
1475
|
-
success: 'boolean',
|
|
1476
|
-
data: DetectFaceAttributesResponseData,
|
|
1477
|
-
};
|
|
1478
|
-
}
|
|
1479
|
-
}
|
|
1480
|
-
exports.DetectFaceAttributesResponse = DetectFaceAttributesResponse;
|
|
1481
|
-
class InitDeviceRequest extends $tea.Model {
|
|
1482
|
-
constructor(map) {
|
|
1483
|
-
super(map);
|
|
1484
|
-
}
|
|
1485
|
-
static names() {
|
|
1486
|
-
return {
|
|
1487
|
-
appVersion: 'AppVersion',
|
|
1488
|
-
bizData: 'BizData',
|
|
1489
|
-
certifyId: 'CertifyId',
|
|
1490
|
-
certifyPrincipal: 'CertifyPrincipal',
|
|
1491
|
-
channel: 'Channel',
|
|
1492
|
-
deviceToken: 'DeviceToken',
|
|
1493
|
-
merchant: 'Merchant',
|
|
1494
|
-
metaInfo: 'MetaInfo',
|
|
1495
|
-
outerOrderNo: 'OuterOrderNo',
|
|
1496
|
-
produceNode: 'ProduceNode',
|
|
1497
|
-
productName: 'ProductName',
|
|
1498
|
-
uaToken: 'UaToken',
|
|
1499
|
-
webUmidToken: 'WebUmidToken',
|
|
1500
|
-
};
|
|
1501
|
-
}
|
|
1502
|
-
static types() {
|
|
1503
|
-
return {
|
|
1504
|
-
appVersion: 'string',
|
|
1505
|
-
bizData: 'string',
|
|
1506
|
-
certifyId: 'string',
|
|
1507
|
-
certifyPrincipal: 'string',
|
|
1508
|
-
channel: 'string',
|
|
1509
|
-
deviceToken: 'string',
|
|
1510
|
-
merchant: 'string',
|
|
1511
|
-
metaInfo: 'string',
|
|
1512
|
-
outerOrderNo: 'string',
|
|
1513
|
-
produceNode: 'string',
|
|
1514
|
-
productName: 'string',
|
|
1515
|
-
uaToken: 'string',
|
|
1516
|
-
webUmidToken: 'string',
|
|
1517
|
-
};
|
|
1518
|
-
}
|
|
1519
|
-
}
|
|
1520
|
-
exports.InitDeviceRequest = InitDeviceRequest;
|
|
1521
|
-
class InitDeviceResponse extends $tea.Model {
|
|
1522
|
-
constructor(map) {
|
|
1523
|
-
super(map);
|
|
1524
|
-
}
|
|
1525
|
-
static names() {
|
|
1526
|
-
return {
|
|
1527
|
-
code: 'Code',
|
|
1528
|
-
message: 'Message',
|
|
1529
|
-
requestId: 'RequestId',
|
|
1530
|
-
resultObject: 'ResultObject',
|
|
1531
|
-
};
|
|
1532
|
-
}
|
|
1533
|
-
static types() {
|
|
1534
|
-
return {
|
|
1535
|
-
code: 'string',
|
|
1536
|
-
message: 'string',
|
|
1537
|
-
requestId: 'string',
|
|
1538
|
-
resultObject: InitDeviceResponseResultObject,
|
|
1539
|
-
};
|
|
1540
|
-
}
|
|
1541
|
-
}
|
|
1542
|
-
exports.InitDeviceResponse = InitDeviceResponse;
|
|
1543
|
-
class InitFaceVerifyRequest extends $tea.Model {
|
|
1544
|
-
constructor(map) {
|
|
1545
|
-
super(map);
|
|
1546
|
-
}
|
|
1547
|
-
static names() {
|
|
1548
|
-
return {
|
|
1549
|
-
callbackToken: 'CallbackToken',
|
|
1550
|
-
callbackUrl: 'CallbackUrl',
|
|
1551
|
-
certName: 'CertName',
|
|
1552
|
-
certNo: 'CertNo',
|
|
1553
|
-
certType: 'CertType',
|
|
1554
|
-
certifyId: 'CertifyId',
|
|
1555
|
-
certifyUrlType: 'CertifyUrlType',
|
|
1556
|
-
crop: 'Crop',
|
|
1557
|
-
faceContrastPicture: 'FaceContrastPicture',
|
|
1558
|
-
faceContrastPictureUrl: 'FaceContrastPictureUrl',
|
|
1559
|
-
ip: 'Ip',
|
|
1560
|
-
metaInfo: 'MetaInfo',
|
|
1561
|
-
mobile: 'Mobile',
|
|
1562
|
-
model: 'Model',
|
|
1563
|
-
ossBucketName: 'OssBucketName',
|
|
1564
|
-
ossObjectName: 'OssObjectName',
|
|
1565
|
-
outerOrderNo: 'OuterOrderNo',
|
|
1566
|
-
productCode: 'ProductCode',
|
|
1567
|
-
returnUrl: 'ReturnUrl',
|
|
1568
|
-
sceneId: 'SceneId',
|
|
1569
|
-
userId: 'UserId',
|
|
1570
|
-
};
|
|
1571
|
-
}
|
|
1572
|
-
static types() {
|
|
1573
|
-
return {
|
|
1574
|
-
callbackToken: 'string',
|
|
1575
|
-
callbackUrl: 'string',
|
|
1576
|
-
certName: 'string',
|
|
1577
|
-
certNo: 'string',
|
|
1578
|
-
certType: 'string',
|
|
1579
|
-
certifyId: 'string',
|
|
1580
|
-
certifyUrlType: 'string',
|
|
1581
|
-
crop: 'string',
|
|
1582
|
-
faceContrastPicture: 'string',
|
|
1583
|
-
faceContrastPictureUrl: 'string',
|
|
1584
|
-
ip: 'string',
|
|
1585
|
-
metaInfo: 'string',
|
|
1586
|
-
mobile: 'string',
|
|
1587
|
-
model: 'string',
|
|
1588
|
-
ossBucketName: 'string',
|
|
1589
|
-
ossObjectName: 'string',
|
|
1590
|
-
outerOrderNo: 'string',
|
|
1591
|
-
productCode: 'string',
|
|
1592
|
-
returnUrl: 'string',
|
|
1593
|
-
sceneId: 'number',
|
|
1594
|
-
userId: 'string',
|
|
1595
|
-
};
|
|
1596
|
-
}
|
|
1597
|
-
}
|
|
1598
|
-
exports.InitFaceVerifyRequest = InitFaceVerifyRequest;
|
|
1599
|
-
class InitFaceVerifyResponse extends $tea.Model {
|
|
1600
|
-
constructor(map) {
|
|
1601
|
-
super(map);
|
|
1602
|
-
}
|
|
1603
|
-
static names() {
|
|
1604
|
-
return {
|
|
1605
|
-
code: 'Code',
|
|
1606
|
-
message: 'Message',
|
|
1607
|
-
requestId: 'RequestId',
|
|
1608
|
-
resultObject: 'ResultObject',
|
|
1609
|
-
};
|
|
1610
|
-
}
|
|
1611
|
-
static types() {
|
|
1612
|
-
return {
|
|
1613
|
-
code: 'string',
|
|
1614
|
-
message: 'string',
|
|
1615
|
-
requestId: 'string',
|
|
1616
|
-
resultObject: InitFaceVerifyResponseResultObject,
|
|
730
|
+
resultObject: InitFaceVerifyResponseResultObject,
|
|
1617
731
|
};
|
|
1618
732
|
}
|
|
1619
733
|
}
|
|
@@ -1642,270 +756,96 @@ class LivenessFaceVerifyRequest extends $tea.Model {
|
|
|
1642
756
|
}
|
|
1643
757
|
static types() {
|
|
1644
758
|
return {
|
|
1645
|
-
certifyId: 'string',
|
|
1646
|
-
crop: 'string',
|
|
1647
|
-
deviceToken: 'string',
|
|
1648
|
-
faceContrastPicture: 'string',
|
|
1649
|
-
faceContrastPictureUrl: 'string',
|
|
1650
|
-
ip: 'string',
|
|
1651
|
-
mobile: 'string',
|
|
1652
|
-
model: 'string',
|
|
1653
|
-
ossBucketName: 'string',
|
|
1654
|
-
ossObjectName: 'string',
|
|
1655
|
-
outerOrderNo: 'string',
|
|
1656
|
-
productCode: 'string',
|
|
1657
|
-
sceneId: 'number',
|
|
1658
|
-
userId: 'string',
|
|
1659
|
-
};
|
|
1660
|
-
}
|
|
1661
|
-
}
|
|
1662
|
-
exports.LivenessFaceVerifyRequest = LivenessFaceVerifyRequest;
|
|
1663
|
-
class LivenessFaceVerifyResponse extends $tea.Model {
|
|
1664
|
-
constructor(map) {
|
|
1665
|
-
super(map);
|
|
1666
|
-
}
|
|
1667
|
-
static names() {
|
|
1668
|
-
return {
|
|
1669
|
-
code: 'Code',
|
|
1670
|
-
message: 'Message',
|
|
1671
|
-
requestId: 'RequestId',
|
|
1672
|
-
resultObject: 'ResultObject',
|
|
1673
|
-
};
|
|
1674
|
-
}
|
|
1675
|
-
static types() {
|
|
1676
|
-
return {
|
|
1677
|
-
code: 'string',
|
|
1678
|
-
message: 'string',
|
|
1679
|
-
requestId: 'string',
|
|
1680
|
-
resultObject: LivenessFaceVerifyResponseResultObject,
|
|
1681
|
-
};
|
|
1682
|
-
}
|
|
1683
|
-
}
|
|
1684
|
-
exports.LivenessFaceVerifyResponse = LivenessFaceVerifyResponse;
|
|
1685
|
-
class ModifyDeviceInfoRequest extends $tea.Model {
|
|
1686
|
-
constructor(map) {
|
|
1687
|
-
super(map);
|
|
1688
|
-
}
|
|
1689
|
-
static names() {
|
|
1690
|
-
return {
|
|
1691
|
-
bizType: 'BizType',
|
|
1692
|
-
deviceId: 'DeviceId',
|
|
1693
|
-
duration: 'Duration',
|
|
1694
|
-
expiredDay: 'ExpiredDay',
|
|
1695
|
-
userDeviceId: 'UserDeviceId',
|
|
1696
|
-
};
|
|
1697
|
-
}
|
|
1698
|
-
static types() {
|
|
1699
|
-
return {
|
|
1700
|
-
bizType: 'string',
|
|
1701
|
-
deviceId: 'string',
|
|
1702
|
-
duration: 'string',
|
|
1703
|
-
expiredDay: 'string',
|
|
1704
|
-
userDeviceId: 'string',
|
|
1705
|
-
};
|
|
1706
|
-
}
|
|
1707
|
-
}
|
|
1708
|
-
exports.ModifyDeviceInfoRequest = ModifyDeviceInfoRequest;
|
|
1709
|
-
class ModifyDeviceInfoResponse extends $tea.Model {
|
|
1710
|
-
constructor(map) {
|
|
1711
|
-
super(map);
|
|
1712
|
-
}
|
|
1713
|
-
static names() {
|
|
1714
|
-
return {
|
|
1715
|
-
beginDay: 'BeginDay',
|
|
1716
|
-
bizType: 'BizType',
|
|
1717
|
-
deviceId: 'DeviceId',
|
|
1718
|
-
expiredDay: 'ExpiredDay',
|
|
1719
|
-
requestId: 'RequestId',
|
|
1720
|
-
userDeviceId: 'UserDeviceId',
|
|
1721
|
-
};
|
|
1722
|
-
}
|
|
1723
|
-
static types() {
|
|
1724
|
-
return {
|
|
1725
|
-
beginDay: 'string',
|
|
1726
|
-
bizType: 'string',
|
|
1727
|
-
deviceId: 'string',
|
|
1728
|
-
expiredDay: 'string',
|
|
1729
|
-
requestId: 'string',
|
|
1730
|
-
userDeviceId: 'string',
|
|
1731
|
-
};
|
|
1732
|
-
}
|
|
1733
|
-
}
|
|
1734
|
-
exports.ModifyDeviceInfoResponse = ModifyDeviceInfoResponse;
|
|
1735
|
-
class UpdateAppPackageRequest extends $tea.Model {
|
|
1736
|
-
constructor(map) {
|
|
1737
|
-
super(map);
|
|
1738
|
-
}
|
|
1739
|
-
static names() {
|
|
1740
|
-
return {
|
|
1741
|
-
debug: 'Debug',
|
|
1742
|
-
id: 'Id',
|
|
1743
|
-
packageUrl: 'PackageUrl',
|
|
1744
|
-
platform: 'Platform',
|
|
1745
|
-
};
|
|
1746
|
-
}
|
|
1747
|
-
static types() {
|
|
1748
|
-
return {
|
|
1749
|
-
debug: 'boolean',
|
|
1750
|
-
id: 'number',
|
|
1751
|
-
packageUrl: 'string',
|
|
1752
|
-
platform: 'string',
|
|
1753
|
-
};
|
|
1754
|
-
}
|
|
1755
|
-
}
|
|
1756
|
-
exports.UpdateAppPackageRequest = UpdateAppPackageRequest;
|
|
1757
|
-
class UpdateAppPackageResponse extends $tea.Model {
|
|
1758
|
-
constructor(map) {
|
|
1759
|
-
super(map);
|
|
1760
|
-
}
|
|
1761
|
-
static names() {
|
|
1762
|
-
return {
|
|
1763
|
-
requestId: 'RequestId',
|
|
1764
|
-
taskId: 'TaskId',
|
|
1765
|
-
};
|
|
1766
|
-
}
|
|
1767
|
-
static types() {
|
|
1768
|
-
return {
|
|
1769
|
-
requestId: 'string',
|
|
1770
|
-
taskId: 'string',
|
|
1771
|
-
};
|
|
1772
|
-
}
|
|
1773
|
-
}
|
|
1774
|
-
exports.UpdateAppPackageResponse = UpdateAppPackageResponse;
|
|
1775
|
-
class UpdateFaceConfigRequest extends $tea.Model {
|
|
1776
|
-
constructor(map) {
|
|
1777
|
-
super(map);
|
|
1778
|
-
}
|
|
1779
|
-
static names() {
|
|
1780
|
-
return {
|
|
1781
|
-
bizName: 'BizName',
|
|
1782
|
-
bizType: 'BizType',
|
|
1783
|
-
lang: 'Lang',
|
|
1784
|
-
sourceIp: 'SourceIp',
|
|
1785
|
-
};
|
|
1786
|
-
}
|
|
1787
|
-
static types() {
|
|
1788
|
-
return {
|
|
1789
|
-
bizName: 'string',
|
|
1790
|
-
bizType: 'string',
|
|
1791
|
-
lang: 'string',
|
|
1792
|
-
sourceIp: 'string',
|
|
1793
|
-
};
|
|
1794
|
-
}
|
|
1795
|
-
}
|
|
1796
|
-
exports.UpdateFaceConfigRequest = UpdateFaceConfigRequest;
|
|
1797
|
-
class UpdateFaceConfigResponse extends $tea.Model {
|
|
1798
|
-
constructor(map) {
|
|
1799
|
-
super(map);
|
|
1800
|
-
}
|
|
1801
|
-
static names() {
|
|
1802
|
-
return {
|
|
1803
|
-
requestId: 'RequestId',
|
|
1804
|
-
};
|
|
1805
|
-
}
|
|
1806
|
-
static types() {
|
|
1807
|
-
return {
|
|
1808
|
-
requestId: 'string',
|
|
1809
|
-
};
|
|
1810
|
-
}
|
|
1811
|
-
}
|
|
1812
|
-
exports.UpdateFaceConfigResponse = UpdateFaceConfigResponse;
|
|
1813
|
-
class UpdateVerifySettingRequest extends $tea.Model {
|
|
1814
|
-
constructor(map) {
|
|
1815
|
-
super(map);
|
|
1816
|
-
}
|
|
1817
|
-
static names() {
|
|
1818
|
-
return {
|
|
1819
|
-
bizName: 'BizName',
|
|
1820
|
-
bizType: 'BizType',
|
|
1821
|
-
guideStep: 'GuideStep',
|
|
1822
|
-
privacyStep: 'PrivacyStep',
|
|
1823
|
-
resultStep: 'ResultStep',
|
|
1824
|
-
solution: 'Solution',
|
|
1825
|
-
};
|
|
1826
|
-
}
|
|
1827
|
-
static types() {
|
|
1828
|
-
return {
|
|
1829
|
-
bizName: 'string',
|
|
1830
|
-
bizType: 'string',
|
|
1831
|
-
guideStep: 'boolean',
|
|
1832
|
-
privacyStep: 'boolean',
|
|
1833
|
-
resultStep: 'boolean',
|
|
1834
|
-
solution: 'string',
|
|
759
|
+
certifyId: 'string',
|
|
760
|
+
crop: 'string',
|
|
761
|
+
deviceToken: 'string',
|
|
762
|
+
faceContrastPicture: 'string',
|
|
763
|
+
faceContrastPictureUrl: 'string',
|
|
764
|
+
ip: 'string',
|
|
765
|
+
mobile: 'string',
|
|
766
|
+
model: 'string',
|
|
767
|
+
ossBucketName: 'string',
|
|
768
|
+
ossObjectName: 'string',
|
|
769
|
+
outerOrderNo: 'string',
|
|
770
|
+
productCode: 'string',
|
|
771
|
+
sceneId: 'number',
|
|
772
|
+
userId: 'string',
|
|
1835
773
|
};
|
|
1836
774
|
}
|
|
1837
775
|
}
|
|
1838
|
-
exports.
|
|
1839
|
-
class
|
|
776
|
+
exports.LivenessFaceVerifyRequest = LivenessFaceVerifyRequest;
|
|
777
|
+
class LivenessFaceVerifyResponse extends $tea.Model {
|
|
1840
778
|
constructor(map) {
|
|
1841
779
|
super(map);
|
|
1842
780
|
}
|
|
1843
781
|
static names() {
|
|
1844
782
|
return {
|
|
1845
|
-
|
|
1846
|
-
|
|
783
|
+
code: 'Code',
|
|
784
|
+
message: 'Message',
|
|
1847
785
|
requestId: 'RequestId',
|
|
1848
|
-
|
|
1849
|
-
stepList: 'StepList',
|
|
786
|
+
resultObject: 'ResultObject',
|
|
1850
787
|
};
|
|
1851
788
|
}
|
|
1852
789
|
static types() {
|
|
1853
790
|
return {
|
|
1854
|
-
|
|
1855
|
-
|
|
791
|
+
code: 'string',
|
|
792
|
+
message: 'string',
|
|
1856
793
|
requestId: 'string',
|
|
1857
|
-
|
|
1858
|
-
stepList: { 'type': 'array', 'itemType': 'string' },
|
|
794
|
+
resultObject: LivenessFaceVerifyResponseResultObject,
|
|
1859
795
|
};
|
|
1860
796
|
}
|
|
1861
797
|
}
|
|
1862
|
-
exports.
|
|
1863
|
-
class
|
|
798
|
+
exports.LivenessFaceVerifyResponse = LivenessFaceVerifyResponse;
|
|
799
|
+
class ModifyDeviceInfoRequest extends $tea.Model {
|
|
1864
800
|
constructor(map) {
|
|
1865
801
|
super(map);
|
|
1866
802
|
}
|
|
1867
803
|
static names() {
|
|
1868
804
|
return {
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
805
|
+
bizType: 'BizType',
|
|
806
|
+
deviceId: 'DeviceId',
|
|
807
|
+
duration: 'Duration',
|
|
808
|
+
expiredDay: 'ExpiredDay',
|
|
809
|
+
userDeviceId: 'UserDeviceId',
|
|
1874
810
|
};
|
|
1875
811
|
}
|
|
1876
812
|
static types() {
|
|
1877
813
|
return {
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
814
|
+
bizType: 'string',
|
|
815
|
+
deviceId: 'string',
|
|
816
|
+
duration: 'string',
|
|
817
|
+
expiredDay: 'string',
|
|
818
|
+
userDeviceId: 'string',
|
|
1883
819
|
};
|
|
1884
820
|
}
|
|
1885
821
|
}
|
|
1886
|
-
exports.
|
|
1887
|
-
class
|
|
822
|
+
exports.ModifyDeviceInfoRequest = ModifyDeviceInfoRequest;
|
|
823
|
+
class ModifyDeviceInfoResponse extends $tea.Model {
|
|
1888
824
|
constructor(map) {
|
|
1889
825
|
super(map);
|
|
1890
826
|
}
|
|
1891
827
|
static names() {
|
|
1892
828
|
return {
|
|
1893
|
-
|
|
1894
|
-
|
|
829
|
+
beginDay: 'BeginDay',
|
|
830
|
+
bizType: 'BizType',
|
|
831
|
+
deviceId: 'DeviceId',
|
|
832
|
+
expiredDay: 'ExpiredDay',
|
|
1895
833
|
requestId: 'RequestId',
|
|
1896
|
-
|
|
834
|
+
userDeviceId: 'UserDeviceId',
|
|
1897
835
|
};
|
|
1898
836
|
}
|
|
1899
837
|
static types() {
|
|
1900
838
|
return {
|
|
1901
|
-
|
|
1902
|
-
|
|
839
|
+
beginDay: 'string',
|
|
840
|
+
bizType: 'string',
|
|
841
|
+
deviceId: 'string',
|
|
842
|
+
expiredDay: 'string',
|
|
1903
843
|
requestId: 'string',
|
|
1904
|
-
|
|
844
|
+
userDeviceId: 'string',
|
|
1905
845
|
};
|
|
1906
846
|
}
|
|
1907
847
|
}
|
|
1908
|
-
exports.
|
|
848
|
+
exports.ModifyDeviceInfoResponse = ModifyDeviceInfoResponse;
|
|
1909
849
|
class VerifyMaterialRequest extends $tea.Model {
|
|
1910
850
|
constructor(map) {
|
|
1911
851
|
super(map);
|
|
@@ -2024,70 +964,6 @@ class ContrastFaceVerifyResponseResultObject extends $tea.Model {
|
|
|
2024
964
|
}
|
|
2025
965
|
}
|
|
2026
966
|
exports.ContrastFaceVerifyResponseResultObject = ContrastFaceVerifyResponseResultObject;
|
|
2027
|
-
class DescribeAppInfoResponseAppInfoListDebugPackageInfo extends $tea.Model {
|
|
2028
|
-
constructor(map) {
|
|
2029
|
-
super(map);
|
|
2030
|
-
}
|
|
2031
|
-
static names() {
|
|
2032
|
-
return {
|
|
2033
|
-
version: 'Version',
|
|
2034
|
-
};
|
|
2035
|
-
}
|
|
2036
|
-
static types() {
|
|
2037
|
-
return {
|
|
2038
|
-
version: 'string',
|
|
2039
|
-
};
|
|
2040
|
-
}
|
|
2041
|
-
}
|
|
2042
|
-
exports.DescribeAppInfoResponseAppInfoListDebugPackageInfo = DescribeAppInfoResponseAppInfoListDebugPackageInfo;
|
|
2043
|
-
class DescribeAppInfoResponseAppInfoListPackageInfo extends $tea.Model {
|
|
2044
|
-
constructor(map) {
|
|
2045
|
-
super(map);
|
|
2046
|
-
}
|
|
2047
|
-
static names() {
|
|
2048
|
-
return {
|
|
2049
|
-
version: 'Version',
|
|
2050
|
-
};
|
|
2051
|
-
}
|
|
2052
|
-
static types() {
|
|
2053
|
-
return {
|
|
2054
|
-
version: 'string',
|
|
2055
|
-
};
|
|
2056
|
-
}
|
|
2057
|
-
}
|
|
2058
|
-
exports.DescribeAppInfoResponseAppInfoListPackageInfo = DescribeAppInfoResponseAppInfoListPackageInfo;
|
|
2059
|
-
class DescribeAppInfoResponseAppInfoList extends $tea.Model {
|
|
2060
|
-
constructor(map) {
|
|
2061
|
-
super(map);
|
|
2062
|
-
}
|
|
2063
|
-
static names() {
|
|
2064
|
-
return {
|
|
2065
|
-
endDate: 'EndDate',
|
|
2066
|
-
icon: 'Icon',
|
|
2067
|
-
id: 'Id',
|
|
2068
|
-
name: 'Name',
|
|
2069
|
-
packageName: 'PackageName',
|
|
2070
|
-
startDate: 'StartDate',
|
|
2071
|
-
type: 'Type',
|
|
2072
|
-
debugPackageInfo: 'DebugPackageInfo',
|
|
2073
|
-
packageInfo: 'PackageInfo',
|
|
2074
|
-
};
|
|
2075
|
-
}
|
|
2076
|
-
static types() {
|
|
2077
|
-
return {
|
|
2078
|
-
endDate: 'string',
|
|
2079
|
-
icon: 'string',
|
|
2080
|
-
id: 'number',
|
|
2081
|
-
name: 'string',
|
|
2082
|
-
packageName: 'string',
|
|
2083
|
-
startDate: 'string',
|
|
2084
|
-
type: 'number',
|
|
2085
|
-
debugPackageInfo: DescribeAppInfoResponseAppInfoListDebugPackageInfo,
|
|
2086
|
-
packageInfo: DescribeAppInfoResponseAppInfoListPackageInfo,
|
|
2087
|
-
};
|
|
2088
|
-
}
|
|
2089
|
-
}
|
|
2090
|
-
exports.DescribeAppInfoResponseAppInfoList = DescribeAppInfoResponseAppInfoList;
|
|
2091
967
|
class DescribeDeviceInfoResponseDeviceInfoListDeviceInfo extends $tea.Model {
|
|
2092
968
|
constructor(map) {
|
|
2093
969
|
super(map);
|
|
@@ -2117,261 +993,69 @@ class DescribeDeviceInfoResponseDeviceInfoList extends $tea.Model {
|
|
|
2117
993
|
super(map);
|
|
2118
994
|
}
|
|
2119
995
|
static names() {
|
|
2120
|
-
return {
|
|
2121
|
-
deviceInfo: 'DeviceInfo',
|
|
2122
|
-
};
|
|
2123
|
-
}
|
|
2124
|
-
static types() {
|
|
2125
|
-
return {
|
|
2126
|
-
deviceInfo: { 'type': 'array', 'itemType': DescribeDeviceInfoResponseDeviceInfoListDeviceInfo },
|
|
2127
|
-
};
|
|
2128
|
-
}
|
|
2129
|
-
}
|
|
2130
|
-
exports.DescribeDeviceInfoResponseDeviceInfoList = DescribeDeviceInfoResponseDeviceInfoList;
|
|
2131
|
-
class DescribeFaceConfigResponseItems extends $tea.Model {
|
|
2132
|
-
constructor(map) {
|
|
2133
|
-
super(map);
|
|
2134
|
-
}
|
|
2135
|
-
static names() {
|
|
2136
|
-
return {
|
|
2137
|
-
bizName: 'BizName',
|
|
2138
|
-
bizType: 'BizType',
|
|
2139
|
-
gmtUpdated: 'GmtUpdated',
|
|
2140
|
-
};
|
|
2141
|
-
}
|
|
2142
|
-
static types() {
|
|
2143
|
-
return {
|
|
2144
|
-
bizName: 'string',
|
|
2145
|
-
bizType: 'string',
|
|
2146
|
-
gmtUpdated: 'number',
|
|
2147
|
-
};
|
|
2148
|
-
}
|
|
2149
|
-
}
|
|
2150
|
-
exports.DescribeFaceConfigResponseItems = DescribeFaceConfigResponseItems;
|
|
2151
|
-
class DescribeFaceUsageResponseFaceUsageList extends $tea.Model {
|
|
2152
|
-
constructor(map) {
|
|
2153
|
-
super(map);
|
|
2154
|
-
}
|
|
2155
|
-
static names() {
|
|
2156
|
-
return {
|
|
2157
|
-
date: 'Date',
|
|
2158
|
-
totalCount: 'TotalCount',
|
|
2159
|
-
};
|
|
2160
|
-
}
|
|
2161
|
-
static types() {
|
|
2162
|
-
return {
|
|
2163
|
-
date: 'string',
|
|
2164
|
-
totalCount: 'number',
|
|
2165
|
-
};
|
|
2166
|
-
}
|
|
2167
|
-
}
|
|
2168
|
-
exports.DescribeFaceUsageResponseFaceUsageList = DescribeFaceUsageResponseFaceUsageList;
|
|
2169
|
-
class DescribeFaceVerifyResponseResultObject extends $tea.Model {
|
|
2170
|
-
constructor(map) {
|
|
2171
|
-
super(map);
|
|
2172
|
-
}
|
|
2173
|
-
static names() {
|
|
2174
|
-
return {
|
|
2175
|
-
deviceToken: 'DeviceToken',
|
|
2176
|
-
identityInfo: 'IdentityInfo',
|
|
2177
|
-
materialInfo: 'MaterialInfo',
|
|
2178
|
-
passed: 'Passed',
|
|
2179
|
-
subCode: 'SubCode',
|
|
2180
|
-
};
|
|
2181
|
-
}
|
|
2182
|
-
static types() {
|
|
2183
|
-
return {
|
|
2184
|
-
deviceToken: 'string',
|
|
2185
|
-
identityInfo: 'string',
|
|
2186
|
-
materialInfo: 'string',
|
|
2187
|
-
passed: 'string',
|
|
2188
|
-
subCode: 'string',
|
|
2189
|
-
};
|
|
2190
|
-
}
|
|
2191
|
-
}
|
|
2192
|
-
exports.DescribeFaceVerifyResponseResultObject = DescribeFaceVerifyResponseResultObject;
|
|
2193
|
-
class DescribeOssUploadTokenResponseOssUploadToken extends $tea.Model {
|
|
2194
|
-
constructor(map) {
|
|
2195
|
-
super(map);
|
|
2196
|
-
}
|
|
2197
|
-
static names() {
|
|
2198
|
-
return {
|
|
2199
|
-
bucket: 'Bucket',
|
|
2200
|
-
endPoint: 'EndPoint',
|
|
2201
|
-
expired: 'Expired',
|
|
2202
|
-
key: 'Key',
|
|
2203
|
-
path: 'Path',
|
|
2204
|
-
secret: 'Secret',
|
|
2205
|
-
token: 'Token',
|
|
2206
|
-
};
|
|
2207
|
-
}
|
|
2208
|
-
static types() {
|
|
2209
|
-
return {
|
|
2210
|
-
bucket: 'string',
|
|
2211
|
-
endPoint: 'string',
|
|
2212
|
-
expired: 'number',
|
|
2213
|
-
key: 'string',
|
|
2214
|
-
path: 'string',
|
|
2215
|
-
secret: 'string',
|
|
2216
|
-
token: 'string',
|
|
2217
|
-
};
|
|
2218
|
-
}
|
|
2219
|
-
}
|
|
2220
|
-
exports.DescribeOssUploadTokenResponseOssUploadToken = DescribeOssUploadTokenResponseOssUploadToken;
|
|
2221
|
-
class DescribeUpdatePackageResultResponseAppInfoDebugPackageInfo extends $tea.Model {
|
|
2222
|
-
constructor(map) {
|
|
2223
|
-
super(map);
|
|
2224
|
-
}
|
|
2225
|
-
static names() {
|
|
2226
|
-
return {
|
|
2227
|
-
version: 'Version',
|
|
2228
|
-
};
|
|
2229
|
-
}
|
|
2230
|
-
static types() {
|
|
2231
|
-
return {
|
|
2232
|
-
version: 'string',
|
|
2233
|
-
};
|
|
2234
|
-
}
|
|
2235
|
-
}
|
|
2236
|
-
exports.DescribeUpdatePackageResultResponseAppInfoDebugPackageInfo = DescribeUpdatePackageResultResponseAppInfoDebugPackageInfo;
|
|
2237
|
-
class DescribeUpdatePackageResultResponseAppInfoPackageInfo extends $tea.Model {
|
|
2238
|
-
constructor(map) {
|
|
2239
|
-
super(map);
|
|
2240
|
-
}
|
|
2241
|
-
static names() {
|
|
2242
|
-
return {
|
|
2243
|
-
version: 'Version',
|
|
2244
|
-
};
|
|
2245
|
-
}
|
|
2246
|
-
static types() {
|
|
2247
|
-
return {
|
|
2248
|
-
version: 'string',
|
|
2249
|
-
};
|
|
2250
|
-
}
|
|
2251
|
-
}
|
|
2252
|
-
exports.DescribeUpdatePackageResultResponseAppInfoPackageInfo = DescribeUpdatePackageResultResponseAppInfoPackageInfo;
|
|
2253
|
-
class DescribeUpdatePackageResultResponseAppInfo extends $tea.Model {
|
|
2254
|
-
constructor(map) {
|
|
2255
|
-
super(map);
|
|
2256
|
-
}
|
|
2257
|
-
static names() {
|
|
2258
|
-
return {
|
|
2259
|
-
endDate: 'EndDate',
|
|
2260
|
-
icon: 'Icon',
|
|
2261
|
-
id: 'Id',
|
|
2262
|
-
name: 'Name',
|
|
2263
|
-
packageName: 'PackageName',
|
|
2264
|
-
startDate: 'StartDate',
|
|
2265
|
-
type: 'Type',
|
|
2266
|
-
debugPackageInfo: 'DebugPackageInfo',
|
|
2267
|
-
packageInfo: 'PackageInfo',
|
|
2268
|
-
};
|
|
2269
|
-
}
|
|
2270
|
-
static types() {
|
|
2271
|
-
return {
|
|
2272
|
-
endDate: 'string',
|
|
2273
|
-
icon: 'string',
|
|
2274
|
-
id: 'number',
|
|
2275
|
-
name: 'string',
|
|
2276
|
-
packageName: 'string',
|
|
2277
|
-
startDate: 'string',
|
|
2278
|
-
type: 'number',
|
|
2279
|
-
debugPackageInfo: DescribeUpdatePackageResultResponseAppInfoDebugPackageInfo,
|
|
2280
|
-
packageInfo: DescribeUpdatePackageResultResponseAppInfoPackageInfo,
|
|
2281
|
-
};
|
|
2282
|
-
}
|
|
2283
|
-
}
|
|
2284
|
-
exports.DescribeUpdatePackageResultResponseAppInfo = DescribeUpdatePackageResultResponseAppInfo;
|
|
2285
|
-
class DescribeVerifyRecordsResponseRecordsListMaterialIdCardInfo extends $tea.Model {
|
|
2286
|
-
constructor(map) {
|
|
2287
|
-
super(map);
|
|
2288
|
-
}
|
|
2289
|
-
static names() {
|
|
2290
|
-
return {
|
|
2291
|
-
address: 'Address',
|
|
2292
|
-
authority: 'Authority',
|
|
2293
|
-
backImageUrl: 'BackImageUrl',
|
|
2294
|
-
birth: 'Birth',
|
|
2295
|
-
endDate: 'EndDate',
|
|
2296
|
-
frontImageUrl: 'FrontImageUrl',
|
|
2297
|
-
name: 'Name',
|
|
2298
|
-
nationality: 'Nationality',
|
|
2299
|
-
number: 'Number',
|
|
2300
|
-
sex: 'Sex',
|
|
2301
|
-
startDate: 'StartDate',
|
|
996
|
+
return {
|
|
997
|
+
deviceInfo: 'DeviceInfo',
|
|
2302
998
|
};
|
|
2303
999
|
}
|
|
2304
1000
|
static types() {
|
|
2305
1001
|
return {
|
|
2306
|
-
|
|
2307
|
-
authority: 'string',
|
|
2308
|
-
backImageUrl: 'string',
|
|
2309
|
-
birth: 'string',
|
|
2310
|
-
endDate: 'string',
|
|
2311
|
-
frontImageUrl: 'string',
|
|
2312
|
-
name: 'string',
|
|
2313
|
-
nationality: 'string',
|
|
2314
|
-
number: 'string',
|
|
2315
|
-
sex: 'string',
|
|
2316
|
-
startDate: 'string',
|
|
1002
|
+
deviceInfo: { 'type': 'array', 'itemType': DescribeDeviceInfoResponseDeviceInfoListDeviceInfo },
|
|
2317
1003
|
};
|
|
2318
1004
|
}
|
|
2319
1005
|
}
|
|
2320
|
-
exports.
|
|
2321
|
-
class
|
|
1006
|
+
exports.DescribeDeviceInfoResponseDeviceInfoList = DescribeDeviceInfoResponseDeviceInfoList;
|
|
1007
|
+
class DescribeFaceVerifyResponseResultObject extends $tea.Model {
|
|
2322
1008
|
constructor(map) {
|
|
2323
1009
|
super(map);
|
|
2324
1010
|
}
|
|
2325
1011
|
static names() {
|
|
2326
1012
|
return {
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
1013
|
+
deviceToken: 'DeviceToken',
|
|
1014
|
+
identityInfo: 'IdentityInfo',
|
|
1015
|
+
materialInfo: 'MaterialInfo',
|
|
1016
|
+
passed: 'Passed',
|
|
1017
|
+
subCode: 'SubCode',
|
|
2331
1018
|
};
|
|
2332
1019
|
}
|
|
2333
1020
|
static types() {
|
|
2334
1021
|
return {
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
1022
|
+
deviceToken: 'string',
|
|
1023
|
+
identityInfo: 'string',
|
|
1024
|
+
materialInfo: 'string',
|
|
1025
|
+
passed: 'string',
|
|
1026
|
+
subCode: 'string',
|
|
2339
1027
|
};
|
|
2340
1028
|
}
|
|
2341
1029
|
}
|
|
2342
|
-
exports.
|
|
2343
|
-
class
|
|
1030
|
+
exports.DescribeFaceVerifyResponseResultObject = DescribeFaceVerifyResponseResultObject;
|
|
1031
|
+
class DescribeOssUploadTokenResponseOssUploadToken extends $tea.Model {
|
|
2344
1032
|
constructor(map) {
|
|
2345
1033
|
super(map);
|
|
2346
1034
|
}
|
|
2347
1035
|
static names() {
|
|
2348
1036
|
return {
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
verifyId: 'VerifyId',
|
|
2357
|
-
material: 'Material',
|
|
1037
|
+
bucket: 'Bucket',
|
|
1038
|
+
endPoint: 'EndPoint',
|
|
1039
|
+
expired: 'Expired',
|
|
1040
|
+
key: 'Key',
|
|
1041
|
+
path: 'Path',
|
|
1042
|
+
secret: 'Secret',
|
|
1043
|
+
token: 'Token',
|
|
2358
1044
|
};
|
|
2359
1045
|
}
|
|
2360
1046
|
static types() {
|
|
2361
1047
|
return {
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
verifyId: 'string',
|
|
2370
|
-
material: DescribeVerifyRecordsResponseRecordsListMaterial,
|
|
1048
|
+
bucket: 'string',
|
|
1049
|
+
endPoint: 'string',
|
|
1050
|
+
expired: 'number',
|
|
1051
|
+
key: 'string',
|
|
1052
|
+
path: 'string',
|
|
1053
|
+
secret: 'string',
|
|
1054
|
+
token: 'string',
|
|
2371
1055
|
};
|
|
2372
1056
|
}
|
|
2373
1057
|
}
|
|
2374
|
-
exports.
|
|
1058
|
+
exports.DescribeOssUploadTokenResponseOssUploadToken = DescribeOssUploadTokenResponseOssUploadToken;
|
|
2375
1059
|
class DescribeVerifyResultResponseMaterialIdCardInfo extends $tea.Model {
|
|
2376
1060
|
constructor(map) {
|
|
2377
1061
|
super(map);
|
|
@@ -2436,28 +1120,6 @@ class DescribeVerifyResultResponseMaterial extends $tea.Model {
|
|
|
2436
1120
|
}
|
|
2437
1121
|
}
|
|
2438
1122
|
exports.DescribeVerifyResultResponseMaterial = DescribeVerifyResultResponseMaterial;
|
|
2439
|
-
class DescribeVerifySettingResponseVerifySettingList extends $tea.Model {
|
|
2440
|
-
constructor(map) {
|
|
2441
|
-
super(map);
|
|
2442
|
-
}
|
|
2443
|
-
static names() {
|
|
2444
|
-
return {
|
|
2445
|
-
bizName: 'BizName',
|
|
2446
|
-
bizType: 'BizType',
|
|
2447
|
-
solution: 'Solution',
|
|
2448
|
-
stepList: 'StepList',
|
|
2449
|
-
};
|
|
2450
|
-
}
|
|
2451
|
-
static types() {
|
|
2452
|
-
return {
|
|
2453
|
-
bizName: 'string',
|
|
2454
|
-
bizType: 'string',
|
|
2455
|
-
solution: 'string',
|
|
2456
|
-
stepList: { 'type': 'array', 'itemType': 'string' },
|
|
2457
|
-
};
|
|
2458
|
-
}
|
|
2459
|
-
}
|
|
2460
|
-
exports.DescribeVerifySettingResponseVerifySettingList = DescribeVerifySettingResponseVerifySettingList;
|
|
2461
1123
|
class DescribeVerifyTokenResponseOssUploadToken extends $tea.Model {
|
|
2462
1124
|
constructor(map) {
|
|
2463
1125
|
super(map);
|
|
@@ -2486,96 +1148,6 @@ class DescribeVerifyTokenResponseOssUploadToken extends $tea.Model {
|
|
|
2486
1148
|
}
|
|
2487
1149
|
}
|
|
2488
1150
|
exports.DescribeVerifyTokenResponseOssUploadToken = DescribeVerifyTokenResponseOssUploadToken;
|
|
2489
|
-
class DescribeVerifyUsageResponseVerifyUsageList extends $tea.Model {
|
|
2490
|
-
constructor(map) {
|
|
2491
|
-
super(map);
|
|
2492
|
-
}
|
|
2493
|
-
static names() {
|
|
2494
|
-
return {
|
|
2495
|
-
bizType: 'BizType',
|
|
2496
|
-
date: 'Date',
|
|
2497
|
-
failCount: 'FailCount',
|
|
2498
|
-
passCount: 'PassCount',
|
|
2499
|
-
totalCount: 'TotalCount',
|
|
2500
|
-
};
|
|
2501
|
-
}
|
|
2502
|
-
static types() {
|
|
2503
|
-
return {
|
|
2504
|
-
bizType: 'string',
|
|
2505
|
-
date: 'string',
|
|
2506
|
-
failCount: 'number',
|
|
2507
|
-
passCount: 'number',
|
|
2508
|
-
totalCount: 'number',
|
|
2509
|
-
};
|
|
2510
|
-
}
|
|
2511
|
-
}
|
|
2512
|
-
exports.DescribeVerifyUsageResponseVerifyUsageList = DescribeVerifyUsageResponseVerifyUsageList;
|
|
2513
|
-
class DescribeWhitelistResponseItems extends $tea.Model {
|
|
2514
|
-
constructor(map) {
|
|
2515
|
-
super(map);
|
|
2516
|
-
}
|
|
2517
|
-
static names() {
|
|
2518
|
-
return {
|
|
2519
|
-
bizId: 'BizId',
|
|
2520
|
-
bizType: 'BizType',
|
|
2521
|
-
endDate: 'EndDate',
|
|
2522
|
-
gmtCreate: 'GmtCreate',
|
|
2523
|
-
gmtModified: 'GmtModified',
|
|
2524
|
-
id: 'Id',
|
|
2525
|
-
idCardNum: 'IdCardNum',
|
|
2526
|
-
startDate: 'StartDate',
|
|
2527
|
-
uid: 'Uid',
|
|
2528
|
-
valid: 'Valid',
|
|
2529
|
-
};
|
|
2530
|
-
}
|
|
2531
|
-
static types() {
|
|
2532
|
-
return {
|
|
2533
|
-
bizId: 'string',
|
|
2534
|
-
bizType: 'string',
|
|
2535
|
-
endDate: 'number',
|
|
2536
|
-
gmtCreate: 'number',
|
|
2537
|
-
gmtModified: 'number',
|
|
2538
|
-
id: 'number',
|
|
2539
|
-
idCardNum: 'string',
|
|
2540
|
-
startDate: 'number',
|
|
2541
|
-
uid: 'number',
|
|
2542
|
-
valid: 'number',
|
|
2543
|
-
};
|
|
2544
|
-
}
|
|
2545
|
-
}
|
|
2546
|
-
exports.DescribeWhitelistResponseItems = DescribeWhitelistResponseItems;
|
|
2547
|
-
class DescribeWhitelistSettingResponseItems extends $tea.Model {
|
|
2548
|
-
constructor(map) {
|
|
2549
|
-
super(map);
|
|
2550
|
-
}
|
|
2551
|
-
static names() {
|
|
2552
|
-
return {
|
|
2553
|
-
certNo: 'CertNo',
|
|
2554
|
-
certifyId: 'CertifyId',
|
|
2555
|
-
gmtCreate: 'GmtCreate',
|
|
2556
|
-
gmtModified: 'GmtModified',
|
|
2557
|
-
id: 'Id',
|
|
2558
|
-
sceneId: 'SceneId',
|
|
2559
|
-
status: 'Status',
|
|
2560
|
-
validEndDate: 'ValidEndDate',
|
|
2561
|
-
validStartDate: 'ValidStartDate',
|
|
2562
|
-
};
|
|
2563
|
-
}
|
|
2564
|
-
static types() {
|
|
2565
|
-
return {
|
|
2566
|
-
certNo: 'string',
|
|
2567
|
-
certifyId: 'string',
|
|
2568
|
-
gmtCreate: 'string',
|
|
2569
|
-
gmtModified: 'string',
|
|
2570
|
-
id: 'number',
|
|
2571
|
-
sceneId: 'number',
|
|
2572
|
-
status: 'string',
|
|
2573
|
-
validEndDate: 'string',
|
|
2574
|
-
validStartDate: 'string',
|
|
2575
|
-
};
|
|
2576
|
-
}
|
|
2577
|
-
}
|
|
2578
|
-
exports.DescribeWhitelistSettingResponseItems = DescribeWhitelistSettingResponseItems;
|
|
2579
1151
|
class DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfoFaceAttributesHeadpose extends $tea.Model {
|
|
2580
1152
|
constructor(map) {
|
|
2581
1153
|
super(map);
|
|
@@ -2720,50 +1292,6 @@ class DetectFaceAttributesResponseData extends $tea.Model {
|
|
|
2720
1292
|
}
|
|
2721
1293
|
}
|
|
2722
1294
|
exports.DetectFaceAttributesResponseData = DetectFaceAttributesResponseData;
|
|
2723
|
-
class InitDeviceResponseResultObject extends $tea.Model {
|
|
2724
|
-
constructor(map) {
|
|
2725
|
-
super(map);
|
|
2726
|
-
}
|
|
2727
|
-
static names() {
|
|
2728
|
-
return {
|
|
2729
|
-
accessKeyId: 'AccessKeyId',
|
|
2730
|
-
accessKeySecret: 'AccessKeySecret',
|
|
2731
|
-
bucketName: 'BucketName',
|
|
2732
|
-
certifyId: 'CertifyId',
|
|
2733
|
-
extParams: 'ExtParams',
|
|
2734
|
-
fileName: 'FileName',
|
|
2735
|
-
fileNamePrefix: 'FileNamePrefix',
|
|
2736
|
-
message: 'Message',
|
|
2737
|
-
ossEndPoint: 'OssEndPoint',
|
|
2738
|
-
presignedUrl: 'PresignedUrl',
|
|
2739
|
-
protocol: 'Protocol',
|
|
2740
|
-
retCode: 'RetCode',
|
|
2741
|
-
retCodeSub: 'RetCodeSub',
|
|
2742
|
-
retMessageSub: 'RetMessageSub',
|
|
2743
|
-
securityToken: 'SecurityToken',
|
|
2744
|
-
};
|
|
2745
|
-
}
|
|
2746
|
-
static types() {
|
|
2747
|
-
return {
|
|
2748
|
-
accessKeyId: 'string',
|
|
2749
|
-
accessKeySecret: 'string',
|
|
2750
|
-
bucketName: 'string',
|
|
2751
|
-
certifyId: 'string',
|
|
2752
|
-
extParams: 'string',
|
|
2753
|
-
fileName: 'string',
|
|
2754
|
-
fileNamePrefix: 'string',
|
|
2755
|
-
message: 'string',
|
|
2756
|
-
ossEndPoint: 'string',
|
|
2757
|
-
presignedUrl: 'string',
|
|
2758
|
-
protocol: 'string',
|
|
2759
|
-
retCode: 'string',
|
|
2760
|
-
retCodeSub: 'string',
|
|
2761
|
-
retMessageSub: 'string',
|
|
2762
|
-
securityToken: 'string',
|
|
2763
|
-
};
|
|
2764
|
-
}
|
|
2765
|
-
}
|
|
2766
|
-
exports.InitDeviceResponseResultObject = InitDeviceResponseResultObject;
|
|
2767
1295
|
class InitFaceVerifyResponseResultObject extends $tea.Model {
|
|
2768
1296
|
constructor(map) {
|
|
2769
1297
|
super(map);
|
|
@@ -2804,32 +1332,6 @@ class LivenessFaceVerifyResponseResultObject extends $tea.Model {
|
|
|
2804
1332
|
}
|
|
2805
1333
|
}
|
|
2806
1334
|
exports.LivenessFaceVerifyResponseResultObject = LivenessFaceVerifyResponseResultObject;
|
|
2807
|
-
class VerifyDeviceResponseResultObject extends $tea.Model {
|
|
2808
|
-
constructor(map) {
|
|
2809
|
-
super(map);
|
|
2810
|
-
}
|
|
2811
|
-
static names() {
|
|
2812
|
-
return {
|
|
2813
|
-
extParams: 'ExtParams',
|
|
2814
|
-
hasNext: 'HasNext',
|
|
2815
|
-
productRetCode: 'ProductRetCode',
|
|
2816
|
-
retCodeSub: 'RetCodeSub',
|
|
2817
|
-
retMessageSub: 'RetMessageSub',
|
|
2818
|
-
validationRetCode: 'ValidationRetCode',
|
|
2819
|
-
};
|
|
2820
|
-
}
|
|
2821
|
-
static types() {
|
|
2822
|
-
return {
|
|
2823
|
-
extParams: 'string',
|
|
2824
|
-
hasNext: 'string',
|
|
2825
|
-
productRetCode: 'string',
|
|
2826
|
-
retCodeSub: 'string',
|
|
2827
|
-
retMessageSub: 'string',
|
|
2828
|
-
validationRetCode: 'string',
|
|
2829
|
-
};
|
|
2830
|
-
}
|
|
2831
|
-
}
|
|
2832
|
-
exports.VerifyDeviceResponseResultObject = VerifyDeviceResponseResultObject;
|
|
2833
1335
|
class VerifyMaterialResponseMaterialIdCardInfo extends $tea.Model {
|
|
2834
1336
|
constructor(map) {
|
|
2835
1337
|
super(map);
|
|
@@ -3001,30 +1503,6 @@ class Client extends rpc_client_1.default {
|
|
|
3001
1503
|
let runtime = new $Util.RuntimeOptions({});
|
|
3002
1504
|
return await this.createAuthKey(request, runtime);
|
|
3003
1505
|
}
|
|
3004
|
-
async createFaceConfig(request, runtime) {
|
|
3005
|
-
tea_util_1.default.validateModel(request);
|
|
3006
|
-
return $tea.cast(await this.doRequest("CreateFaceConfig", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new CreateFaceConfigResponse({}));
|
|
3007
|
-
}
|
|
3008
|
-
async createFaceConfigSimply(request) {
|
|
3009
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3010
|
-
return await this.createFaceConfig(request, runtime);
|
|
3011
|
-
}
|
|
3012
|
-
async createRPSDK(request, runtime) {
|
|
3013
|
-
tea_util_1.default.validateModel(request);
|
|
3014
|
-
return $tea.cast(await this.doRequest("CreateRPSDK", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new CreateRPSDKResponse({}));
|
|
3015
|
-
}
|
|
3016
|
-
async createRPSDKSimply(request) {
|
|
3017
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3018
|
-
return await this.createRPSDK(request, runtime);
|
|
3019
|
-
}
|
|
3020
|
-
async createVerifySDK(request, runtime) {
|
|
3021
|
-
tea_util_1.default.validateModel(request);
|
|
3022
|
-
return $tea.cast(await this.doRequest("CreateVerifySDK", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new CreateVerifySDKResponse({}));
|
|
3023
|
-
}
|
|
3024
|
-
async createVerifySDKSimply(request) {
|
|
3025
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3026
|
-
return await this.createVerifySDK(request, runtime);
|
|
3027
|
-
}
|
|
3028
1506
|
async createVerifySetting(request, runtime) {
|
|
3029
1507
|
tea_util_1.default.validateModel(request);
|
|
3030
1508
|
return $tea.cast(await this.doRequest("CreateVerifySetting", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new CreateVerifySettingResponse({}));
|
|
@@ -3033,46 +1511,6 @@ class Client extends rpc_client_1.default {
|
|
|
3033
1511
|
let runtime = new $Util.RuntimeOptions({});
|
|
3034
1512
|
return await this.createVerifySetting(request, runtime);
|
|
3035
1513
|
}
|
|
3036
|
-
async createWhitelist(request, runtime) {
|
|
3037
|
-
tea_util_1.default.validateModel(request);
|
|
3038
|
-
return $tea.cast(await this.doRequest("CreateWhitelist", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new CreateWhitelistResponse({}));
|
|
3039
|
-
}
|
|
3040
|
-
async createWhitelistSimply(request) {
|
|
3041
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3042
|
-
return await this.createWhitelist(request, runtime);
|
|
3043
|
-
}
|
|
3044
|
-
async createWhitelistSetting(request, runtime) {
|
|
3045
|
-
tea_util_1.default.validateModel(request);
|
|
3046
|
-
return $tea.cast(await this.doRequest("CreateWhitelistSetting", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new CreateWhitelistSettingResponse({}));
|
|
3047
|
-
}
|
|
3048
|
-
async createWhitelistSettingSimply(request) {
|
|
3049
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3050
|
-
return await this.createWhitelistSetting(request, runtime);
|
|
3051
|
-
}
|
|
3052
|
-
async deleteWhitelist(request, runtime) {
|
|
3053
|
-
tea_util_1.default.validateModel(request);
|
|
3054
|
-
return $tea.cast(await this.doRequest("DeleteWhitelist", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DeleteWhitelistResponse({}));
|
|
3055
|
-
}
|
|
3056
|
-
async deleteWhitelistSimply(request) {
|
|
3057
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3058
|
-
return await this.deleteWhitelist(request, runtime);
|
|
3059
|
-
}
|
|
3060
|
-
async deleteWhitelistSetting(request, runtime) {
|
|
3061
|
-
tea_util_1.default.validateModel(request);
|
|
3062
|
-
return $tea.cast(await this.doRequest("DeleteWhitelistSetting", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DeleteWhitelistSettingResponse({}));
|
|
3063
|
-
}
|
|
3064
|
-
async deleteWhitelistSettingSimply(request) {
|
|
3065
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3066
|
-
return await this.deleteWhitelistSetting(request, runtime);
|
|
3067
|
-
}
|
|
3068
|
-
async describeAppInfo(request, runtime) {
|
|
3069
|
-
tea_util_1.default.validateModel(request);
|
|
3070
|
-
return $tea.cast(await this.doRequest("DescribeAppInfo", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeAppInfoResponse({}));
|
|
3071
|
-
}
|
|
3072
|
-
async describeAppInfoSimply(request) {
|
|
3073
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3074
|
-
return await this.describeAppInfo(request, runtime);
|
|
3075
|
-
}
|
|
3076
1514
|
async describeDeviceInfo(request, runtime) {
|
|
3077
1515
|
tea_util_1.default.validateModel(request);
|
|
3078
1516
|
return $tea.cast(await this.doRequest("DescribeDeviceInfo", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeDeviceInfoResponse({}));
|
|
@@ -3081,22 +1519,6 @@ class Client extends rpc_client_1.default {
|
|
|
3081
1519
|
let runtime = new $Util.RuntimeOptions({});
|
|
3082
1520
|
return await this.describeDeviceInfo(request, runtime);
|
|
3083
1521
|
}
|
|
3084
|
-
async describeFaceConfig(request, runtime) {
|
|
3085
|
-
tea_util_1.default.validateModel(request);
|
|
3086
|
-
return $tea.cast(await this.doRequest("DescribeFaceConfig", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeFaceConfigResponse({}));
|
|
3087
|
-
}
|
|
3088
|
-
async describeFaceConfigSimply(request) {
|
|
3089
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3090
|
-
return await this.describeFaceConfig(request, runtime);
|
|
3091
|
-
}
|
|
3092
|
-
async describeFaceUsage(request, runtime) {
|
|
3093
|
-
tea_util_1.default.validateModel(request);
|
|
3094
|
-
return $tea.cast(await this.doRequest("DescribeFaceUsage", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeFaceUsageResponse({}));
|
|
3095
|
-
}
|
|
3096
|
-
async describeFaceUsageSimply(request) {
|
|
3097
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3098
|
-
return await this.describeFaceUsage(request, runtime);
|
|
3099
|
-
}
|
|
3100
1522
|
async describeFaceVerify(request, runtime) {
|
|
3101
1523
|
tea_util_1.default.validateModel(request);
|
|
3102
1524
|
return $tea.cast(await this.doRequest("DescribeFaceVerify", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeFaceVerifyResponse({}));
|
|
@@ -3113,54 +1535,6 @@ class Client extends rpc_client_1.default {
|
|
|
3113
1535
|
let runtime = new $Util.RuntimeOptions({});
|
|
3114
1536
|
return await this.describeOssUploadToken(request, runtime);
|
|
3115
1537
|
}
|
|
3116
|
-
async describeRPSDK(request, runtime) {
|
|
3117
|
-
tea_util_1.default.validateModel(request);
|
|
3118
|
-
return $tea.cast(await this.doRequest("DescribeRPSDK", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeRPSDKResponse({}));
|
|
3119
|
-
}
|
|
3120
|
-
async describeRPSDKSimply(request) {
|
|
3121
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3122
|
-
return await this.describeRPSDK(request, runtime);
|
|
3123
|
-
}
|
|
3124
|
-
async describeSdkUrl(request, runtime) {
|
|
3125
|
-
tea_util_1.default.validateModel(request);
|
|
3126
|
-
return $tea.cast(await this.doRequest("DescribeSdkUrl", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeSdkUrlResponse({}));
|
|
3127
|
-
}
|
|
3128
|
-
async describeSdkUrlSimply(request) {
|
|
3129
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3130
|
-
return await this.describeSdkUrl(request, runtime);
|
|
3131
|
-
}
|
|
3132
|
-
async describeUpdatePackageResult(request, runtime) {
|
|
3133
|
-
tea_util_1.default.validateModel(request);
|
|
3134
|
-
return $tea.cast(await this.doRequest("DescribeUpdatePackageResult", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeUpdatePackageResultResponse({}));
|
|
3135
|
-
}
|
|
3136
|
-
async describeUpdatePackageResultSimply(request) {
|
|
3137
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3138
|
-
return await this.describeUpdatePackageResult(request, runtime);
|
|
3139
|
-
}
|
|
3140
|
-
async describeUploadInfo(request, runtime) {
|
|
3141
|
-
tea_util_1.default.validateModel(request);
|
|
3142
|
-
return $tea.cast(await this.doRequest("DescribeUploadInfo", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeUploadInfoResponse({}));
|
|
3143
|
-
}
|
|
3144
|
-
async describeUploadInfoSimply(request) {
|
|
3145
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3146
|
-
return await this.describeUploadInfo(request, runtime);
|
|
3147
|
-
}
|
|
3148
|
-
async describeUserStatus(request, runtime) {
|
|
3149
|
-
tea_util_1.default.validateModel(request);
|
|
3150
|
-
return $tea.cast(await this.doRequest("DescribeUserStatus", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeUserStatusResponse({}));
|
|
3151
|
-
}
|
|
3152
|
-
async describeUserStatusSimply(request) {
|
|
3153
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3154
|
-
return await this.describeUserStatus(request, runtime);
|
|
3155
|
-
}
|
|
3156
|
-
async describeVerifyRecords(request, runtime) {
|
|
3157
|
-
tea_util_1.default.validateModel(request);
|
|
3158
|
-
return $tea.cast(await this.doRequest("DescribeVerifyRecords", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeVerifyRecordsResponse({}));
|
|
3159
|
-
}
|
|
3160
|
-
async describeVerifyRecordsSimply(request) {
|
|
3161
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3162
|
-
return await this.describeVerifyRecords(request, runtime);
|
|
3163
|
-
}
|
|
3164
1538
|
async describeVerifyResult(request, runtime) {
|
|
3165
1539
|
tea_util_1.default.validateModel(request);
|
|
3166
1540
|
return $tea.cast(await this.doRequest("DescribeVerifyResult", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeVerifyResultResponse({}));
|
|
@@ -3177,14 +1551,6 @@ class Client extends rpc_client_1.default {
|
|
|
3177
1551
|
let runtime = new $Util.RuntimeOptions({});
|
|
3178
1552
|
return await this.describeVerifySDK(request, runtime);
|
|
3179
1553
|
}
|
|
3180
|
-
async describeVerifySetting(request, runtime) {
|
|
3181
|
-
tea_util_1.default.validateModel(request);
|
|
3182
|
-
return $tea.cast(await this.doRequest("DescribeVerifySetting", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeVerifySettingResponse({}));
|
|
3183
|
-
}
|
|
3184
|
-
async describeVerifySettingSimply(request) {
|
|
3185
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3186
|
-
return await this.describeVerifySetting(request, runtime);
|
|
3187
|
-
}
|
|
3188
1554
|
async describeVerifyToken(request, runtime) {
|
|
3189
1555
|
tea_util_1.default.validateModel(request);
|
|
3190
1556
|
return $tea.cast(await this.doRequest("DescribeVerifyToken", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeVerifyTokenResponse({}));
|
|
@@ -3193,30 +1559,6 @@ class Client extends rpc_client_1.default {
|
|
|
3193
1559
|
let runtime = new $Util.RuntimeOptions({});
|
|
3194
1560
|
return await this.describeVerifyToken(request, runtime);
|
|
3195
1561
|
}
|
|
3196
|
-
async describeVerifyUsage(request, runtime) {
|
|
3197
|
-
tea_util_1.default.validateModel(request);
|
|
3198
|
-
return $tea.cast(await this.doRequest("DescribeVerifyUsage", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeVerifyUsageResponse({}));
|
|
3199
|
-
}
|
|
3200
|
-
async describeVerifyUsageSimply(request) {
|
|
3201
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3202
|
-
return await this.describeVerifyUsage(request, runtime);
|
|
3203
|
-
}
|
|
3204
|
-
async describeWhitelist(request, runtime) {
|
|
3205
|
-
tea_util_1.default.validateModel(request);
|
|
3206
|
-
return $tea.cast(await this.doRequest("DescribeWhitelist", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeWhitelistResponse({}));
|
|
3207
|
-
}
|
|
3208
|
-
async describeWhitelistSimply(request) {
|
|
3209
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3210
|
-
return await this.describeWhitelist(request, runtime);
|
|
3211
|
-
}
|
|
3212
|
-
async describeWhitelistSetting(request, runtime) {
|
|
3213
|
-
tea_util_1.default.validateModel(request);
|
|
3214
|
-
return $tea.cast(await this.doRequest("DescribeWhitelistSetting", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeWhitelistSettingResponse({}));
|
|
3215
|
-
}
|
|
3216
|
-
async describeWhitelistSettingSimply(request) {
|
|
3217
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3218
|
-
return await this.describeWhitelistSetting(request, runtime);
|
|
3219
|
-
}
|
|
3220
1562
|
async detectFaceAttributes(request, runtime) {
|
|
3221
1563
|
tea_util_1.default.validateModel(request);
|
|
3222
1564
|
return $tea.cast(await this.doRequest("DetectFaceAttributes", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DetectFaceAttributesResponse({}));
|
|
@@ -3225,14 +1567,6 @@ class Client extends rpc_client_1.default {
|
|
|
3225
1567
|
let runtime = new $Util.RuntimeOptions({});
|
|
3226
1568
|
return await this.detectFaceAttributes(request, runtime);
|
|
3227
1569
|
}
|
|
3228
|
-
async initDevice(request, runtime) {
|
|
3229
|
-
tea_util_1.default.validateModel(request);
|
|
3230
|
-
return $tea.cast(await this.doRequest("InitDevice", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new InitDeviceResponse({}));
|
|
3231
|
-
}
|
|
3232
|
-
async initDeviceSimply(request) {
|
|
3233
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3234
|
-
return await this.initDevice(request, runtime);
|
|
3235
|
-
}
|
|
3236
1570
|
async initFaceVerify(request, runtime) {
|
|
3237
1571
|
tea_util_1.default.validateModel(request);
|
|
3238
1572
|
return $tea.cast(await this.doRequest("InitFaceVerify", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new InitFaceVerifyResponse({}));
|
|
@@ -3257,38 +1591,6 @@ class Client extends rpc_client_1.default {
|
|
|
3257
1591
|
let runtime = new $Util.RuntimeOptions({});
|
|
3258
1592
|
return await this.modifyDeviceInfo(request, runtime);
|
|
3259
1593
|
}
|
|
3260
|
-
async updateAppPackage(request, runtime) {
|
|
3261
|
-
tea_util_1.default.validateModel(request);
|
|
3262
|
-
return $tea.cast(await this.doRequest("UpdateAppPackage", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new UpdateAppPackageResponse({}));
|
|
3263
|
-
}
|
|
3264
|
-
async updateAppPackageSimply(request) {
|
|
3265
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3266
|
-
return await this.updateAppPackage(request, runtime);
|
|
3267
|
-
}
|
|
3268
|
-
async updateFaceConfig(request, runtime) {
|
|
3269
|
-
tea_util_1.default.validateModel(request);
|
|
3270
|
-
return $tea.cast(await this.doRequest("UpdateFaceConfig", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new UpdateFaceConfigResponse({}));
|
|
3271
|
-
}
|
|
3272
|
-
async updateFaceConfigSimply(request) {
|
|
3273
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3274
|
-
return await this.updateFaceConfig(request, runtime);
|
|
3275
|
-
}
|
|
3276
|
-
async updateVerifySetting(request, runtime) {
|
|
3277
|
-
tea_util_1.default.validateModel(request);
|
|
3278
|
-
return $tea.cast(await this.doRequest("UpdateVerifySetting", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new UpdateVerifySettingResponse({}));
|
|
3279
|
-
}
|
|
3280
|
-
async updateVerifySettingSimply(request) {
|
|
3281
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3282
|
-
return await this.updateVerifySetting(request, runtime);
|
|
3283
|
-
}
|
|
3284
|
-
async verifyDevice(request, runtime) {
|
|
3285
|
-
tea_util_1.default.validateModel(request);
|
|
3286
|
-
return $tea.cast(await this.doRequest("VerifyDevice", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new VerifyDeviceResponse({}));
|
|
3287
|
-
}
|
|
3288
|
-
async verifyDeviceSimply(request) {
|
|
3289
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3290
|
-
return await this.verifyDevice(request, runtime);
|
|
3291
|
-
}
|
|
3292
1594
|
async verifyMaterial(request, runtime) {
|
|
3293
1595
|
tea_util_1.default.validateModel(request);
|
|
3294
1596
|
return $tea.cast(await this.doRequest("VerifyMaterial", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new VerifyMaterialResponse({}));
|