@alicloud/cloudauth20190307 3.2.0 → 3.4.0
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 +408 -36
- package/dist/client.js +571 -41
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +796 -92
package/src/client.ts
CHANGED
|
@@ -2772,10 +2772,10 @@ export class DetectFaceAttributesResponse extends $tea.Model {
|
|
|
2772
2772
|
}
|
|
2773
2773
|
}
|
|
2774
2774
|
|
|
2775
|
-
export class
|
|
2775
|
+
export class Id2MetaPeriodVerifyRequest extends $tea.Model {
|
|
2776
2776
|
/**
|
|
2777
2777
|
* @example
|
|
2778
|
-
*
|
|
2778
|
+
* 4****************1
|
|
2779
2779
|
*/
|
|
2780
2780
|
identifyNum?: string;
|
|
2781
2781
|
/**
|
|
@@ -2784,6 +2784,214 @@ export class Id2MetaVerifyRequest extends $tea.Model {
|
|
|
2784
2784
|
*/
|
|
2785
2785
|
paramType?: string;
|
|
2786
2786
|
userName?: string;
|
|
2787
|
+
/**
|
|
2788
|
+
* @example
|
|
2789
|
+
* 20301001
|
|
2790
|
+
*/
|
|
2791
|
+
validityEndDate?: string;
|
|
2792
|
+
/**
|
|
2793
|
+
* @example
|
|
2794
|
+
* 20201001
|
|
2795
|
+
*/
|
|
2796
|
+
validityStartDate?: string;
|
|
2797
|
+
static names(): { [key: string]: string } {
|
|
2798
|
+
return {
|
|
2799
|
+
identifyNum: 'IdentifyNum',
|
|
2800
|
+
paramType: 'ParamType',
|
|
2801
|
+
userName: 'UserName',
|
|
2802
|
+
validityEndDate: 'ValidityEndDate',
|
|
2803
|
+
validityStartDate: 'ValidityStartDate',
|
|
2804
|
+
};
|
|
2805
|
+
}
|
|
2806
|
+
|
|
2807
|
+
static types(): { [key: string]: any } {
|
|
2808
|
+
return {
|
|
2809
|
+
identifyNum: 'string',
|
|
2810
|
+
paramType: 'string',
|
|
2811
|
+
userName: 'string',
|
|
2812
|
+
validityEndDate: 'string',
|
|
2813
|
+
validityStartDate: 'string',
|
|
2814
|
+
};
|
|
2815
|
+
}
|
|
2816
|
+
|
|
2817
|
+
constructor(map?: { [key: string]: any }) {
|
|
2818
|
+
super(map);
|
|
2819
|
+
}
|
|
2820
|
+
}
|
|
2821
|
+
|
|
2822
|
+
export class Id2MetaPeriodVerifyResponseBody extends $tea.Model {
|
|
2823
|
+
/**
|
|
2824
|
+
* @example
|
|
2825
|
+
* 200
|
|
2826
|
+
*/
|
|
2827
|
+
code?: string;
|
|
2828
|
+
/**
|
|
2829
|
+
* @example
|
|
2830
|
+
* success
|
|
2831
|
+
*/
|
|
2832
|
+
message?: string;
|
|
2833
|
+
/**
|
|
2834
|
+
* @remarks
|
|
2835
|
+
* Id of the request
|
|
2836
|
+
*
|
|
2837
|
+
* @example
|
|
2838
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
2839
|
+
*/
|
|
2840
|
+
requestId?: string;
|
|
2841
|
+
resultObject?: Id2MetaPeriodVerifyResponseBodyResultObject;
|
|
2842
|
+
static names(): { [key: string]: string } {
|
|
2843
|
+
return {
|
|
2844
|
+
code: 'Code',
|
|
2845
|
+
message: 'Message',
|
|
2846
|
+
requestId: 'RequestId',
|
|
2847
|
+
resultObject: 'ResultObject',
|
|
2848
|
+
};
|
|
2849
|
+
}
|
|
2850
|
+
|
|
2851
|
+
static types(): { [key: string]: any } {
|
|
2852
|
+
return {
|
|
2853
|
+
code: 'string',
|
|
2854
|
+
message: 'string',
|
|
2855
|
+
requestId: 'string',
|
|
2856
|
+
resultObject: Id2MetaPeriodVerifyResponseBodyResultObject,
|
|
2857
|
+
};
|
|
2858
|
+
}
|
|
2859
|
+
|
|
2860
|
+
constructor(map?: { [key: string]: any }) {
|
|
2861
|
+
super(map);
|
|
2862
|
+
}
|
|
2863
|
+
}
|
|
2864
|
+
|
|
2865
|
+
export class Id2MetaPeriodVerifyResponse extends $tea.Model {
|
|
2866
|
+
headers?: { [key: string]: string };
|
|
2867
|
+
statusCode?: number;
|
|
2868
|
+
body?: Id2MetaPeriodVerifyResponseBody;
|
|
2869
|
+
static names(): { [key: string]: string } {
|
|
2870
|
+
return {
|
|
2871
|
+
headers: 'headers',
|
|
2872
|
+
statusCode: 'statusCode',
|
|
2873
|
+
body: 'body',
|
|
2874
|
+
};
|
|
2875
|
+
}
|
|
2876
|
+
|
|
2877
|
+
static types(): { [key: string]: any } {
|
|
2878
|
+
return {
|
|
2879
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2880
|
+
statusCode: 'number',
|
|
2881
|
+
body: Id2MetaPeriodVerifyResponseBody,
|
|
2882
|
+
};
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2885
|
+
constructor(map?: { [key: string]: any }) {
|
|
2886
|
+
super(map);
|
|
2887
|
+
}
|
|
2888
|
+
}
|
|
2889
|
+
|
|
2890
|
+
export class Id2MetaStandardVerifyRequest extends $tea.Model {
|
|
2891
|
+
/**
|
|
2892
|
+
* @example
|
|
2893
|
+
* 4****************1
|
|
2894
|
+
*/
|
|
2895
|
+
identifyNum?: string;
|
|
2896
|
+
/**
|
|
2897
|
+
* @example
|
|
2898
|
+
* normal
|
|
2899
|
+
*/
|
|
2900
|
+
paramType?: string;
|
|
2901
|
+
userName?: string;
|
|
2902
|
+
static names(): { [key: string]: string } {
|
|
2903
|
+
return {
|
|
2904
|
+
identifyNum: 'IdentifyNum',
|
|
2905
|
+
paramType: 'ParamType',
|
|
2906
|
+
userName: 'UserName',
|
|
2907
|
+
};
|
|
2908
|
+
}
|
|
2909
|
+
|
|
2910
|
+
static types(): { [key: string]: any } {
|
|
2911
|
+
return {
|
|
2912
|
+
identifyNum: 'string',
|
|
2913
|
+
paramType: 'string',
|
|
2914
|
+
userName: 'string',
|
|
2915
|
+
};
|
|
2916
|
+
}
|
|
2917
|
+
|
|
2918
|
+
constructor(map?: { [key: string]: any }) {
|
|
2919
|
+
super(map);
|
|
2920
|
+
}
|
|
2921
|
+
}
|
|
2922
|
+
|
|
2923
|
+
export class Id2MetaStandardVerifyResponseBody extends $tea.Model {
|
|
2924
|
+
/**
|
|
2925
|
+
* @example
|
|
2926
|
+
* 200
|
|
2927
|
+
*/
|
|
2928
|
+
code?: string;
|
|
2929
|
+
/**
|
|
2930
|
+
* @example
|
|
2931
|
+
* success
|
|
2932
|
+
*/
|
|
2933
|
+
message?: string;
|
|
2934
|
+
/**
|
|
2935
|
+
* @remarks
|
|
2936
|
+
* Id of the request
|
|
2937
|
+
*
|
|
2938
|
+
* @example
|
|
2939
|
+
* D6163397-15C5-419C-9ACC-B7C83E0B4C10
|
|
2940
|
+
*/
|
|
2941
|
+
requestId?: string;
|
|
2942
|
+
resultObject?: Id2MetaStandardVerifyResponseBodyResultObject;
|
|
2943
|
+
static names(): { [key: string]: string } {
|
|
2944
|
+
return {
|
|
2945
|
+
code: 'Code',
|
|
2946
|
+
message: 'Message',
|
|
2947
|
+
requestId: 'RequestId',
|
|
2948
|
+
resultObject: 'ResultObject',
|
|
2949
|
+
};
|
|
2950
|
+
}
|
|
2951
|
+
|
|
2952
|
+
static types(): { [key: string]: any } {
|
|
2953
|
+
return {
|
|
2954
|
+
code: 'string',
|
|
2955
|
+
message: 'string',
|
|
2956
|
+
requestId: 'string',
|
|
2957
|
+
resultObject: Id2MetaStandardVerifyResponseBodyResultObject,
|
|
2958
|
+
};
|
|
2959
|
+
}
|
|
2960
|
+
|
|
2961
|
+
constructor(map?: { [key: string]: any }) {
|
|
2962
|
+
super(map);
|
|
2963
|
+
}
|
|
2964
|
+
}
|
|
2965
|
+
|
|
2966
|
+
export class Id2MetaStandardVerifyResponse extends $tea.Model {
|
|
2967
|
+
headers?: { [key: string]: string };
|
|
2968
|
+
statusCode?: number;
|
|
2969
|
+
body?: Id2MetaStandardVerifyResponseBody;
|
|
2970
|
+
static names(): { [key: string]: string } {
|
|
2971
|
+
return {
|
|
2972
|
+
headers: 'headers',
|
|
2973
|
+
statusCode: 'statusCode',
|
|
2974
|
+
body: 'body',
|
|
2975
|
+
};
|
|
2976
|
+
}
|
|
2977
|
+
|
|
2978
|
+
static types(): { [key: string]: any } {
|
|
2979
|
+
return {
|
|
2980
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2981
|
+
statusCode: 'number',
|
|
2982
|
+
body: Id2MetaStandardVerifyResponseBody,
|
|
2983
|
+
};
|
|
2984
|
+
}
|
|
2985
|
+
|
|
2986
|
+
constructor(map?: { [key: string]: any }) {
|
|
2987
|
+
super(map);
|
|
2988
|
+
}
|
|
2989
|
+
}
|
|
2990
|
+
|
|
2991
|
+
export class Id2MetaVerifyRequest extends $tea.Model {
|
|
2992
|
+
identifyNum?: string;
|
|
2993
|
+
paramType?: string;
|
|
2994
|
+
userName?: string;
|
|
2787
2995
|
static names(): { [key: string]: string } {
|
|
2788
2996
|
return {
|
|
2789
2997
|
identifyNum: 'IdentifyNum',
|
|
@@ -3367,15 +3575,15 @@ export class LivenessFaceVerifyResponse extends $tea.Model {
|
|
|
3367
3575
|
}
|
|
3368
3576
|
}
|
|
3369
3577
|
|
|
3370
|
-
export class
|
|
3578
|
+
export class Mobile3MetaDetailStandardVerifyRequest extends $tea.Model {
|
|
3371
3579
|
/**
|
|
3372
3580
|
* @example
|
|
3373
|
-
*
|
|
3581
|
+
* 429001********8211
|
|
3374
3582
|
*/
|
|
3375
3583
|
identifyNum?: string;
|
|
3376
3584
|
/**
|
|
3377
3585
|
* @example
|
|
3378
|
-
*
|
|
3586
|
+
* 138********
|
|
3379
3587
|
*/
|
|
3380
3588
|
mobile?: string;
|
|
3381
3589
|
/**
|
|
@@ -3407,6 +3615,102 @@ export class Mobile3MetaDetailVerifyRequest extends $tea.Model {
|
|
|
3407
3615
|
}
|
|
3408
3616
|
}
|
|
3409
3617
|
|
|
3618
|
+
export class Mobile3MetaDetailStandardVerifyResponseBody extends $tea.Model {
|
|
3619
|
+
/**
|
|
3620
|
+
* @example
|
|
3621
|
+
* 200
|
|
3622
|
+
*/
|
|
3623
|
+
code?: string;
|
|
3624
|
+
/**
|
|
3625
|
+
* @example
|
|
3626
|
+
* success
|
|
3627
|
+
*/
|
|
3628
|
+
message?: string;
|
|
3629
|
+
/**
|
|
3630
|
+
* @remarks
|
|
3631
|
+
* Id of the request
|
|
3632
|
+
*
|
|
3633
|
+
* @example
|
|
3634
|
+
* 8FC3D6AC-9FED-4311-8DA7-C4BF47D9F260
|
|
3635
|
+
*/
|
|
3636
|
+
requestId?: string;
|
|
3637
|
+
resultObject?: Mobile3MetaDetailStandardVerifyResponseBodyResultObject;
|
|
3638
|
+
static names(): { [key: string]: string } {
|
|
3639
|
+
return {
|
|
3640
|
+
code: 'Code',
|
|
3641
|
+
message: 'Message',
|
|
3642
|
+
requestId: 'RequestId',
|
|
3643
|
+
resultObject: 'ResultObject',
|
|
3644
|
+
};
|
|
3645
|
+
}
|
|
3646
|
+
|
|
3647
|
+
static types(): { [key: string]: any } {
|
|
3648
|
+
return {
|
|
3649
|
+
code: 'string',
|
|
3650
|
+
message: 'string',
|
|
3651
|
+
requestId: 'string',
|
|
3652
|
+
resultObject: Mobile3MetaDetailStandardVerifyResponseBodyResultObject,
|
|
3653
|
+
};
|
|
3654
|
+
}
|
|
3655
|
+
|
|
3656
|
+
constructor(map?: { [key: string]: any }) {
|
|
3657
|
+
super(map);
|
|
3658
|
+
}
|
|
3659
|
+
}
|
|
3660
|
+
|
|
3661
|
+
export class Mobile3MetaDetailStandardVerifyResponse extends $tea.Model {
|
|
3662
|
+
headers?: { [key: string]: string };
|
|
3663
|
+
statusCode?: number;
|
|
3664
|
+
body?: Mobile3MetaDetailStandardVerifyResponseBody;
|
|
3665
|
+
static names(): { [key: string]: string } {
|
|
3666
|
+
return {
|
|
3667
|
+
headers: 'headers',
|
|
3668
|
+
statusCode: 'statusCode',
|
|
3669
|
+
body: 'body',
|
|
3670
|
+
};
|
|
3671
|
+
}
|
|
3672
|
+
|
|
3673
|
+
static types(): { [key: string]: any } {
|
|
3674
|
+
return {
|
|
3675
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3676
|
+
statusCode: 'number',
|
|
3677
|
+
body: Mobile3MetaDetailStandardVerifyResponseBody,
|
|
3678
|
+
};
|
|
3679
|
+
}
|
|
3680
|
+
|
|
3681
|
+
constructor(map?: { [key: string]: any }) {
|
|
3682
|
+
super(map);
|
|
3683
|
+
}
|
|
3684
|
+
}
|
|
3685
|
+
|
|
3686
|
+
export class Mobile3MetaDetailVerifyRequest extends $tea.Model {
|
|
3687
|
+
identifyNum?: string;
|
|
3688
|
+
mobile?: string;
|
|
3689
|
+
paramType?: string;
|
|
3690
|
+
userName?: string;
|
|
3691
|
+
static names(): { [key: string]: string } {
|
|
3692
|
+
return {
|
|
3693
|
+
identifyNum: 'IdentifyNum',
|
|
3694
|
+
mobile: 'Mobile',
|
|
3695
|
+
paramType: 'ParamType',
|
|
3696
|
+
userName: 'UserName',
|
|
3697
|
+
};
|
|
3698
|
+
}
|
|
3699
|
+
|
|
3700
|
+
static types(): { [key: string]: any } {
|
|
3701
|
+
return {
|
|
3702
|
+
identifyNum: 'string',
|
|
3703
|
+
mobile: 'string',
|
|
3704
|
+
paramType: 'string',
|
|
3705
|
+
userName: 'string',
|
|
3706
|
+
};
|
|
3707
|
+
}
|
|
3708
|
+
|
|
3709
|
+
constructor(map?: { [key: string]: any }) {
|
|
3710
|
+
super(map);
|
|
3711
|
+
}
|
|
3712
|
+
}
|
|
3713
|
+
|
|
3410
3714
|
export class Mobile3MetaDetailVerifyResponseBody extends $tea.Model {
|
|
3411
3715
|
/**
|
|
3412
3716
|
* @example
|
|
@@ -3472,7 +3776,7 @@ export class Mobile3MetaDetailVerifyResponse extends $tea.Model {
|
|
|
3472
3776
|
}
|
|
3473
3777
|
}
|
|
3474
3778
|
|
|
3475
|
-
export class
|
|
3779
|
+
export class Mobile3MetaSimpleStandardVerifyRequest extends $tea.Model {
|
|
3476
3780
|
/**
|
|
3477
3781
|
* @example
|
|
3478
3782
|
* 429001********8211
|
|
@@ -3480,7 +3784,7 @@ export class Mobile3MetaSimpleVerifyRequest extends $tea.Model {
|
|
|
3480
3784
|
identifyNum?: string;
|
|
3481
3785
|
/**
|
|
3482
3786
|
* @example
|
|
3483
|
-
*
|
|
3787
|
+
* 130********
|
|
3484
3788
|
*/
|
|
3485
3789
|
mobile?: string;
|
|
3486
3790
|
/**
|
|
@@ -3512,6 +3816,102 @@ export class Mobile3MetaSimpleVerifyRequest extends $tea.Model {
|
|
|
3512
3816
|
}
|
|
3513
3817
|
}
|
|
3514
3818
|
|
|
3819
|
+
export class Mobile3MetaSimpleStandardVerifyResponseBody extends $tea.Model {
|
|
3820
|
+
/**
|
|
3821
|
+
* @example
|
|
3822
|
+
* 200
|
|
3823
|
+
*/
|
|
3824
|
+
code?: string;
|
|
3825
|
+
/**
|
|
3826
|
+
* @example
|
|
3827
|
+
* success
|
|
3828
|
+
*/
|
|
3829
|
+
message?: string;
|
|
3830
|
+
/**
|
|
3831
|
+
* @remarks
|
|
3832
|
+
* Id of the request
|
|
3833
|
+
*
|
|
3834
|
+
* @example
|
|
3835
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
3836
|
+
*/
|
|
3837
|
+
requestId?: string;
|
|
3838
|
+
resultObject?: Mobile3MetaSimpleStandardVerifyResponseBodyResultObject;
|
|
3839
|
+
static names(): { [key: string]: string } {
|
|
3840
|
+
return {
|
|
3841
|
+
code: 'Code',
|
|
3842
|
+
message: 'Message',
|
|
3843
|
+
requestId: 'RequestId',
|
|
3844
|
+
resultObject: 'ResultObject',
|
|
3845
|
+
};
|
|
3846
|
+
}
|
|
3847
|
+
|
|
3848
|
+
static types(): { [key: string]: any } {
|
|
3849
|
+
return {
|
|
3850
|
+
code: 'string',
|
|
3851
|
+
message: 'string',
|
|
3852
|
+
requestId: 'string',
|
|
3853
|
+
resultObject: Mobile3MetaSimpleStandardVerifyResponseBodyResultObject,
|
|
3854
|
+
};
|
|
3855
|
+
}
|
|
3856
|
+
|
|
3857
|
+
constructor(map?: { [key: string]: any }) {
|
|
3858
|
+
super(map);
|
|
3859
|
+
}
|
|
3860
|
+
}
|
|
3861
|
+
|
|
3862
|
+
export class Mobile3MetaSimpleStandardVerifyResponse extends $tea.Model {
|
|
3863
|
+
headers?: { [key: string]: string };
|
|
3864
|
+
statusCode?: number;
|
|
3865
|
+
body?: Mobile3MetaSimpleStandardVerifyResponseBody;
|
|
3866
|
+
static names(): { [key: string]: string } {
|
|
3867
|
+
return {
|
|
3868
|
+
headers: 'headers',
|
|
3869
|
+
statusCode: 'statusCode',
|
|
3870
|
+
body: 'body',
|
|
3871
|
+
};
|
|
3872
|
+
}
|
|
3873
|
+
|
|
3874
|
+
static types(): { [key: string]: any } {
|
|
3875
|
+
return {
|
|
3876
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3877
|
+
statusCode: 'number',
|
|
3878
|
+
body: Mobile3MetaSimpleStandardVerifyResponseBody,
|
|
3879
|
+
};
|
|
3880
|
+
}
|
|
3881
|
+
|
|
3882
|
+
constructor(map?: { [key: string]: any }) {
|
|
3883
|
+
super(map);
|
|
3884
|
+
}
|
|
3885
|
+
}
|
|
3886
|
+
|
|
3887
|
+
export class Mobile3MetaSimpleVerifyRequest extends $tea.Model {
|
|
3888
|
+
identifyNum?: string;
|
|
3889
|
+
mobile?: string;
|
|
3890
|
+
paramType?: string;
|
|
3891
|
+
userName?: string;
|
|
3892
|
+
static names(): { [key: string]: string } {
|
|
3893
|
+
return {
|
|
3894
|
+
identifyNum: 'IdentifyNum',
|
|
3895
|
+
mobile: 'Mobile',
|
|
3896
|
+
paramType: 'ParamType',
|
|
3897
|
+
userName: 'UserName',
|
|
3898
|
+
};
|
|
3899
|
+
}
|
|
3900
|
+
|
|
3901
|
+
static types(): { [key: string]: any } {
|
|
3902
|
+
return {
|
|
3903
|
+
identifyNum: 'string',
|
|
3904
|
+
mobile: 'string',
|
|
3905
|
+
paramType: 'string',
|
|
3906
|
+
userName: 'string',
|
|
3907
|
+
};
|
|
3908
|
+
}
|
|
3909
|
+
|
|
3910
|
+
constructor(map?: { [key: string]: any }) {
|
|
3911
|
+
super(map);
|
|
3912
|
+
}
|
|
3913
|
+
}
|
|
3914
|
+
|
|
3515
3915
|
export class Mobile3MetaSimpleVerifyResponseBody extends $tea.Model {
|
|
3516
3916
|
/**
|
|
3517
3917
|
* @example
|
|
@@ -3578,15 +3978,7 @@ export class Mobile3MetaSimpleVerifyResponse extends $tea.Model {
|
|
|
3578
3978
|
}
|
|
3579
3979
|
|
|
3580
3980
|
export class MobileDetectRequest extends $tea.Model {
|
|
3581
|
-
/**
|
|
3582
|
-
* @example
|
|
3583
|
-
* 138********,156********
|
|
3584
|
-
*/
|
|
3585
3981
|
mobiles?: string;
|
|
3586
|
-
/**
|
|
3587
|
-
* @example
|
|
3588
|
-
* normal
|
|
3589
|
-
*/
|
|
3590
3982
|
paramType?: string;
|
|
3591
3983
|
static names(): { [key: string]: string } {
|
|
3592
3984
|
return {
|
|
@@ -3673,15 +4065,7 @@ export class MobileDetectResponse extends $tea.Model {
|
|
|
3673
4065
|
}
|
|
3674
4066
|
|
|
3675
4067
|
export class MobileOnlineStatusRequest extends $tea.Model {
|
|
3676
|
-
/**
|
|
3677
|
-
* @example
|
|
3678
|
-
* 130********
|
|
3679
|
-
*/
|
|
3680
4068
|
mobile?: string;
|
|
3681
|
-
/**
|
|
3682
|
-
* @example
|
|
3683
|
-
* normal
|
|
3684
|
-
*/
|
|
3685
4069
|
paramType?: string;
|
|
3686
4070
|
static names(): { [key: string]: string } {
|
|
3687
4071
|
return {
|
|
@@ -3768,15 +4152,7 @@ export class MobileOnlineStatusResponse extends $tea.Model {
|
|
|
3768
4152
|
}
|
|
3769
4153
|
|
|
3770
4154
|
export class MobileOnlineTimeRequest extends $tea.Model {
|
|
3771
|
-
/**
|
|
3772
|
-
* @example
|
|
3773
|
-
* 130********
|
|
3774
|
-
*/
|
|
3775
4155
|
mobile?: string;
|
|
3776
|
-
/**
|
|
3777
|
-
* @example
|
|
3778
|
-
* normal
|
|
3779
|
-
*/
|
|
3780
4156
|
paramType?: string;
|
|
3781
4157
|
static names(): { [key: string]: string } {
|
|
3782
4158
|
return {
|
|
@@ -5423,11 +5799,7 @@ export class DescribeDeviceInfoResponseBodyDeviceInfoList extends $tea.Model {
|
|
|
5423
5799
|
}
|
|
5424
5800
|
|
|
5425
5801
|
export class DescribeFaceGuardRiskResponseBodyResultObject extends $tea.Model {
|
|
5426
|
-
|
|
5427
|
-
* @example
|
|
5428
|
-
* ROOT,VPN,HOOK
|
|
5429
|
-
*/
|
|
5430
|
-
riakTags?: string;
|
|
5802
|
+
certifyId?: string;
|
|
5431
5803
|
/**
|
|
5432
5804
|
* @example
|
|
5433
5805
|
* {
|
|
@@ -5442,17 +5814,20 @@ export class DescribeFaceGuardRiskResponseBodyResultObject extends $tea.Model {
|
|
|
5442
5814
|
* }
|
|
5443
5815
|
*/
|
|
5444
5816
|
riskExtends?: string;
|
|
5817
|
+
riskTags?: string;
|
|
5445
5818
|
static names(): { [key: string]: string } {
|
|
5446
5819
|
return {
|
|
5447
|
-
|
|
5820
|
+
certifyId: 'CertifyId',
|
|
5448
5821
|
riskExtends: 'RiskExtends',
|
|
5822
|
+
riskTags: 'RiskTags',
|
|
5449
5823
|
};
|
|
5450
5824
|
}
|
|
5451
5825
|
|
|
5452
5826
|
static types(): { [key: string]: any } {
|
|
5453
5827
|
return {
|
|
5454
|
-
|
|
5828
|
+
certifyId: 'string',
|
|
5455
5829
|
riskExtends: 'string',
|
|
5830
|
+
riskTags: 'string',
|
|
5456
5831
|
};
|
|
5457
5832
|
}
|
|
5458
5833
|
|
|
@@ -6145,6 +6520,52 @@ export class DetectFaceAttributesResponseBodyData extends $tea.Model {
|
|
|
6145
6520
|
}
|
|
6146
6521
|
}
|
|
6147
6522
|
|
|
6523
|
+
export class Id2MetaPeriodVerifyResponseBodyResultObject extends $tea.Model {
|
|
6524
|
+
/**
|
|
6525
|
+
* @example
|
|
6526
|
+
* 1
|
|
6527
|
+
*/
|
|
6528
|
+
bizCode?: string;
|
|
6529
|
+
static names(): { [key: string]: string } {
|
|
6530
|
+
return {
|
|
6531
|
+
bizCode: 'BizCode',
|
|
6532
|
+
};
|
|
6533
|
+
}
|
|
6534
|
+
|
|
6535
|
+
static types(): { [key: string]: any } {
|
|
6536
|
+
return {
|
|
6537
|
+
bizCode: 'string',
|
|
6538
|
+
};
|
|
6539
|
+
}
|
|
6540
|
+
|
|
6541
|
+
constructor(map?: { [key: string]: any }) {
|
|
6542
|
+
super(map);
|
|
6543
|
+
}
|
|
6544
|
+
}
|
|
6545
|
+
|
|
6546
|
+
export class Id2MetaStandardVerifyResponseBodyResultObject extends $tea.Model {
|
|
6547
|
+
/**
|
|
6548
|
+
* @example
|
|
6549
|
+
* 1
|
|
6550
|
+
*/
|
|
6551
|
+
bizCode?: string;
|
|
6552
|
+
static names(): { [key: string]: string } {
|
|
6553
|
+
return {
|
|
6554
|
+
bizCode: 'BizCode',
|
|
6555
|
+
};
|
|
6556
|
+
}
|
|
6557
|
+
|
|
6558
|
+
static types(): { [key: string]: any } {
|
|
6559
|
+
return {
|
|
6560
|
+
bizCode: 'string',
|
|
6561
|
+
};
|
|
6562
|
+
}
|
|
6563
|
+
|
|
6564
|
+
constructor(map?: { [key: string]: any }) {
|
|
6565
|
+
super(map);
|
|
6566
|
+
}
|
|
6567
|
+
}
|
|
6568
|
+
|
|
6148
6569
|
export class Id2MetaVerifyResponseBodyResultObject extends $tea.Model {
|
|
6149
6570
|
/**
|
|
6150
6571
|
* @example
|
|
@@ -6171,21 +6592,86 @@ export class Id2MetaVerifyResponseBodyResultObject extends $tea.Model {
|
|
|
6171
6592
|
export class InitFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
6172
6593
|
/**
|
|
6173
6594
|
* @example
|
|
6174
|
-
* 91707dc296d469ad38e4c5efa6a0f24b
|
|
6595
|
+
* 91707dc296d469ad38e4c5efa6a0f24b
|
|
6596
|
+
*/
|
|
6597
|
+
certifyId?: string;
|
|
6598
|
+
certifyUrl?: string;
|
|
6599
|
+
static names(): { [key: string]: string } {
|
|
6600
|
+
return {
|
|
6601
|
+
certifyId: 'CertifyId',
|
|
6602
|
+
certifyUrl: 'CertifyUrl',
|
|
6603
|
+
};
|
|
6604
|
+
}
|
|
6605
|
+
|
|
6606
|
+
static types(): { [key: string]: any } {
|
|
6607
|
+
return {
|
|
6608
|
+
certifyId: 'string',
|
|
6609
|
+
certifyUrl: 'string',
|
|
6610
|
+
};
|
|
6611
|
+
}
|
|
6612
|
+
|
|
6613
|
+
constructor(map?: { [key: string]: any }) {
|
|
6614
|
+
super(map);
|
|
6615
|
+
}
|
|
6616
|
+
}
|
|
6617
|
+
|
|
6618
|
+
export class LivenessFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
6619
|
+
certifyId?: string;
|
|
6620
|
+
materialInfo?: string;
|
|
6621
|
+
passed?: string;
|
|
6622
|
+
subCode?: string;
|
|
6623
|
+
static names(): { [key: string]: string } {
|
|
6624
|
+
return {
|
|
6625
|
+
certifyId: 'CertifyId',
|
|
6626
|
+
materialInfo: 'MaterialInfo',
|
|
6627
|
+
passed: 'Passed',
|
|
6628
|
+
subCode: 'SubCode',
|
|
6629
|
+
};
|
|
6630
|
+
}
|
|
6631
|
+
|
|
6632
|
+
static types(): { [key: string]: any } {
|
|
6633
|
+
return {
|
|
6634
|
+
certifyId: 'string',
|
|
6635
|
+
materialInfo: 'string',
|
|
6636
|
+
passed: 'string',
|
|
6637
|
+
subCode: 'string',
|
|
6638
|
+
};
|
|
6639
|
+
}
|
|
6640
|
+
|
|
6641
|
+
constructor(map?: { [key: string]: any }) {
|
|
6642
|
+
super(map);
|
|
6643
|
+
}
|
|
6644
|
+
}
|
|
6645
|
+
|
|
6646
|
+
export class Mobile3MetaDetailStandardVerifyResponseBodyResultObject extends $tea.Model {
|
|
6647
|
+
/**
|
|
6648
|
+
* @example
|
|
6649
|
+
* 1
|
|
6650
|
+
*/
|
|
6651
|
+
bizCode?: string;
|
|
6652
|
+
/**
|
|
6653
|
+
* @example
|
|
6654
|
+
* CMCC
|
|
6655
|
+
*/
|
|
6656
|
+
ispName?: string;
|
|
6657
|
+
/**
|
|
6658
|
+
* @example
|
|
6659
|
+
* 101
|
|
6175
6660
|
*/
|
|
6176
|
-
|
|
6177
|
-
certifyUrl?: string;
|
|
6661
|
+
subCode?: string;
|
|
6178
6662
|
static names(): { [key: string]: string } {
|
|
6179
6663
|
return {
|
|
6180
|
-
|
|
6181
|
-
|
|
6664
|
+
bizCode: 'BizCode',
|
|
6665
|
+
ispName: 'IspName',
|
|
6666
|
+
subCode: 'SubCode',
|
|
6182
6667
|
};
|
|
6183
6668
|
}
|
|
6184
6669
|
|
|
6185
6670
|
static types(): { [key: string]: any } {
|
|
6186
6671
|
return {
|
|
6187
|
-
|
|
6188
|
-
|
|
6672
|
+
bizCode: 'string',
|
|
6673
|
+
ispName: 'string',
|
|
6674
|
+
subCode: 'string',
|
|
6189
6675
|
};
|
|
6190
6676
|
}
|
|
6191
6677
|
|
|
@@ -6194,25 +6680,34 @@ export class InitFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
|
6194
6680
|
}
|
|
6195
6681
|
}
|
|
6196
6682
|
|
|
6197
|
-
export class
|
|
6198
|
-
|
|
6199
|
-
|
|
6200
|
-
|
|
6683
|
+
export class Mobile3MetaDetailVerifyResponseBodyResultObject extends $tea.Model {
|
|
6684
|
+
/**
|
|
6685
|
+
* @example
|
|
6686
|
+
* 1
|
|
6687
|
+
*/
|
|
6688
|
+
bizCode?: string;
|
|
6689
|
+
/**
|
|
6690
|
+
* @example
|
|
6691
|
+
* CMCC
|
|
6692
|
+
*/
|
|
6693
|
+
ispName?: string;
|
|
6694
|
+
/**
|
|
6695
|
+
* @example
|
|
6696
|
+
* 101
|
|
6697
|
+
*/
|
|
6201
6698
|
subCode?: string;
|
|
6202
6699
|
static names(): { [key: string]: string } {
|
|
6203
6700
|
return {
|
|
6204
|
-
|
|
6205
|
-
|
|
6206
|
-
passed: 'Passed',
|
|
6701
|
+
bizCode: 'BizCode',
|
|
6702
|
+
ispName: 'IspName',
|
|
6207
6703
|
subCode: 'SubCode',
|
|
6208
6704
|
};
|
|
6209
6705
|
}
|
|
6210
6706
|
|
|
6211
6707
|
static types(): { [key: string]: any } {
|
|
6212
6708
|
return {
|
|
6213
|
-
|
|
6214
|
-
|
|
6215
|
-
passed: 'string',
|
|
6709
|
+
bizCode: 'string',
|
|
6710
|
+
ispName: 'string',
|
|
6216
6711
|
subCode: 'string',
|
|
6217
6712
|
};
|
|
6218
6713
|
}
|
|
@@ -6222,7 +6717,7 @@ export class LivenessFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
|
6222
6717
|
}
|
|
6223
6718
|
}
|
|
6224
6719
|
|
|
6225
|
-
export class
|
|
6720
|
+
export class Mobile3MetaSimpleStandardVerifyResponseBodyResultObject extends $tea.Model {
|
|
6226
6721
|
/**
|
|
6227
6722
|
* @example
|
|
6228
6723
|
* 1
|
|
@@ -6233,16 +6728,10 @@ export class Mobile3MetaDetailVerifyResponseBodyResultObject extends $tea.Model
|
|
|
6233
6728
|
* CMCC
|
|
6234
6729
|
*/
|
|
6235
6730
|
ispName?: string;
|
|
6236
|
-
/**
|
|
6237
|
-
* @example
|
|
6238
|
-
* 101
|
|
6239
|
-
*/
|
|
6240
|
-
subCode?: string;
|
|
6241
6731
|
static names(): { [key: string]: string } {
|
|
6242
6732
|
return {
|
|
6243
6733
|
bizCode: 'BizCode',
|
|
6244
6734
|
ispName: 'IspName',
|
|
6245
|
-
subCode: 'SubCode',
|
|
6246
6735
|
};
|
|
6247
6736
|
}
|
|
6248
6737
|
|
|
@@ -6250,7 +6739,6 @@ export class Mobile3MetaDetailVerifyResponseBodyResultObject extends $tea.Model
|
|
|
6250
6739
|
return {
|
|
6251
6740
|
bizCode: 'string',
|
|
6252
6741
|
ispName: 'string',
|
|
6253
|
-
subCode: 'string',
|
|
6254
6742
|
};
|
|
6255
6743
|
}
|
|
6256
6744
|
|
|
@@ -8119,6 +8607,114 @@ export default class Client extends OpenApi {
|
|
|
8119
8607
|
return await this.detectFaceAttributesWithOptions(request, runtime);
|
|
8120
8608
|
}
|
|
8121
8609
|
|
|
8610
|
+
/**
|
|
8611
|
+
* 二要素有效期核验接口
|
|
8612
|
+
*
|
|
8613
|
+
* @param request - Id2MetaPeriodVerifyRequest
|
|
8614
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
8615
|
+
* @returns Id2MetaPeriodVerifyResponse
|
|
8616
|
+
*/
|
|
8617
|
+
async id2MetaPeriodVerifyWithOptions(request: Id2MetaPeriodVerifyRequest, runtime: $Util.RuntimeOptions): Promise<Id2MetaPeriodVerifyResponse> {
|
|
8618
|
+
Util.validateModel(request);
|
|
8619
|
+
let body : {[key: string ]: any} = { };
|
|
8620
|
+
if (!Util.isUnset(request.identifyNum)) {
|
|
8621
|
+
body["IdentifyNum"] = request.identifyNum;
|
|
8622
|
+
}
|
|
8623
|
+
|
|
8624
|
+
if (!Util.isUnset(request.paramType)) {
|
|
8625
|
+
body["ParamType"] = request.paramType;
|
|
8626
|
+
}
|
|
8627
|
+
|
|
8628
|
+
if (!Util.isUnset(request.userName)) {
|
|
8629
|
+
body["UserName"] = request.userName;
|
|
8630
|
+
}
|
|
8631
|
+
|
|
8632
|
+
if (!Util.isUnset(request.validityEndDate)) {
|
|
8633
|
+
body["ValidityEndDate"] = request.validityEndDate;
|
|
8634
|
+
}
|
|
8635
|
+
|
|
8636
|
+
if (!Util.isUnset(request.validityStartDate)) {
|
|
8637
|
+
body["ValidityStartDate"] = request.validityStartDate;
|
|
8638
|
+
}
|
|
8639
|
+
|
|
8640
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
8641
|
+
body: OpenApiUtil.parseToMap(body),
|
|
8642
|
+
});
|
|
8643
|
+
let params = new $OpenApi.Params({
|
|
8644
|
+
action: "Id2MetaPeriodVerify",
|
|
8645
|
+
version: "2019-03-07",
|
|
8646
|
+
protocol: "HTTPS",
|
|
8647
|
+
pathname: "/",
|
|
8648
|
+
method: "POST",
|
|
8649
|
+
authType: "AK",
|
|
8650
|
+
style: "RPC",
|
|
8651
|
+
reqBodyType: "formData",
|
|
8652
|
+
bodyType: "json",
|
|
8653
|
+
});
|
|
8654
|
+
return $tea.cast<Id2MetaPeriodVerifyResponse>(await this.callApi(params, req, runtime), new Id2MetaPeriodVerifyResponse({}));
|
|
8655
|
+
}
|
|
8656
|
+
|
|
8657
|
+
/**
|
|
8658
|
+
* 二要素有效期核验接口
|
|
8659
|
+
*
|
|
8660
|
+
* @param request - Id2MetaPeriodVerifyRequest
|
|
8661
|
+
* @returns Id2MetaPeriodVerifyResponse
|
|
8662
|
+
*/
|
|
8663
|
+
async id2MetaPeriodVerify(request: Id2MetaPeriodVerifyRequest): Promise<Id2MetaPeriodVerifyResponse> {
|
|
8664
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
8665
|
+
return await this.id2MetaPeriodVerifyWithOptions(request, runtime);
|
|
8666
|
+
}
|
|
8667
|
+
|
|
8668
|
+
/**
|
|
8669
|
+
* 身份二要素标准版
|
|
8670
|
+
*
|
|
8671
|
+
* @param request - Id2MetaStandardVerifyRequest
|
|
8672
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
8673
|
+
* @returns Id2MetaStandardVerifyResponse
|
|
8674
|
+
*/
|
|
8675
|
+
async id2MetaStandardVerifyWithOptions(request: Id2MetaStandardVerifyRequest, runtime: $Util.RuntimeOptions): Promise<Id2MetaStandardVerifyResponse> {
|
|
8676
|
+
Util.validateModel(request);
|
|
8677
|
+
let body : {[key: string ]: any} = { };
|
|
8678
|
+
if (!Util.isUnset(request.identifyNum)) {
|
|
8679
|
+
body["IdentifyNum"] = request.identifyNum;
|
|
8680
|
+
}
|
|
8681
|
+
|
|
8682
|
+
if (!Util.isUnset(request.paramType)) {
|
|
8683
|
+
body["ParamType"] = request.paramType;
|
|
8684
|
+
}
|
|
8685
|
+
|
|
8686
|
+
if (!Util.isUnset(request.userName)) {
|
|
8687
|
+
body["UserName"] = request.userName;
|
|
8688
|
+
}
|
|
8689
|
+
|
|
8690
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
8691
|
+
body: OpenApiUtil.parseToMap(body),
|
|
8692
|
+
});
|
|
8693
|
+
let params = new $OpenApi.Params({
|
|
8694
|
+
action: "Id2MetaStandardVerify",
|
|
8695
|
+
version: "2019-03-07",
|
|
8696
|
+
protocol: "HTTPS",
|
|
8697
|
+
pathname: "/",
|
|
8698
|
+
method: "POST",
|
|
8699
|
+
authType: "AK",
|
|
8700
|
+
style: "RPC",
|
|
8701
|
+
reqBodyType: "formData",
|
|
8702
|
+
bodyType: "json",
|
|
8703
|
+
});
|
|
8704
|
+
return $tea.cast<Id2MetaStandardVerifyResponse>(await this.callApi(params, req, runtime), new Id2MetaStandardVerifyResponse({}));
|
|
8705
|
+
}
|
|
8706
|
+
|
|
8707
|
+
/**
|
|
8708
|
+
* 身份二要素标准版
|
|
8709
|
+
*
|
|
8710
|
+
* @param request - Id2MetaStandardVerifyRequest
|
|
8711
|
+
* @returns Id2MetaStandardVerifyResponse
|
|
8712
|
+
*/
|
|
8713
|
+
async id2MetaStandardVerify(request: Id2MetaStandardVerifyRequest): Promise<Id2MetaStandardVerifyResponse> {
|
|
8714
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
8715
|
+
return await this.id2MetaStandardVerifyWithOptions(request, runtime);
|
|
8716
|
+
}
|
|
8717
|
+
|
|
8122
8718
|
/**
|
|
8123
8719
|
* 身份二要素接口
|
|
8124
8720
|
*
|
|
@@ -8128,21 +8724,21 @@ export default class Client extends OpenApi {
|
|
|
8128
8724
|
*/
|
|
8129
8725
|
async id2MetaVerifyWithOptions(request: Id2MetaVerifyRequest, runtime: $Util.RuntimeOptions): Promise<Id2MetaVerifyResponse> {
|
|
8130
8726
|
Util.validateModel(request);
|
|
8131
|
-
let
|
|
8727
|
+
let body : {[key: string ]: any} = { };
|
|
8132
8728
|
if (!Util.isUnset(request.identifyNum)) {
|
|
8133
|
-
|
|
8729
|
+
body["IdentifyNum"] = request.identifyNum;
|
|
8134
8730
|
}
|
|
8135
8731
|
|
|
8136
8732
|
if (!Util.isUnset(request.paramType)) {
|
|
8137
|
-
|
|
8733
|
+
body["ParamType"] = request.paramType;
|
|
8138
8734
|
}
|
|
8139
8735
|
|
|
8140
8736
|
if (!Util.isUnset(request.userName)) {
|
|
8141
|
-
|
|
8737
|
+
body["UserName"] = request.userName;
|
|
8142
8738
|
}
|
|
8143
8739
|
|
|
8144
8740
|
let req = new $OpenApi.OpenApiRequest({
|
|
8145
|
-
|
|
8741
|
+
body: OpenApiUtil.parseToMap(body),
|
|
8146
8742
|
});
|
|
8147
8743
|
let params = new $OpenApi.Params({
|
|
8148
8744
|
action: "Id2MetaVerify",
|
|
@@ -8503,6 +9099,60 @@ export default class Client extends OpenApi {
|
|
|
8503
9099
|
return await this.livenessFaceVerifyWithOptions(request, runtime);
|
|
8504
9100
|
}
|
|
8505
9101
|
|
|
9102
|
+
/**
|
|
9103
|
+
* 手机号三要素详版_标准版
|
|
9104
|
+
*
|
|
9105
|
+
* @param request - Mobile3MetaDetailStandardVerifyRequest
|
|
9106
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
9107
|
+
* @returns Mobile3MetaDetailStandardVerifyResponse
|
|
9108
|
+
*/
|
|
9109
|
+
async mobile3MetaDetailStandardVerifyWithOptions(request: Mobile3MetaDetailStandardVerifyRequest, runtime: $Util.RuntimeOptions): Promise<Mobile3MetaDetailStandardVerifyResponse> {
|
|
9110
|
+
Util.validateModel(request);
|
|
9111
|
+
let body : {[key: string ]: any} = { };
|
|
9112
|
+
if (!Util.isUnset(request.identifyNum)) {
|
|
9113
|
+
body["IdentifyNum"] = request.identifyNum;
|
|
9114
|
+
}
|
|
9115
|
+
|
|
9116
|
+
if (!Util.isUnset(request.mobile)) {
|
|
9117
|
+
body["Mobile"] = request.mobile;
|
|
9118
|
+
}
|
|
9119
|
+
|
|
9120
|
+
if (!Util.isUnset(request.paramType)) {
|
|
9121
|
+
body["ParamType"] = request.paramType;
|
|
9122
|
+
}
|
|
9123
|
+
|
|
9124
|
+
if (!Util.isUnset(request.userName)) {
|
|
9125
|
+
body["UserName"] = request.userName;
|
|
9126
|
+
}
|
|
9127
|
+
|
|
9128
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
9129
|
+
body: OpenApiUtil.parseToMap(body),
|
|
9130
|
+
});
|
|
9131
|
+
let params = new $OpenApi.Params({
|
|
9132
|
+
action: "Mobile3MetaDetailStandardVerify",
|
|
9133
|
+
version: "2019-03-07",
|
|
9134
|
+
protocol: "HTTPS",
|
|
9135
|
+
pathname: "/",
|
|
9136
|
+
method: "POST",
|
|
9137
|
+
authType: "AK",
|
|
9138
|
+
style: "RPC",
|
|
9139
|
+
reqBodyType: "formData",
|
|
9140
|
+
bodyType: "json",
|
|
9141
|
+
});
|
|
9142
|
+
return $tea.cast<Mobile3MetaDetailStandardVerifyResponse>(await this.callApi(params, req, runtime), new Mobile3MetaDetailStandardVerifyResponse({}));
|
|
9143
|
+
}
|
|
9144
|
+
|
|
9145
|
+
/**
|
|
9146
|
+
* 手机号三要素详版_标准版
|
|
9147
|
+
*
|
|
9148
|
+
* @param request - Mobile3MetaDetailStandardVerifyRequest
|
|
9149
|
+
* @returns Mobile3MetaDetailStandardVerifyResponse
|
|
9150
|
+
*/
|
|
9151
|
+
async mobile3MetaDetailStandardVerify(request: Mobile3MetaDetailStandardVerifyRequest): Promise<Mobile3MetaDetailStandardVerifyResponse> {
|
|
9152
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
9153
|
+
return await this.mobile3MetaDetailStandardVerifyWithOptions(request, runtime);
|
|
9154
|
+
}
|
|
9155
|
+
|
|
8506
9156
|
/**
|
|
8507
9157
|
* 手机三要素详版接口
|
|
8508
9158
|
*
|
|
@@ -8512,25 +9162,25 @@ export default class Client extends OpenApi {
|
|
|
8512
9162
|
*/
|
|
8513
9163
|
async mobile3MetaDetailVerifyWithOptions(request: Mobile3MetaDetailVerifyRequest, runtime: $Util.RuntimeOptions): Promise<Mobile3MetaDetailVerifyResponse> {
|
|
8514
9164
|
Util.validateModel(request);
|
|
8515
|
-
let
|
|
9165
|
+
let body : {[key: string ]: any} = { };
|
|
8516
9166
|
if (!Util.isUnset(request.identifyNum)) {
|
|
8517
|
-
|
|
9167
|
+
body["IdentifyNum"] = request.identifyNum;
|
|
8518
9168
|
}
|
|
8519
9169
|
|
|
8520
9170
|
if (!Util.isUnset(request.mobile)) {
|
|
8521
|
-
|
|
9171
|
+
body["Mobile"] = request.mobile;
|
|
8522
9172
|
}
|
|
8523
9173
|
|
|
8524
9174
|
if (!Util.isUnset(request.paramType)) {
|
|
8525
|
-
|
|
9175
|
+
body["ParamType"] = request.paramType;
|
|
8526
9176
|
}
|
|
8527
9177
|
|
|
8528
9178
|
if (!Util.isUnset(request.userName)) {
|
|
8529
|
-
|
|
9179
|
+
body["UserName"] = request.userName;
|
|
8530
9180
|
}
|
|
8531
9181
|
|
|
8532
9182
|
let req = new $OpenApi.OpenApiRequest({
|
|
8533
|
-
|
|
9183
|
+
body: OpenApiUtil.parseToMap(body),
|
|
8534
9184
|
});
|
|
8535
9185
|
let params = new $OpenApi.Params({
|
|
8536
9186
|
action: "Mobile3MetaDetailVerify",
|
|
@@ -8557,6 +9207,60 @@ export default class Client extends OpenApi {
|
|
|
8557
9207
|
return await this.mobile3MetaDetailVerifyWithOptions(request, runtime);
|
|
8558
9208
|
}
|
|
8559
9209
|
|
|
9210
|
+
/**
|
|
9211
|
+
* 手机号三要素简版_标准版
|
|
9212
|
+
*
|
|
9213
|
+
* @param request - Mobile3MetaSimpleStandardVerifyRequest
|
|
9214
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
9215
|
+
* @returns Mobile3MetaSimpleStandardVerifyResponse
|
|
9216
|
+
*/
|
|
9217
|
+
async mobile3MetaSimpleStandardVerifyWithOptions(request: Mobile3MetaSimpleStandardVerifyRequest, runtime: $Util.RuntimeOptions): Promise<Mobile3MetaSimpleStandardVerifyResponse> {
|
|
9218
|
+
Util.validateModel(request);
|
|
9219
|
+
let body : {[key: string ]: any} = { };
|
|
9220
|
+
if (!Util.isUnset(request.identifyNum)) {
|
|
9221
|
+
body["IdentifyNum"] = request.identifyNum;
|
|
9222
|
+
}
|
|
9223
|
+
|
|
9224
|
+
if (!Util.isUnset(request.mobile)) {
|
|
9225
|
+
body["Mobile"] = request.mobile;
|
|
9226
|
+
}
|
|
9227
|
+
|
|
9228
|
+
if (!Util.isUnset(request.paramType)) {
|
|
9229
|
+
body["ParamType"] = request.paramType;
|
|
9230
|
+
}
|
|
9231
|
+
|
|
9232
|
+
if (!Util.isUnset(request.userName)) {
|
|
9233
|
+
body["UserName"] = request.userName;
|
|
9234
|
+
}
|
|
9235
|
+
|
|
9236
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
9237
|
+
body: OpenApiUtil.parseToMap(body),
|
|
9238
|
+
});
|
|
9239
|
+
let params = new $OpenApi.Params({
|
|
9240
|
+
action: "Mobile3MetaSimpleStandardVerify",
|
|
9241
|
+
version: "2019-03-07",
|
|
9242
|
+
protocol: "HTTPS",
|
|
9243
|
+
pathname: "/",
|
|
9244
|
+
method: "POST",
|
|
9245
|
+
authType: "AK",
|
|
9246
|
+
style: "RPC",
|
|
9247
|
+
reqBodyType: "formData",
|
|
9248
|
+
bodyType: "json",
|
|
9249
|
+
});
|
|
9250
|
+
return $tea.cast<Mobile3MetaSimpleStandardVerifyResponse>(await this.callApi(params, req, runtime), new Mobile3MetaSimpleStandardVerifyResponse({}));
|
|
9251
|
+
}
|
|
9252
|
+
|
|
9253
|
+
/**
|
|
9254
|
+
* 手机号三要素简版_标准版
|
|
9255
|
+
*
|
|
9256
|
+
* @param request - Mobile3MetaSimpleStandardVerifyRequest
|
|
9257
|
+
* @returns Mobile3MetaSimpleStandardVerifyResponse
|
|
9258
|
+
*/
|
|
9259
|
+
async mobile3MetaSimpleStandardVerify(request: Mobile3MetaSimpleStandardVerifyRequest): Promise<Mobile3MetaSimpleStandardVerifyResponse> {
|
|
9260
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
9261
|
+
return await this.mobile3MetaSimpleStandardVerifyWithOptions(request, runtime);
|
|
9262
|
+
}
|
|
9263
|
+
|
|
8560
9264
|
/**
|
|
8561
9265
|
* 手机号三要素简版接口
|
|
8562
9266
|
*
|
|
@@ -8566,25 +9270,25 @@ export default class Client extends OpenApi {
|
|
|
8566
9270
|
*/
|
|
8567
9271
|
async mobile3MetaSimpleVerifyWithOptions(request: Mobile3MetaSimpleVerifyRequest, runtime: $Util.RuntimeOptions): Promise<Mobile3MetaSimpleVerifyResponse> {
|
|
8568
9272
|
Util.validateModel(request);
|
|
8569
|
-
let
|
|
9273
|
+
let body : {[key: string ]: any} = { };
|
|
8570
9274
|
if (!Util.isUnset(request.identifyNum)) {
|
|
8571
|
-
|
|
9275
|
+
body["IdentifyNum"] = request.identifyNum;
|
|
8572
9276
|
}
|
|
8573
9277
|
|
|
8574
9278
|
if (!Util.isUnset(request.mobile)) {
|
|
8575
|
-
|
|
9279
|
+
body["Mobile"] = request.mobile;
|
|
8576
9280
|
}
|
|
8577
9281
|
|
|
8578
9282
|
if (!Util.isUnset(request.paramType)) {
|
|
8579
|
-
|
|
9283
|
+
body["ParamType"] = request.paramType;
|
|
8580
9284
|
}
|
|
8581
9285
|
|
|
8582
9286
|
if (!Util.isUnset(request.userName)) {
|
|
8583
|
-
|
|
9287
|
+
body["UserName"] = request.userName;
|
|
8584
9288
|
}
|
|
8585
9289
|
|
|
8586
9290
|
let req = new $OpenApi.OpenApiRequest({
|
|
8587
|
-
|
|
9291
|
+
body: OpenApiUtil.parseToMap(body),
|
|
8588
9292
|
});
|
|
8589
9293
|
let params = new $OpenApi.Params({
|
|
8590
9294
|
action: "Mobile3MetaSimpleVerify",
|
|
@@ -8620,17 +9324,17 @@ export default class Client extends OpenApi {
|
|
|
8620
9324
|
*/
|
|
8621
9325
|
async mobileDetectWithOptions(request: MobileDetectRequest, runtime: $Util.RuntimeOptions): Promise<MobileDetectResponse> {
|
|
8622
9326
|
Util.validateModel(request);
|
|
8623
|
-
let
|
|
9327
|
+
let body : {[key: string ]: any} = { };
|
|
8624
9328
|
if (!Util.isUnset(request.mobiles)) {
|
|
8625
|
-
|
|
9329
|
+
body["Mobiles"] = request.mobiles;
|
|
8626
9330
|
}
|
|
8627
9331
|
|
|
8628
9332
|
if (!Util.isUnset(request.paramType)) {
|
|
8629
|
-
|
|
9333
|
+
body["ParamType"] = request.paramType;
|
|
8630
9334
|
}
|
|
8631
9335
|
|
|
8632
9336
|
let req = new $OpenApi.OpenApiRequest({
|
|
8633
|
-
|
|
9337
|
+
body: OpenApiUtil.parseToMap(body),
|
|
8634
9338
|
});
|
|
8635
9339
|
let params = new $OpenApi.Params({
|
|
8636
9340
|
action: "MobileDetect",
|
|
@@ -8666,17 +9370,17 @@ export default class Client extends OpenApi {
|
|
|
8666
9370
|
*/
|
|
8667
9371
|
async mobileOnlineStatusWithOptions(request: MobileOnlineStatusRequest, runtime: $Util.RuntimeOptions): Promise<MobileOnlineStatusResponse> {
|
|
8668
9372
|
Util.validateModel(request);
|
|
8669
|
-
let
|
|
9373
|
+
let body : {[key: string ]: any} = { };
|
|
8670
9374
|
if (!Util.isUnset(request.mobile)) {
|
|
8671
|
-
|
|
9375
|
+
body["Mobile"] = request.mobile;
|
|
8672
9376
|
}
|
|
8673
9377
|
|
|
8674
9378
|
if (!Util.isUnset(request.paramType)) {
|
|
8675
|
-
|
|
9379
|
+
body["ParamType"] = request.paramType;
|
|
8676
9380
|
}
|
|
8677
9381
|
|
|
8678
9382
|
let req = new $OpenApi.OpenApiRequest({
|
|
8679
|
-
|
|
9383
|
+
body: OpenApiUtil.parseToMap(body),
|
|
8680
9384
|
});
|
|
8681
9385
|
let params = new $OpenApi.Params({
|
|
8682
9386
|
action: "MobileOnlineStatus",
|
|
@@ -8712,17 +9416,17 @@ export default class Client extends OpenApi {
|
|
|
8712
9416
|
*/
|
|
8713
9417
|
async mobileOnlineTimeWithOptions(request: MobileOnlineTimeRequest, runtime: $Util.RuntimeOptions): Promise<MobileOnlineTimeResponse> {
|
|
8714
9418
|
Util.validateModel(request);
|
|
8715
|
-
let
|
|
9419
|
+
let body : {[key: string ]: any} = { };
|
|
8716
9420
|
if (!Util.isUnset(request.mobile)) {
|
|
8717
|
-
|
|
9421
|
+
body["Mobile"] = request.mobile;
|
|
8718
9422
|
}
|
|
8719
9423
|
|
|
8720
9424
|
if (!Util.isUnset(request.paramType)) {
|
|
8721
|
-
|
|
9425
|
+
body["ParamType"] = request.paramType;
|
|
8722
9426
|
}
|
|
8723
9427
|
|
|
8724
9428
|
let req = new $OpenApi.OpenApiRequest({
|
|
8725
|
-
|
|
9429
|
+
body: OpenApiUtil.parseToMap(body),
|
|
8726
9430
|
});
|
|
8727
9431
|
let params = new $OpenApi.Params({
|
|
8728
9432
|
action: "MobileOnlineTime",
|