@alicloud/cloudauth20190307 2.2.2 → 2.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 +456 -60
- package/dist/client.js +1051 -270
- package/dist/client.js.map +1 -1
- package/package.json +6 -6
- package/src/client.ts +1041 -94
package/src/client.ts
CHANGED
|
@@ -13,6 +13,186 @@ import EndpointUtil from '@alicloud/endpoint-util';
|
|
|
13
13
|
import { Readable } from 'stream';
|
|
14
14
|
import * as $tea from '@alicloud/tea-typescript';
|
|
15
15
|
|
|
16
|
+
export class AIGCFaceVerifyRequest extends $tea.Model {
|
|
17
|
+
faceContrastPicture?: string;
|
|
18
|
+
faceContrastPictureUrl?: string;
|
|
19
|
+
ossBucketName?: string;
|
|
20
|
+
ossObjectName?: string;
|
|
21
|
+
outerOrderNo?: string;
|
|
22
|
+
productCode?: string;
|
|
23
|
+
sceneId?: number;
|
|
24
|
+
static names(): { [key: string]: string } {
|
|
25
|
+
return {
|
|
26
|
+
faceContrastPicture: 'FaceContrastPicture',
|
|
27
|
+
faceContrastPictureUrl: 'FaceContrastPictureUrl',
|
|
28
|
+
ossBucketName: 'OssBucketName',
|
|
29
|
+
ossObjectName: 'OssObjectName',
|
|
30
|
+
outerOrderNo: 'OuterOrderNo',
|
|
31
|
+
productCode: 'ProductCode',
|
|
32
|
+
sceneId: 'SceneId',
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
static types(): { [key: string]: any } {
|
|
37
|
+
return {
|
|
38
|
+
faceContrastPicture: 'string',
|
|
39
|
+
faceContrastPictureUrl: 'string',
|
|
40
|
+
ossBucketName: 'string',
|
|
41
|
+
ossObjectName: 'string',
|
|
42
|
+
outerOrderNo: 'string',
|
|
43
|
+
productCode: 'string',
|
|
44
|
+
sceneId: 'number',
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
constructor(map?: { [key: string]: any }) {
|
|
49
|
+
super(map);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export class AIGCFaceVerifyResponseBody extends $tea.Model {
|
|
54
|
+
code?: string;
|
|
55
|
+
message?: string;
|
|
56
|
+
requestId?: string;
|
|
57
|
+
resultObject?: AIGCFaceVerifyResponseBodyResultObject;
|
|
58
|
+
static names(): { [key: string]: string } {
|
|
59
|
+
return {
|
|
60
|
+
code: 'Code',
|
|
61
|
+
message: 'Message',
|
|
62
|
+
requestId: 'RequestId',
|
|
63
|
+
resultObject: 'ResultObject',
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
static types(): { [key: string]: any } {
|
|
68
|
+
return {
|
|
69
|
+
code: 'string',
|
|
70
|
+
message: 'string',
|
|
71
|
+
requestId: 'string',
|
|
72
|
+
resultObject: AIGCFaceVerifyResponseBodyResultObject,
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
constructor(map?: { [key: string]: any }) {
|
|
77
|
+
super(map);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export class AIGCFaceVerifyResponse extends $tea.Model {
|
|
82
|
+
headers?: { [key: string]: string };
|
|
83
|
+
statusCode?: number;
|
|
84
|
+
body?: AIGCFaceVerifyResponseBody;
|
|
85
|
+
static names(): { [key: string]: string } {
|
|
86
|
+
return {
|
|
87
|
+
headers: 'headers',
|
|
88
|
+
statusCode: 'statusCode',
|
|
89
|
+
body: 'body',
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
static types(): { [key: string]: any } {
|
|
94
|
+
return {
|
|
95
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
96
|
+
statusCode: 'number',
|
|
97
|
+
body: AIGCFaceVerifyResponseBody,
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
constructor(map?: { [key: string]: any }) {
|
|
102
|
+
super(map);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export class BankMetaVerifyRequest extends $tea.Model {
|
|
107
|
+
bankCard?: string;
|
|
108
|
+
identifyNum?: string;
|
|
109
|
+
mobile?: string;
|
|
110
|
+
paramType?: string;
|
|
111
|
+
productType?: string;
|
|
112
|
+
userName?: string;
|
|
113
|
+
verifyMode?: string;
|
|
114
|
+
static names(): { [key: string]: string } {
|
|
115
|
+
return {
|
|
116
|
+
bankCard: 'BankCard',
|
|
117
|
+
identifyNum: 'IdentifyNum',
|
|
118
|
+
mobile: 'Mobile',
|
|
119
|
+
paramType: 'ParamType',
|
|
120
|
+
productType: 'ProductType',
|
|
121
|
+
userName: 'UserName',
|
|
122
|
+
verifyMode: 'VerifyMode',
|
|
123
|
+
};
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
static types(): { [key: string]: any } {
|
|
127
|
+
return {
|
|
128
|
+
bankCard: 'string',
|
|
129
|
+
identifyNum: 'string',
|
|
130
|
+
mobile: 'string',
|
|
131
|
+
paramType: 'string',
|
|
132
|
+
productType: 'string',
|
|
133
|
+
userName: 'string',
|
|
134
|
+
verifyMode: 'string',
|
|
135
|
+
};
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
constructor(map?: { [key: string]: any }) {
|
|
139
|
+
super(map);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
export class BankMetaVerifyResponseBody extends $tea.Model {
|
|
144
|
+
code?: string;
|
|
145
|
+
message?: string;
|
|
146
|
+
requestId?: string;
|
|
147
|
+
resultObject?: BankMetaVerifyResponseBodyResultObject;
|
|
148
|
+
static names(): { [key: string]: string } {
|
|
149
|
+
return {
|
|
150
|
+
code: 'Code',
|
|
151
|
+
message: 'Message',
|
|
152
|
+
requestId: 'RequestId',
|
|
153
|
+
resultObject: 'ResultObject',
|
|
154
|
+
};
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
static types(): { [key: string]: any } {
|
|
158
|
+
return {
|
|
159
|
+
code: 'string',
|
|
160
|
+
message: 'string',
|
|
161
|
+
requestId: 'string',
|
|
162
|
+
resultObject: BankMetaVerifyResponseBodyResultObject,
|
|
163
|
+
};
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
constructor(map?: { [key: string]: any }) {
|
|
167
|
+
super(map);
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
export class BankMetaVerifyResponse extends $tea.Model {
|
|
172
|
+
headers?: { [key: string]: string };
|
|
173
|
+
statusCode?: number;
|
|
174
|
+
body?: BankMetaVerifyResponseBody;
|
|
175
|
+
static names(): { [key: string]: string } {
|
|
176
|
+
return {
|
|
177
|
+
headers: 'headers',
|
|
178
|
+
statusCode: 'statusCode',
|
|
179
|
+
body: 'body',
|
|
180
|
+
};
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
static types(): { [key: string]: any } {
|
|
184
|
+
return {
|
|
185
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
186
|
+
statusCode: 'number',
|
|
187
|
+
body: BankMetaVerifyResponseBody,
|
|
188
|
+
};
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
constructor(map?: { [key: string]: any }) {
|
|
192
|
+
super(map);
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
16
196
|
export class CompareFaceVerifyRequest extends $tea.Model {
|
|
17
197
|
crop?: string;
|
|
18
198
|
outerOrderNo?: string;
|
|
@@ -100,9 +280,9 @@ export class CompareFaceVerifyResponseBody extends $tea.Model {
|
|
|
100
280
|
}
|
|
101
281
|
|
|
102
282
|
export class CompareFaceVerifyResponse extends $tea.Model {
|
|
103
|
-
headers
|
|
104
|
-
statusCode
|
|
105
|
-
body
|
|
283
|
+
headers?: { [key: string]: string };
|
|
284
|
+
statusCode?: number;
|
|
285
|
+
body?: CompareFaceVerifyResponseBody;
|
|
106
286
|
static names(): { [key: string]: string } {
|
|
107
287
|
return {
|
|
108
288
|
headers: 'headers',
|
|
@@ -184,9 +364,9 @@ export class CompareFacesResponseBody extends $tea.Model {
|
|
|
184
364
|
}
|
|
185
365
|
|
|
186
366
|
export class CompareFacesResponse extends $tea.Model {
|
|
187
|
-
headers
|
|
188
|
-
statusCode
|
|
189
|
-
body
|
|
367
|
+
headers?: { [key: string]: string };
|
|
368
|
+
statusCode?: number;
|
|
369
|
+
body?: CompareFacesResponseBody;
|
|
190
370
|
static names(): { [key: string]: string } {
|
|
191
371
|
return {
|
|
192
372
|
headers: 'headers',
|
|
@@ -383,9 +563,9 @@ export class ContrastFaceVerifyResponseBody extends $tea.Model {
|
|
|
383
563
|
}
|
|
384
564
|
|
|
385
565
|
export class ContrastFaceVerifyResponse extends $tea.Model {
|
|
386
|
-
headers
|
|
387
|
-
statusCode
|
|
388
|
-
body
|
|
566
|
+
headers?: { [key: string]: string };
|
|
567
|
+
statusCode?: number;
|
|
568
|
+
body?: ContrastFaceVerifyResponseBody;
|
|
389
569
|
static names(): { [key: string]: string } {
|
|
390
570
|
return {
|
|
391
571
|
headers: 'headers',
|
|
@@ -458,9 +638,9 @@ export class CreateAuthKeyResponseBody extends $tea.Model {
|
|
|
458
638
|
}
|
|
459
639
|
|
|
460
640
|
export class CreateAuthKeyResponse extends $tea.Model {
|
|
461
|
-
headers
|
|
462
|
-
statusCode
|
|
463
|
-
body
|
|
641
|
+
headers?: { [key: string]: string };
|
|
642
|
+
statusCode?: number;
|
|
643
|
+
body?: CreateAuthKeyResponseBody;
|
|
464
644
|
static names(): { [key: string]: string } {
|
|
465
645
|
return {
|
|
466
646
|
headers: 'headers',
|
|
@@ -548,9 +728,9 @@ export class CreateVerifySettingResponseBody extends $tea.Model {
|
|
|
548
728
|
}
|
|
549
729
|
|
|
550
730
|
export class CreateVerifySettingResponse extends $tea.Model {
|
|
551
|
-
headers
|
|
552
|
-
statusCode
|
|
553
|
-
body
|
|
731
|
+
headers?: { [key: string]: string };
|
|
732
|
+
statusCode?: number;
|
|
733
|
+
body?: CreateVerifySettingResponseBody;
|
|
554
734
|
static names(): { [key: string]: string } {
|
|
555
735
|
return {
|
|
556
736
|
headers: 'headers',
|
|
@@ -641,9 +821,9 @@ export class DescribeDeviceInfoResponseBody extends $tea.Model {
|
|
|
641
821
|
}
|
|
642
822
|
|
|
643
823
|
export class DescribeDeviceInfoResponse extends $tea.Model {
|
|
644
|
-
headers
|
|
645
|
-
statusCode
|
|
646
|
-
body
|
|
824
|
+
headers?: { [key: string]: string };
|
|
825
|
+
statusCode?: number;
|
|
826
|
+
body?: DescribeDeviceInfoResponseBody;
|
|
647
827
|
static names(): { [key: string]: string } {
|
|
648
828
|
return {
|
|
649
829
|
headers: 'headers',
|
|
@@ -719,9 +899,9 @@ export class DescribeFaceVerifyResponseBody extends $tea.Model {
|
|
|
719
899
|
}
|
|
720
900
|
|
|
721
901
|
export class DescribeFaceVerifyResponse extends $tea.Model {
|
|
722
|
-
headers
|
|
723
|
-
statusCode
|
|
724
|
-
body
|
|
902
|
+
headers?: { [key: string]: string };
|
|
903
|
+
statusCode?: number;
|
|
904
|
+
body?: DescribeFaceVerifyResponseBody;
|
|
725
905
|
static names(): { [key: string]: string } {
|
|
726
906
|
return {
|
|
727
907
|
headers: 'headers',
|
|
@@ -766,9 +946,9 @@ export class DescribeOssUploadTokenResponseBody extends $tea.Model {
|
|
|
766
946
|
}
|
|
767
947
|
|
|
768
948
|
export class DescribeOssUploadTokenResponse extends $tea.Model {
|
|
769
|
-
headers
|
|
770
|
-
statusCode
|
|
771
|
-
body
|
|
949
|
+
headers?: { [key: string]: string };
|
|
950
|
+
statusCode?: number;
|
|
951
|
+
body?: DescribeOssUploadTokenResponseBody;
|
|
772
952
|
static names(): { [key: string]: string } {
|
|
773
953
|
return {
|
|
774
954
|
headers: 'headers',
|
|
@@ -790,6 +970,108 @@ export class DescribeOssUploadTokenResponse extends $tea.Model {
|
|
|
790
970
|
}
|
|
791
971
|
}
|
|
792
972
|
|
|
973
|
+
export class DescribePageFaceVerifyDataRequest extends $tea.Model {
|
|
974
|
+
currentPage?: number;
|
|
975
|
+
endDate?: string;
|
|
976
|
+
pageSize?: number;
|
|
977
|
+
productCode?: string;
|
|
978
|
+
sceneId?: number;
|
|
979
|
+
startDate?: string;
|
|
980
|
+
static names(): { [key: string]: string } {
|
|
981
|
+
return {
|
|
982
|
+
currentPage: 'CurrentPage',
|
|
983
|
+
endDate: 'EndDate',
|
|
984
|
+
pageSize: 'PageSize',
|
|
985
|
+
productCode: 'ProductCode',
|
|
986
|
+
sceneId: 'SceneId',
|
|
987
|
+
startDate: 'StartDate',
|
|
988
|
+
};
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
static types(): { [key: string]: any } {
|
|
992
|
+
return {
|
|
993
|
+
currentPage: 'number',
|
|
994
|
+
endDate: 'string',
|
|
995
|
+
pageSize: 'number',
|
|
996
|
+
productCode: 'string',
|
|
997
|
+
sceneId: 'number',
|
|
998
|
+
startDate: 'string',
|
|
999
|
+
};
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
constructor(map?: { [key: string]: any }) {
|
|
1003
|
+
super(map);
|
|
1004
|
+
}
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
export class DescribePageFaceVerifyDataResponseBody extends $tea.Model {
|
|
1008
|
+
code?: string;
|
|
1009
|
+
currentPage?: string;
|
|
1010
|
+
items?: DescribePageFaceVerifyDataResponseBodyItems[];
|
|
1011
|
+
message?: string;
|
|
1012
|
+
pageSize?: string;
|
|
1013
|
+
requestId?: string;
|
|
1014
|
+
success?: string;
|
|
1015
|
+
totalCount?: string;
|
|
1016
|
+
totalPage?: string;
|
|
1017
|
+
static names(): { [key: string]: string } {
|
|
1018
|
+
return {
|
|
1019
|
+
code: 'Code',
|
|
1020
|
+
currentPage: 'CurrentPage',
|
|
1021
|
+
items: 'Items',
|
|
1022
|
+
message: 'Message',
|
|
1023
|
+
pageSize: 'PageSize',
|
|
1024
|
+
requestId: 'RequestId',
|
|
1025
|
+
success: 'Success',
|
|
1026
|
+
totalCount: 'TotalCount',
|
|
1027
|
+
totalPage: 'TotalPage',
|
|
1028
|
+
};
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
static types(): { [key: string]: any } {
|
|
1032
|
+
return {
|
|
1033
|
+
code: 'string',
|
|
1034
|
+
currentPage: 'string',
|
|
1035
|
+
items: { 'type': 'array', 'itemType': DescribePageFaceVerifyDataResponseBodyItems },
|
|
1036
|
+
message: 'string',
|
|
1037
|
+
pageSize: 'string',
|
|
1038
|
+
requestId: 'string',
|
|
1039
|
+
success: 'string',
|
|
1040
|
+
totalCount: 'string',
|
|
1041
|
+
totalPage: 'string',
|
|
1042
|
+
};
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
constructor(map?: { [key: string]: any }) {
|
|
1046
|
+
super(map);
|
|
1047
|
+
}
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
export class DescribePageFaceVerifyDataResponse extends $tea.Model {
|
|
1051
|
+
headers?: { [key: string]: string };
|
|
1052
|
+
statusCode?: number;
|
|
1053
|
+
body?: DescribePageFaceVerifyDataResponseBody;
|
|
1054
|
+
static names(): { [key: string]: string } {
|
|
1055
|
+
return {
|
|
1056
|
+
headers: 'headers',
|
|
1057
|
+
statusCode: 'statusCode',
|
|
1058
|
+
body: 'body',
|
|
1059
|
+
};
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
static types(): { [key: string]: any } {
|
|
1063
|
+
return {
|
|
1064
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1065
|
+
statusCode: 'number',
|
|
1066
|
+
body: DescribePageFaceVerifyDataResponseBody,
|
|
1067
|
+
};
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
constructor(map?: { [key: string]: any }) {
|
|
1071
|
+
super(map);
|
|
1072
|
+
}
|
|
1073
|
+
}
|
|
1074
|
+
|
|
793
1075
|
export class DescribeSmartStatisticsPageListRequest extends $tea.Model {
|
|
794
1076
|
currentPage?: string;
|
|
795
1077
|
endDate?: string;
|
|
@@ -859,9 +1141,9 @@ export class DescribeSmartStatisticsPageListResponseBody extends $tea.Model {
|
|
|
859
1141
|
}
|
|
860
1142
|
|
|
861
1143
|
export class DescribeSmartStatisticsPageListResponse extends $tea.Model {
|
|
862
|
-
headers
|
|
863
|
-
statusCode
|
|
864
|
-
body
|
|
1144
|
+
headers?: { [key: string]: string };
|
|
1145
|
+
statusCode?: number;
|
|
1146
|
+
body?: DescribeSmartStatisticsPageListResponseBody;
|
|
865
1147
|
static names(): { [key: string]: string } {
|
|
866
1148
|
return {
|
|
867
1149
|
headers: 'headers',
|
|
@@ -940,9 +1222,9 @@ export class DescribeVerifyResultResponseBody extends $tea.Model {
|
|
|
940
1222
|
}
|
|
941
1223
|
|
|
942
1224
|
export class DescribeVerifyResultResponse extends $tea.Model {
|
|
943
|
-
headers
|
|
944
|
-
statusCode
|
|
945
|
-
body
|
|
1225
|
+
headers?: { [key: string]: string };
|
|
1226
|
+
statusCode?: number;
|
|
1227
|
+
body?: DescribeVerifyResultResponseBody;
|
|
946
1228
|
static names(): { [key: string]: string } {
|
|
947
1229
|
return {
|
|
948
1230
|
headers: 'headers',
|
|
@@ -1006,9 +1288,9 @@ export class DescribeVerifySDKResponseBody extends $tea.Model {
|
|
|
1006
1288
|
}
|
|
1007
1289
|
|
|
1008
1290
|
export class DescribeVerifySDKResponse extends $tea.Model {
|
|
1009
|
-
headers
|
|
1010
|
-
statusCode
|
|
1011
|
-
body
|
|
1291
|
+
headers?: { [key: string]: string };
|
|
1292
|
+
statusCode?: number;
|
|
1293
|
+
body?: DescribeVerifySDKResponseBody;
|
|
1012
1294
|
static names(): { [key: string]: string } {
|
|
1013
1295
|
return {
|
|
1014
1296
|
headers: 'headers',
|
|
@@ -1120,9 +1402,9 @@ export class DescribeVerifyTokenResponseBody extends $tea.Model {
|
|
|
1120
1402
|
}
|
|
1121
1403
|
|
|
1122
1404
|
export class DescribeVerifyTokenResponse extends $tea.Model {
|
|
1123
|
-
headers
|
|
1124
|
-
statusCode
|
|
1125
|
-
body
|
|
1405
|
+
headers?: { [key: string]: string };
|
|
1406
|
+
statusCode?: number;
|
|
1407
|
+
body?: DescribeVerifyTokenResponseBody;
|
|
1126
1408
|
static names(): { [key: string]: string } {
|
|
1127
1409
|
return {
|
|
1128
1410
|
headers: 'headers',
|
|
@@ -1198,9 +1480,9 @@ export class DetectFaceAttributesResponseBody extends $tea.Model {
|
|
|
1198
1480
|
}
|
|
1199
1481
|
|
|
1200
1482
|
export class DetectFaceAttributesResponse extends $tea.Model {
|
|
1201
|
-
headers
|
|
1202
|
-
statusCode
|
|
1203
|
-
body
|
|
1483
|
+
headers?: { [key: string]: string };
|
|
1484
|
+
statusCode?: number;
|
|
1485
|
+
body?: DetectFaceAttributesResponseBody;
|
|
1204
1486
|
static names(): { [key: string]: string } {
|
|
1205
1487
|
return {
|
|
1206
1488
|
headers: 'headers',
|
|
@@ -1276,9 +1558,9 @@ export class Id2MetaVerifyResponseBody extends $tea.Model {
|
|
|
1276
1558
|
}
|
|
1277
1559
|
|
|
1278
1560
|
export class Id2MetaVerifyResponse extends $tea.Model {
|
|
1279
|
-
headers
|
|
1280
|
-
statusCode
|
|
1281
|
-
body
|
|
1561
|
+
headers?: { [key: string]: string };
|
|
1562
|
+
statusCode?: number;
|
|
1563
|
+
body?: Id2MetaVerifyResponseBody;
|
|
1282
1564
|
static names(): { [key: string]: string } {
|
|
1283
1565
|
return {
|
|
1284
1566
|
headers: 'headers',
|
|
@@ -1444,9 +1726,9 @@ export class InitFaceVerifyResponseBody extends $tea.Model {
|
|
|
1444
1726
|
}
|
|
1445
1727
|
|
|
1446
1728
|
export class InitFaceVerifyResponse extends $tea.Model {
|
|
1447
|
-
headers
|
|
1448
|
-
statusCode
|
|
1449
|
-
body
|
|
1729
|
+
headers?: { [key: string]: string };
|
|
1730
|
+
statusCode?: number;
|
|
1731
|
+
body?: InitFaceVerifyResponseBody;
|
|
1450
1732
|
static names(): { [key: string]: string } {
|
|
1451
1733
|
return {
|
|
1452
1734
|
headers: 'headers',
|
|
@@ -1555,9 +1837,9 @@ export class LivenessFaceVerifyResponseBody extends $tea.Model {
|
|
|
1555
1837
|
}
|
|
1556
1838
|
|
|
1557
1839
|
export class LivenessFaceVerifyResponse extends $tea.Model {
|
|
1558
|
-
headers
|
|
1559
|
-
statusCode
|
|
1560
|
-
body
|
|
1840
|
+
headers?: { [key: string]: string };
|
|
1841
|
+
statusCode?: number;
|
|
1842
|
+
body?: LivenessFaceVerifyResponseBody;
|
|
1561
1843
|
static names(): { [key: string]: string } {
|
|
1562
1844
|
return {
|
|
1563
1845
|
headers: 'headers',
|
|
@@ -1636,9 +1918,9 @@ export class Mobile3MetaDetailVerifyResponseBody extends $tea.Model {
|
|
|
1636
1918
|
}
|
|
1637
1919
|
|
|
1638
1920
|
export class Mobile3MetaDetailVerifyResponse extends $tea.Model {
|
|
1639
|
-
headers
|
|
1640
|
-
statusCode
|
|
1641
|
-
body
|
|
1921
|
+
headers?: { [key: string]: string };
|
|
1922
|
+
statusCode?: number;
|
|
1923
|
+
body?: Mobile3MetaDetailVerifyResponseBody;
|
|
1642
1924
|
static names(): { [key: string]: string } {
|
|
1643
1925
|
return {
|
|
1644
1926
|
headers: 'headers',
|
|
@@ -1717,9 +1999,9 @@ export class Mobile3MetaSimpleVerifyResponseBody extends $tea.Model {
|
|
|
1717
1999
|
}
|
|
1718
2000
|
|
|
1719
2001
|
export class Mobile3MetaSimpleVerifyResponse extends $tea.Model {
|
|
1720
|
-
headers
|
|
1721
|
-
statusCode
|
|
1722
|
-
body
|
|
2002
|
+
headers?: { [key: string]: string };
|
|
2003
|
+
statusCode?: number;
|
|
2004
|
+
body?: Mobile3MetaSimpleVerifyResponseBody;
|
|
1723
2005
|
static names(): { [key: string]: string } {
|
|
1724
2006
|
return {
|
|
1725
2007
|
headers: 'headers',
|
|
@@ -1741,25 +2023,250 @@ export class Mobile3MetaSimpleVerifyResponse extends $tea.Model {
|
|
|
1741
2023
|
}
|
|
1742
2024
|
}
|
|
1743
2025
|
|
|
1744
|
-
export class
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
duration?: string;
|
|
1748
|
-
expiredDay?: string;
|
|
1749
|
-
userDeviceId?: string;
|
|
2026
|
+
export class MobileDetectRequest extends $tea.Model {
|
|
2027
|
+
mobiles?: string;
|
|
2028
|
+
paramType?: string;
|
|
1750
2029
|
static names(): { [key: string]: string } {
|
|
1751
2030
|
return {
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
duration: 'Duration',
|
|
1755
|
-
expiredDay: 'ExpiredDay',
|
|
1756
|
-
userDeviceId: 'UserDeviceId',
|
|
2031
|
+
mobiles: 'Mobiles',
|
|
2032
|
+
paramType: 'ParamType',
|
|
1757
2033
|
};
|
|
1758
2034
|
}
|
|
1759
2035
|
|
|
1760
2036
|
static types(): { [key: string]: any } {
|
|
1761
2037
|
return {
|
|
1762
|
-
|
|
2038
|
+
mobiles: 'string',
|
|
2039
|
+
paramType: 'string',
|
|
2040
|
+
};
|
|
2041
|
+
}
|
|
2042
|
+
|
|
2043
|
+
constructor(map?: { [key: string]: any }) {
|
|
2044
|
+
super(map);
|
|
2045
|
+
}
|
|
2046
|
+
}
|
|
2047
|
+
|
|
2048
|
+
export class MobileDetectResponseBody extends $tea.Model {
|
|
2049
|
+
code?: string;
|
|
2050
|
+
message?: string;
|
|
2051
|
+
requestId?: string;
|
|
2052
|
+
resultObject?: MobileDetectResponseBodyResultObject;
|
|
2053
|
+
static names(): { [key: string]: string } {
|
|
2054
|
+
return {
|
|
2055
|
+
code: 'Code',
|
|
2056
|
+
message: 'Message',
|
|
2057
|
+
requestId: 'RequestId',
|
|
2058
|
+
resultObject: 'ResultObject',
|
|
2059
|
+
};
|
|
2060
|
+
}
|
|
2061
|
+
|
|
2062
|
+
static types(): { [key: string]: any } {
|
|
2063
|
+
return {
|
|
2064
|
+
code: 'string',
|
|
2065
|
+
message: 'string',
|
|
2066
|
+
requestId: 'string',
|
|
2067
|
+
resultObject: MobileDetectResponseBodyResultObject,
|
|
2068
|
+
};
|
|
2069
|
+
}
|
|
2070
|
+
|
|
2071
|
+
constructor(map?: { [key: string]: any }) {
|
|
2072
|
+
super(map);
|
|
2073
|
+
}
|
|
2074
|
+
}
|
|
2075
|
+
|
|
2076
|
+
export class MobileDetectResponse extends $tea.Model {
|
|
2077
|
+
headers?: { [key: string]: string };
|
|
2078
|
+
statusCode?: number;
|
|
2079
|
+
body?: MobileDetectResponseBody;
|
|
2080
|
+
static names(): { [key: string]: string } {
|
|
2081
|
+
return {
|
|
2082
|
+
headers: 'headers',
|
|
2083
|
+
statusCode: 'statusCode',
|
|
2084
|
+
body: 'body',
|
|
2085
|
+
};
|
|
2086
|
+
}
|
|
2087
|
+
|
|
2088
|
+
static types(): { [key: string]: any } {
|
|
2089
|
+
return {
|
|
2090
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2091
|
+
statusCode: 'number',
|
|
2092
|
+
body: MobileDetectResponseBody,
|
|
2093
|
+
};
|
|
2094
|
+
}
|
|
2095
|
+
|
|
2096
|
+
constructor(map?: { [key: string]: any }) {
|
|
2097
|
+
super(map);
|
|
2098
|
+
}
|
|
2099
|
+
}
|
|
2100
|
+
|
|
2101
|
+
export class MobileOnlineStatusRequest extends $tea.Model {
|
|
2102
|
+
mobile?: string;
|
|
2103
|
+
paramType?: string;
|
|
2104
|
+
static names(): { [key: string]: string } {
|
|
2105
|
+
return {
|
|
2106
|
+
mobile: 'Mobile',
|
|
2107
|
+
paramType: 'ParamType',
|
|
2108
|
+
};
|
|
2109
|
+
}
|
|
2110
|
+
|
|
2111
|
+
static types(): { [key: string]: any } {
|
|
2112
|
+
return {
|
|
2113
|
+
mobile: 'string',
|
|
2114
|
+
paramType: 'string',
|
|
2115
|
+
};
|
|
2116
|
+
}
|
|
2117
|
+
|
|
2118
|
+
constructor(map?: { [key: string]: any }) {
|
|
2119
|
+
super(map);
|
|
2120
|
+
}
|
|
2121
|
+
}
|
|
2122
|
+
|
|
2123
|
+
export class MobileOnlineStatusResponseBody extends $tea.Model {
|
|
2124
|
+
code?: string;
|
|
2125
|
+
message?: string;
|
|
2126
|
+
requestId?: string;
|
|
2127
|
+
resultObject?: MobileOnlineStatusResponseBodyResultObject;
|
|
2128
|
+
static names(): { [key: string]: string } {
|
|
2129
|
+
return {
|
|
2130
|
+
code: 'Code',
|
|
2131
|
+
message: 'Message',
|
|
2132
|
+
requestId: 'RequestId',
|
|
2133
|
+
resultObject: 'ResultObject',
|
|
2134
|
+
};
|
|
2135
|
+
}
|
|
2136
|
+
|
|
2137
|
+
static types(): { [key: string]: any } {
|
|
2138
|
+
return {
|
|
2139
|
+
code: 'string',
|
|
2140
|
+
message: 'string',
|
|
2141
|
+
requestId: 'string',
|
|
2142
|
+
resultObject: MobileOnlineStatusResponseBodyResultObject,
|
|
2143
|
+
};
|
|
2144
|
+
}
|
|
2145
|
+
|
|
2146
|
+
constructor(map?: { [key: string]: any }) {
|
|
2147
|
+
super(map);
|
|
2148
|
+
}
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
export class MobileOnlineStatusResponse extends $tea.Model {
|
|
2152
|
+
headers?: { [key: string]: string };
|
|
2153
|
+
statusCode?: number;
|
|
2154
|
+
body?: MobileOnlineStatusResponseBody;
|
|
2155
|
+
static names(): { [key: string]: string } {
|
|
2156
|
+
return {
|
|
2157
|
+
headers: 'headers',
|
|
2158
|
+
statusCode: 'statusCode',
|
|
2159
|
+
body: 'body',
|
|
2160
|
+
};
|
|
2161
|
+
}
|
|
2162
|
+
|
|
2163
|
+
static types(): { [key: string]: any } {
|
|
2164
|
+
return {
|
|
2165
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2166
|
+
statusCode: 'number',
|
|
2167
|
+
body: MobileOnlineStatusResponseBody,
|
|
2168
|
+
};
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
constructor(map?: { [key: string]: any }) {
|
|
2172
|
+
super(map);
|
|
2173
|
+
}
|
|
2174
|
+
}
|
|
2175
|
+
|
|
2176
|
+
export class MobileOnlineTimeRequest extends $tea.Model {
|
|
2177
|
+
mobile?: string;
|
|
2178
|
+
paramType?: string;
|
|
2179
|
+
static names(): { [key: string]: string } {
|
|
2180
|
+
return {
|
|
2181
|
+
mobile: 'Mobile',
|
|
2182
|
+
paramType: 'ParamType',
|
|
2183
|
+
};
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
static types(): { [key: string]: any } {
|
|
2187
|
+
return {
|
|
2188
|
+
mobile: 'string',
|
|
2189
|
+
paramType: 'string',
|
|
2190
|
+
};
|
|
2191
|
+
}
|
|
2192
|
+
|
|
2193
|
+
constructor(map?: { [key: string]: any }) {
|
|
2194
|
+
super(map);
|
|
2195
|
+
}
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2198
|
+
export class MobileOnlineTimeResponseBody extends $tea.Model {
|
|
2199
|
+
code?: string;
|
|
2200
|
+
message?: string;
|
|
2201
|
+
requestId?: string;
|
|
2202
|
+
resultObject?: MobileOnlineTimeResponseBodyResultObject;
|
|
2203
|
+
static names(): { [key: string]: string } {
|
|
2204
|
+
return {
|
|
2205
|
+
code: 'Code',
|
|
2206
|
+
message: 'Message',
|
|
2207
|
+
requestId: 'RequestId',
|
|
2208
|
+
resultObject: 'ResultObject',
|
|
2209
|
+
};
|
|
2210
|
+
}
|
|
2211
|
+
|
|
2212
|
+
static types(): { [key: string]: any } {
|
|
2213
|
+
return {
|
|
2214
|
+
code: 'string',
|
|
2215
|
+
message: 'string',
|
|
2216
|
+
requestId: 'string',
|
|
2217
|
+
resultObject: MobileOnlineTimeResponseBodyResultObject,
|
|
2218
|
+
};
|
|
2219
|
+
}
|
|
2220
|
+
|
|
2221
|
+
constructor(map?: { [key: string]: any }) {
|
|
2222
|
+
super(map);
|
|
2223
|
+
}
|
|
2224
|
+
}
|
|
2225
|
+
|
|
2226
|
+
export class MobileOnlineTimeResponse extends $tea.Model {
|
|
2227
|
+
headers?: { [key: string]: string };
|
|
2228
|
+
statusCode?: number;
|
|
2229
|
+
body?: MobileOnlineTimeResponseBody;
|
|
2230
|
+
static names(): { [key: string]: string } {
|
|
2231
|
+
return {
|
|
2232
|
+
headers: 'headers',
|
|
2233
|
+
statusCode: 'statusCode',
|
|
2234
|
+
body: 'body',
|
|
2235
|
+
};
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2238
|
+
static types(): { [key: string]: any } {
|
|
2239
|
+
return {
|
|
2240
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2241
|
+
statusCode: 'number',
|
|
2242
|
+
body: MobileOnlineTimeResponseBody,
|
|
2243
|
+
};
|
|
2244
|
+
}
|
|
2245
|
+
|
|
2246
|
+
constructor(map?: { [key: string]: any }) {
|
|
2247
|
+
super(map);
|
|
2248
|
+
}
|
|
2249
|
+
}
|
|
2250
|
+
|
|
2251
|
+
export class ModifyDeviceInfoRequest extends $tea.Model {
|
|
2252
|
+
bizType?: string;
|
|
2253
|
+
deviceId?: string;
|
|
2254
|
+
duration?: string;
|
|
2255
|
+
expiredDay?: string;
|
|
2256
|
+
userDeviceId?: string;
|
|
2257
|
+
static names(): { [key: string]: string } {
|
|
2258
|
+
return {
|
|
2259
|
+
bizType: 'BizType',
|
|
2260
|
+
deviceId: 'DeviceId',
|
|
2261
|
+
duration: 'Duration',
|
|
2262
|
+
expiredDay: 'ExpiredDay',
|
|
2263
|
+
userDeviceId: 'UserDeviceId',
|
|
2264
|
+
};
|
|
2265
|
+
}
|
|
2266
|
+
|
|
2267
|
+
static types(): { [key: string]: any } {
|
|
2268
|
+
return {
|
|
2269
|
+
bizType: 'string',
|
|
1763
2270
|
deviceId: 'string',
|
|
1764
2271
|
duration: 'string',
|
|
1765
2272
|
expiredDay: 'string',
|
|
@@ -1807,9 +2314,9 @@ export class ModifyDeviceInfoResponseBody extends $tea.Model {
|
|
|
1807
2314
|
}
|
|
1808
2315
|
|
|
1809
2316
|
export class ModifyDeviceInfoResponse extends $tea.Model {
|
|
1810
|
-
headers
|
|
1811
|
-
statusCode
|
|
1812
|
-
body
|
|
2317
|
+
headers?: { [key: string]: string };
|
|
2318
|
+
statusCode?: number;
|
|
2319
|
+
body?: ModifyDeviceInfoResponseBody;
|
|
1813
2320
|
static names(): { [key: string]: string } {
|
|
1814
2321
|
return {
|
|
1815
2322
|
headers: 'headers',
|
|
@@ -1906,9 +2413,9 @@ export class VerifyMaterialResponseBody extends $tea.Model {
|
|
|
1906
2413
|
}
|
|
1907
2414
|
|
|
1908
2415
|
export class VerifyMaterialResponse extends $tea.Model {
|
|
1909
|
-
headers
|
|
1910
|
-
statusCode
|
|
1911
|
-
body
|
|
2416
|
+
headers?: { [key: string]: string };
|
|
2417
|
+
statusCode?: number;
|
|
2418
|
+
body?: VerifyMaterialResponseBody;
|
|
1912
2419
|
static names(): { [key: string]: string } {
|
|
1913
2420
|
return {
|
|
1914
2421
|
headers: 'headers',
|
|
@@ -1930,6 +2437,53 @@ export class VerifyMaterialResponse extends $tea.Model {
|
|
|
1930
2437
|
}
|
|
1931
2438
|
}
|
|
1932
2439
|
|
|
2440
|
+
export class AIGCFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
2441
|
+
certifyId?: string;
|
|
2442
|
+
result?: string;
|
|
2443
|
+
score?: string;
|
|
2444
|
+
static names(): { [key: string]: string } {
|
|
2445
|
+
return {
|
|
2446
|
+
certifyId: 'CertifyId',
|
|
2447
|
+
result: 'Result',
|
|
2448
|
+
score: 'Score',
|
|
2449
|
+
};
|
|
2450
|
+
}
|
|
2451
|
+
|
|
2452
|
+
static types(): { [key: string]: any } {
|
|
2453
|
+
return {
|
|
2454
|
+
certifyId: 'string',
|
|
2455
|
+
result: 'string',
|
|
2456
|
+
score: 'string',
|
|
2457
|
+
};
|
|
2458
|
+
}
|
|
2459
|
+
|
|
2460
|
+
constructor(map?: { [key: string]: any }) {
|
|
2461
|
+
super(map);
|
|
2462
|
+
}
|
|
2463
|
+
}
|
|
2464
|
+
|
|
2465
|
+
export class BankMetaVerifyResponseBodyResultObject extends $tea.Model {
|
|
2466
|
+
bizCode?: string;
|
|
2467
|
+
subCode?: string;
|
|
2468
|
+
static names(): { [key: string]: string } {
|
|
2469
|
+
return {
|
|
2470
|
+
bizCode: 'BizCode',
|
|
2471
|
+
subCode: 'SubCode',
|
|
2472
|
+
};
|
|
2473
|
+
}
|
|
2474
|
+
|
|
2475
|
+
static types(): { [key: string]: any } {
|
|
2476
|
+
return {
|
|
2477
|
+
bizCode: 'string',
|
|
2478
|
+
subCode: 'string',
|
|
2479
|
+
};
|
|
2480
|
+
}
|
|
2481
|
+
|
|
2482
|
+
constructor(map?: { [key: string]: any }) {
|
|
2483
|
+
super(map);
|
|
2484
|
+
}
|
|
2485
|
+
}
|
|
2486
|
+
|
|
1933
2487
|
export class CompareFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
1934
2488
|
certifyId?: string;
|
|
1935
2489
|
passed?: string;
|
|
@@ -2135,6 +2689,40 @@ export class DescribeOssUploadTokenResponseBodyOssUploadToken extends $tea.Model
|
|
|
2135
2689
|
}
|
|
2136
2690
|
}
|
|
2137
2691
|
|
|
2692
|
+
export class DescribePageFaceVerifyDataResponseBodyItems extends $tea.Model {
|
|
2693
|
+
date?: string;
|
|
2694
|
+
productCode?: string;
|
|
2695
|
+
sceneId?: string;
|
|
2696
|
+
sceneName?: string;
|
|
2697
|
+
successCount?: string;
|
|
2698
|
+
totalCount?: string;
|
|
2699
|
+
static names(): { [key: string]: string } {
|
|
2700
|
+
return {
|
|
2701
|
+
date: 'Date',
|
|
2702
|
+
productCode: 'ProductCode',
|
|
2703
|
+
sceneId: 'SceneId',
|
|
2704
|
+
sceneName: 'SceneName',
|
|
2705
|
+
successCount: 'SuccessCount',
|
|
2706
|
+
totalCount: 'TotalCount',
|
|
2707
|
+
};
|
|
2708
|
+
}
|
|
2709
|
+
|
|
2710
|
+
static types(): { [key: string]: any } {
|
|
2711
|
+
return {
|
|
2712
|
+
date: 'string',
|
|
2713
|
+
productCode: 'string',
|
|
2714
|
+
sceneId: 'string',
|
|
2715
|
+
sceneName: 'string',
|
|
2716
|
+
successCount: 'string',
|
|
2717
|
+
totalCount: 'string',
|
|
2718
|
+
};
|
|
2719
|
+
}
|
|
2720
|
+
|
|
2721
|
+
constructor(map?: { [key: string]: any }) {
|
|
2722
|
+
super(map);
|
|
2723
|
+
}
|
|
2724
|
+
}
|
|
2725
|
+
|
|
2138
2726
|
export class DescribeSmartStatisticsPageListResponseBodyItems extends $tea.Model {
|
|
2139
2727
|
date?: string;
|
|
2140
2728
|
passRate?: string;
|
|
@@ -2495,20 +3083,126 @@ export class Id2MetaVerifyResponseBodyResultObject extends $tea.Model {
|
|
|
2495
3083
|
}
|
|
2496
3084
|
}
|
|
2497
3085
|
|
|
2498
|
-
export class InitFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
2499
|
-
certifyId?: string;
|
|
2500
|
-
certifyUrl?: string;
|
|
3086
|
+
export class InitFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
3087
|
+
certifyId?: string;
|
|
3088
|
+
certifyUrl?: string;
|
|
3089
|
+
static names(): { [key: string]: string } {
|
|
3090
|
+
return {
|
|
3091
|
+
certifyId: 'CertifyId',
|
|
3092
|
+
certifyUrl: 'CertifyUrl',
|
|
3093
|
+
};
|
|
3094
|
+
}
|
|
3095
|
+
|
|
3096
|
+
static types(): { [key: string]: any } {
|
|
3097
|
+
return {
|
|
3098
|
+
certifyId: 'string',
|
|
3099
|
+
certifyUrl: 'string',
|
|
3100
|
+
};
|
|
3101
|
+
}
|
|
3102
|
+
|
|
3103
|
+
constructor(map?: { [key: string]: any }) {
|
|
3104
|
+
super(map);
|
|
3105
|
+
}
|
|
3106
|
+
}
|
|
3107
|
+
|
|
3108
|
+
export class LivenessFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
3109
|
+
certifyId?: string;
|
|
3110
|
+
materialInfo?: string;
|
|
3111
|
+
passed?: string;
|
|
3112
|
+
subCode?: string;
|
|
3113
|
+
static names(): { [key: string]: string } {
|
|
3114
|
+
return {
|
|
3115
|
+
certifyId: 'CertifyId',
|
|
3116
|
+
materialInfo: 'MaterialInfo',
|
|
3117
|
+
passed: 'Passed',
|
|
3118
|
+
subCode: 'SubCode',
|
|
3119
|
+
};
|
|
3120
|
+
}
|
|
3121
|
+
|
|
3122
|
+
static types(): { [key: string]: any } {
|
|
3123
|
+
return {
|
|
3124
|
+
certifyId: 'string',
|
|
3125
|
+
materialInfo: 'string',
|
|
3126
|
+
passed: 'string',
|
|
3127
|
+
subCode: 'string',
|
|
3128
|
+
};
|
|
3129
|
+
}
|
|
3130
|
+
|
|
3131
|
+
constructor(map?: { [key: string]: any }) {
|
|
3132
|
+
super(map);
|
|
3133
|
+
}
|
|
3134
|
+
}
|
|
3135
|
+
|
|
3136
|
+
export class Mobile3MetaDetailVerifyResponseBodyResultObject extends $tea.Model {
|
|
3137
|
+
bizCode?: string;
|
|
3138
|
+
ispName?: string;
|
|
3139
|
+
subCode?: string;
|
|
3140
|
+
static names(): { [key: string]: string } {
|
|
3141
|
+
return {
|
|
3142
|
+
bizCode: 'BizCode',
|
|
3143
|
+
ispName: 'IspName',
|
|
3144
|
+
subCode: 'SubCode',
|
|
3145
|
+
};
|
|
3146
|
+
}
|
|
3147
|
+
|
|
3148
|
+
static types(): { [key: string]: any } {
|
|
3149
|
+
return {
|
|
3150
|
+
bizCode: 'string',
|
|
3151
|
+
ispName: 'string',
|
|
3152
|
+
subCode: 'string',
|
|
3153
|
+
};
|
|
3154
|
+
}
|
|
3155
|
+
|
|
3156
|
+
constructor(map?: { [key: string]: any }) {
|
|
3157
|
+
super(map);
|
|
3158
|
+
}
|
|
3159
|
+
}
|
|
3160
|
+
|
|
3161
|
+
export class Mobile3MetaSimpleVerifyResponseBodyResultObject extends $tea.Model {
|
|
3162
|
+
bizCode?: string;
|
|
3163
|
+
ispName?: string;
|
|
3164
|
+
static names(): { [key: string]: string } {
|
|
3165
|
+
return {
|
|
3166
|
+
bizCode: 'BizCode',
|
|
3167
|
+
ispName: 'IspName',
|
|
3168
|
+
};
|
|
3169
|
+
}
|
|
3170
|
+
|
|
3171
|
+
static types(): { [key: string]: any } {
|
|
3172
|
+
return {
|
|
3173
|
+
bizCode: 'string',
|
|
3174
|
+
ispName: 'string',
|
|
3175
|
+
};
|
|
3176
|
+
}
|
|
3177
|
+
|
|
3178
|
+
constructor(map?: { [key: string]: any }) {
|
|
3179
|
+
super(map);
|
|
3180
|
+
}
|
|
3181
|
+
}
|
|
3182
|
+
|
|
3183
|
+
export class MobileDetectResponseBodyResultObjectItems extends $tea.Model {
|
|
3184
|
+
area?: string;
|
|
3185
|
+
bizCode?: string;
|
|
3186
|
+
ispName?: string;
|
|
3187
|
+
mobile?: string;
|
|
3188
|
+
subCode?: string;
|
|
2501
3189
|
static names(): { [key: string]: string } {
|
|
2502
3190
|
return {
|
|
2503
|
-
|
|
2504
|
-
|
|
3191
|
+
area: 'Area',
|
|
3192
|
+
bizCode: 'BizCode',
|
|
3193
|
+
ispName: 'IspName',
|
|
3194
|
+
mobile: 'Mobile',
|
|
3195
|
+
subCode: 'SubCode',
|
|
2505
3196
|
};
|
|
2506
3197
|
}
|
|
2507
3198
|
|
|
2508
3199
|
static types(): { [key: string]: any } {
|
|
2509
3200
|
return {
|
|
2510
|
-
|
|
2511
|
-
|
|
3201
|
+
area: 'string',
|
|
3202
|
+
bizCode: 'string',
|
|
3203
|
+
ispName: 'string',
|
|
3204
|
+
mobile: 'string',
|
|
3205
|
+
subCode: 'string',
|
|
2512
3206
|
};
|
|
2513
3207
|
}
|
|
2514
3208
|
|
|
@@ -2517,26 +3211,20 @@ export class InitFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
|
2517
3211
|
}
|
|
2518
3212
|
}
|
|
2519
3213
|
|
|
2520
|
-
export class
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
passed?: string;
|
|
2524
|
-
subCode?: string;
|
|
3214
|
+
export class MobileDetectResponseBodyResultObject extends $tea.Model {
|
|
3215
|
+
chargeCount?: string;
|
|
3216
|
+
items?: MobileDetectResponseBodyResultObjectItems[];
|
|
2525
3217
|
static names(): { [key: string]: string } {
|
|
2526
3218
|
return {
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
passed: 'Passed',
|
|
2530
|
-
subCode: 'SubCode',
|
|
3219
|
+
chargeCount: 'ChargeCount',
|
|
3220
|
+
items: 'Items',
|
|
2531
3221
|
};
|
|
2532
3222
|
}
|
|
2533
3223
|
|
|
2534
3224
|
static types(): { [key: string]: any } {
|
|
2535
3225
|
return {
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
passed: 'string',
|
|
2539
|
-
subCode: 'string',
|
|
3226
|
+
chargeCount: 'string',
|
|
3227
|
+
items: { 'type': 'array', 'itemType': MobileDetectResponseBodyResultObjectItems },
|
|
2540
3228
|
};
|
|
2541
3229
|
}
|
|
2542
3230
|
|
|
@@ -2545,7 +3233,7 @@ export class LivenessFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
|
2545
3233
|
}
|
|
2546
3234
|
}
|
|
2547
3235
|
|
|
2548
|
-
export class
|
|
3236
|
+
export class MobileOnlineStatusResponseBodyResultObject extends $tea.Model {
|
|
2549
3237
|
bizCode?: string;
|
|
2550
3238
|
ispName?: string;
|
|
2551
3239
|
subCode?: string;
|
|
@@ -2570,13 +3258,15 @@ export class Mobile3MetaDetailVerifyResponseBodyResultObject extends $tea.Model
|
|
|
2570
3258
|
}
|
|
2571
3259
|
}
|
|
2572
3260
|
|
|
2573
|
-
export class
|
|
3261
|
+
export class MobileOnlineTimeResponseBodyResultObject extends $tea.Model {
|
|
2574
3262
|
bizCode?: string;
|
|
2575
3263
|
ispName?: string;
|
|
3264
|
+
timeCode?: string;
|
|
2576
3265
|
static names(): { [key: string]: string } {
|
|
2577
3266
|
return {
|
|
2578
3267
|
bizCode: 'BizCode',
|
|
2579
3268
|
ispName: 'IspName',
|
|
3269
|
+
timeCode: 'TimeCode',
|
|
2580
3270
|
};
|
|
2581
3271
|
}
|
|
2582
3272
|
|
|
@@ -2584,6 +3274,7 @@ export class Mobile3MetaSimpleVerifyResponseBodyResultObject extends $tea.Model
|
|
|
2584
3274
|
return {
|
|
2585
3275
|
bizCode: 'string',
|
|
2586
3276
|
ispName: 'string',
|
|
3277
|
+
timeCode: 'string',
|
|
2587
3278
|
};
|
|
2588
3279
|
}
|
|
2589
3280
|
|
|
@@ -2698,6 +3389,114 @@ export default class Client extends OpenApi {
|
|
|
2698
3389
|
return EndpointUtil.getEndpointRules(productId, regionId, endpointRule, network, suffix);
|
|
2699
3390
|
}
|
|
2700
3391
|
|
|
3392
|
+
async aIGCFaceVerifyWithOptions(request: AIGCFaceVerifyRequest, runtime: $Util.RuntimeOptions): Promise<AIGCFaceVerifyResponse> {
|
|
3393
|
+
Util.validateModel(request);
|
|
3394
|
+
let query = { };
|
|
3395
|
+
if (!Util.isUnset(request.faceContrastPictureUrl)) {
|
|
3396
|
+
query["FaceContrastPictureUrl"] = request.faceContrastPictureUrl;
|
|
3397
|
+
}
|
|
3398
|
+
|
|
3399
|
+
if (!Util.isUnset(request.ossBucketName)) {
|
|
3400
|
+
query["OssBucketName"] = request.ossBucketName;
|
|
3401
|
+
}
|
|
3402
|
+
|
|
3403
|
+
if (!Util.isUnset(request.ossObjectName)) {
|
|
3404
|
+
query["OssObjectName"] = request.ossObjectName;
|
|
3405
|
+
}
|
|
3406
|
+
|
|
3407
|
+
if (!Util.isUnset(request.outerOrderNo)) {
|
|
3408
|
+
query["OuterOrderNo"] = request.outerOrderNo;
|
|
3409
|
+
}
|
|
3410
|
+
|
|
3411
|
+
if (!Util.isUnset(request.productCode)) {
|
|
3412
|
+
query["ProductCode"] = request.productCode;
|
|
3413
|
+
}
|
|
3414
|
+
|
|
3415
|
+
if (!Util.isUnset(request.sceneId)) {
|
|
3416
|
+
query["SceneId"] = request.sceneId;
|
|
3417
|
+
}
|
|
3418
|
+
|
|
3419
|
+
let body : {[key: string ]: any} = { };
|
|
3420
|
+
if (!Util.isUnset(request.faceContrastPicture)) {
|
|
3421
|
+
body["FaceContrastPicture"] = request.faceContrastPicture;
|
|
3422
|
+
}
|
|
3423
|
+
|
|
3424
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
3425
|
+
query: OpenApiUtil.query(query),
|
|
3426
|
+
body: OpenApiUtil.parseToMap(body),
|
|
3427
|
+
});
|
|
3428
|
+
let params = new $OpenApi.Params({
|
|
3429
|
+
action: "AIGCFaceVerify",
|
|
3430
|
+
version: "2019-03-07",
|
|
3431
|
+
protocol: "HTTPS",
|
|
3432
|
+
pathname: "/",
|
|
3433
|
+
method: "POST",
|
|
3434
|
+
authType: "AK",
|
|
3435
|
+
style: "RPC",
|
|
3436
|
+
reqBodyType: "formData",
|
|
3437
|
+
bodyType: "json",
|
|
3438
|
+
});
|
|
3439
|
+
return $tea.cast<AIGCFaceVerifyResponse>(await this.callApi(params, req, runtime), new AIGCFaceVerifyResponse({}));
|
|
3440
|
+
}
|
|
3441
|
+
|
|
3442
|
+
async aIGCFaceVerify(request: AIGCFaceVerifyRequest): Promise<AIGCFaceVerifyResponse> {
|
|
3443
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
3444
|
+
return await this.aIGCFaceVerifyWithOptions(request, runtime);
|
|
3445
|
+
}
|
|
3446
|
+
|
|
3447
|
+
async bankMetaVerifyWithOptions(request: BankMetaVerifyRequest, runtime: $Util.RuntimeOptions): Promise<BankMetaVerifyResponse> {
|
|
3448
|
+
Util.validateModel(request);
|
|
3449
|
+
let query = { };
|
|
3450
|
+
if (!Util.isUnset(request.bankCard)) {
|
|
3451
|
+
query["BankCard"] = request.bankCard;
|
|
3452
|
+
}
|
|
3453
|
+
|
|
3454
|
+
if (!Util.isUnset(request.identifyNum)) {
|
|
3455
|
+
query["IdentifyNum"] = request.identifyNum;
|
|
3456
|
+
}
|
|
3457
|
+
|
|
3458
|
+
if (!Util.isUnset(request.mobile)) {
|
|
3459
|
+
query["Mobile"] = request.mobile;
|
|
3460
|
+
}
|
|
3461
|
+
|
|
3462
|
+
if (!Util.isUnset(request.paramType)) {
|
|
3463
|
+
query["ParamType"] = request.paramType;
|
|
3464
|
+
}
|
|
3465
|
+
|
|
3466
|
+
if (!Util.isUnset(request.productType)) {
|
|
3467
|
+
query["ProductType"] = request.productType;
|
|
3468
|
+
}
|
|
3469
|
+
|
|
3470
|
+
if (!Util.isUnset(request.userName)) {
|
|
3471
|
+
query["UserName"] = request.userName;
|
|
3472
|
+
}
|
|
3473
|
+
|
|
3474
|
+
if (!Util.isUnset(request.verifyMode)) {
|
|
3475
|
+
query["VerifyMode"] = request.verifyMode;
|
|
3476
|
+
}
|
|
3477
|
+
|
|
3478
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
3479
|
+
query: OpenApiUtil.query(query),
|
|
3480
|
+
});
|
|
3481
|
+
let params = new $OpenApi.Params({
|
|
3482
|
+
action: "BankMetaVerify",
|
|
3483
|
+
version: "2019-03-07",
|
|
3484
|
+
protocol: "HTTPS",
|
|
3485
|
+
pathname: "/",
|
|
3486
|
+
method: "POST",
|
|
3487
|
+
authType: "AK",
|
|
3488
|
+
style: "RPC",
|
|
3489
|
+
reqBodyType: "formData",
|
|
3490
|
+
bodyType: "json",
|
|
3491
|
+
});
|
|
3492
|
+
return $tea.cast<BankMetaVerifyResponse>(await this.callApi(params, req, runtime), new BankMetaVerifyResponse({}));
|
|
3493
|
+
}
|
|
3494
|
+
|
|
3495
|
+
async bankMetaVerify(request: BankMetaVerifyRequest): Promise<BankMetaVerifyResponse> {
|
|
3496
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
3497
|
+
return await this.bankMetaVerifyWithOptions(request, runtime);
|
|
3498
|
+
}
|
|
3499
|
+
|
|
2701
3500
|
async compareFaceVerifyWithOptions(request: CompareFaceVerifyRequest, runtime: $Util.RuntimeOptions): Promise<CompareFaceVerifyResponse> {
|
|
2702
3501
|
Util.validateModel(request);
|
|
2703
3502
|
let body : {[key: string ]: any} = { };
|
|
@@ -3198,6 +3997,55 @@ export default class Client extends OpenApi {
|
|
|
3198
3997
|
return await this.describeOssUploadTokenWithOptions(runtime);
|
|
3199
3998
|
}
|
|
3200
3999
|
|
|
4000
|
+
async describePageFaceVerifyDataWithOptions(request: DescribePageFaceVerifyDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribePageFaceVerifyDataResponse> {
|
|
4001
|
+
Util.validateModel(request);
|
|
4002
|
+
let query = { };
|
|
4003
|
+
if (!Util.isUnset(request.currentPage)) {
|
|
4004
|
+
query["CurrentPage"] = request.currentPage;
|
|
4005
|
+
}
|
|
4006
|
+
|
|
4007
|
+
if (!Util.isUnset(request.endDate)) {
|
|
4008
|
+
query["EndDate"] = request.endDate;
|
|
4009
|
+
}
|
|
4010
|
+
|
|
4011
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
4012
|
+
query["PageSize"] = request.pageSize;
|
|
4013
|
+
}
|
|
4014
|
+
|
|
4015
|
+
if (!Util.isUnset(request.productCode)) {
|
|
4016
|
+
query["ProductCode"] = request.productCode;
|
|
4017
|
+
}
|
|
4018
|
+
|
|
4019
|
+
if (!Util.isUnset(request.sceneId)) {
|
|
4020
|
+
query["SceneId"] = request.sceneId;
|
|
4021
|
+
}
|
|
4022
|
+
|
|
4023
|
+
if (!Util.isUnset(request.startDate)) {
|
|
4024
|
+
query["StartDate"] = request.startDate;
|
|
4025
|
+
}
|
|
4026
|
+
|
|
4027
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
4028
|
+
query: OpenApiUtil.query(query),
|
|
4029
|
+
});
|
|
4030
|
+
let params = new $OpenApi.Params({
|
|
4031
|
+
action: "DescribePageFaceVerifyData",
|
|
4032
|
+
version: "2019-03-07",
|
|
4033
|
+
protocol: "HTTPS",
|
|
4034
|
+
pathname: "/",
|
|
4035
|
+
method: "POST",
|
|
4036
|
+
authType: "AK",
|
|
4037
|
+
style: "RPC",
|
|
4038
|
+
reqBodyType: "formData",
|
|
4039
|
+
bodyType: "json",
|
|
4040
|
+
});
|
|
4041
|
+
return $tea.cast<DescribePageFaceVerifyDataResponse>(await this.callApi(params, req, runtime), new DescribePageFaceVerifyDataResponse({}));
|
|
4042
|
+
}
|
|
4043
|
+
|
|
4044
|
+
async describePageFaceVerifyData(request: DescribePageFaceVerifyDataRequest): Promise<DescribePageFaceVerifyDataResponse> {
|
|
4045
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4046
|
+
return await this.describePageFaceVerifyDataWithOptions(request, runtime);
|
|
4047
|
+
}
|
|
4048
|
+
|
|
3201
4049
|
async describeSmartStatisticsPageListWithOptions(request: DescribeSmartStatisticsPageListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSmartStatisticsPageListResponse> {
|
|
3202
4050
|
Util.validateModel(request);
|
|
3203
4051
|
let query = { };
|
|
@@ -3788,6 +4636,105 @@ export default class Client extends OpenApi {
|
|
|
3788
4636
|
return await this.mobile3MetaSimpleVerifyWithOptions(request, runtime);
|
|
3789
4637
|
}
|
|
3790
4638
|
|
|
4639
|
+
async mobileDetectWithOptions(request: MobileDetectRequest, runtime: $Util.RuntimeOptions): Promise<MobileDetectResponse> {
|
|
4640
|
+
Util.validateModel(request);
|
|
4641
|
+
let query = { };
|
|
4642
|
+
if (!Util.isUnset(request.mobiles)) {
|
|
4643
|
+
query["Mobiles"] = request.mobiles;
|
|
4644
|
+
}
|
|
4645
|
+
|
|
4646
|
+
if (!Util.isUnset(request.paramType)) {
|
|
4647
|
+
query["ParamType"] = request.paramType;
|
|
4648
|
+
}
|
|
4649
|
+
|
|
4650
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
4651
|
+
query: OpenApiUtil.query(query),
|
|
4652
|
+
});
|
|
4653
|
+
let params = new $OpenApi.Params({
|
|
4654
|
+
action: "MobileDetect",
|
|
4655
|
+
version: "2019-03-07",
|
|
4656
|
+
protocol: "HTTPS",
|
|
4657
|
+
pathname: "/",
|
|
4658
|
+
method: "POST",
|
|
4659
|
+
authType: "AK",
|
|
4660
|
+
style: "RPC",
|
|
4661
|
+
reqBodyType: "formData",
|
|
4662
|
+
bodyType: "json",
|
|
4663
|
+
});
|
|
4664
|
+
return $tea.cast<MobileDetectResponse>(await this.callApi(params, req, runtime), new MobileDetectResponse({}));
|
|
4665
|
+
}
|
|
4666
|
+
|
|
4667
|
+
async mobileDetect(request: MobileDetectRequest): Promise<MobileDetectResponse> {
|
|
4668
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4669
|
+
return await this.mobileDetectWithOptions(request, runtime);
|
|
4670
|
+
}
|
|
4671
|
+
|
|
4672
|
+
async mobileOnlineStatusWithOptions(request: MobileOnlineStatusRequest, runtime: $Util.RuntimeOptions): Promise<MobileOnlineStatusResponse> {
|
|
4673
|
+
Util.validateModel(request);
|
|
4674
|
+
let query = { };
|
|
4675
|
+
if (!Util.isUnset(request.mobile)) {
|
|
4676
|
+
query["Mobile"] = request.mobile;
|
|
4677
|
+
}
|
|
4678
|
+
|
|
4679
|
+
if (!Util.isUnset(request.paramType)) {
|
|
4680
|
+
query["ParamType"] = request.paramType;
|
|
4681
|
+
}
|
|
4682
|
+
|
|
4683
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
4684
|
+
query: OpenApiUtil.query(query),
|
|
4685
|
+
});
|
|
4686
|
+
let params = new $OpenApi.Params({
|
|
4687
|
+
action: "MobileOnlineStatus",
|
|
4688
|
+
version: "2019-03-07",
|
|
4689
|
+
protocol: "HTTPS",
|
|
4690
|
+
pathname: "/",
|
|
4691
|
+
method: "POST",
|
|
4692
|
+
authType: "AK",
|
|
4693
|
+
style: "RPC",
|
|
4694
|
+
reqBodyType: "formData",
|
|
4695
|
+
bodyType: "json",
|
|
4696
|
+
});
|
|
4697
|
+
return $tea.cast<MobileOnlineStatusResponse>(await this.callApi(params, req, runtime), new MobileOnlineStatusResponse({}));
|
|
4698
|
+
}
|
|
4699
|
+
|
|
4700
|
+
async mobileOnlineStatus(request: MobileOnlineStatusRequest): Promise<MobileOnlineStatusResponse> {
|
|
4701
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4702
|
+
return await this.mobileOnlineStatusWithOptions(request, runtime);
|
|
4703
|
+
}
|
|
4704
|
+
|
|
4705
|
+
async mobileOnlineTimeWithOptions(request: MobileOnlineTimeRequest, runtime: $Util.RuntimeOptions): Promise<MobileOnlineTimeResponse> {
|
|
4706
|
+
Util.validateModel(request);
|
|
4707
|
+
let query = { };
|
|
4708
|
+
if (!Util.isUnset(request.mobile)) {
|
|
4709
|
+
query["Mobile"] = request.mobile;
|
|
4710
|
+
}
|
|
4711
|
+
|
|
4712
|
+
if (!Util.isUnset(request.paramType)) {
|
|
4713
|
+
query["ParamType"] = request.paramType;
|
|
4714
|
+
}
|
|
4715
|
+
|
|
4716
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
4717
|
+
query: OpenApiUtil.query(query),
|
|
4718
|
+
});
|
|
4719
|
+
let params = new $OpenApi.Params({
|
|
4720
|
+
action: "MobileOnlineTime",
|
|
4721
|
+
version: "2019-03-07",
|
|
4722
|
+
protocol: "HTTPS",
|
|
4723
|
+
pathname: "/",
|
|
4724
|
+
method: "POST",
|
|
4725
|
+
authType: "AK",
|
|
4726
|
+
style: "RPC",
|
|
4727
|
+
reqBodyType: "formData",
|
|
4728
|
+
bodyType: "json",
|
|
4729
|
+
});
|
|
4730
|
+
return $tea.cast<MobileOnlineTimeResponse>(await this.callApi(params, req, runtime), new MobileOnlineTimeResponse({}));
|
|
4731
|
+
}
|
|
4732
|
+
|
|
4733
|
+
async mobileOnlineTime(request: MobileOnlineTimeRequest): Promise<MobileOnlineTimeResponse> {
|
|
4734
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4735
|
+
return await this.mobileOnlineTimeWithOptions(request, runtime);
|
|
4736
|
+
}
|
|
4737
|
+
|
|
3791
4738
|
async modifyDeviceInfoWithOptions(request: ModifyDeviceInfoRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDeviceInfoResponse> {
|
|
3792
4739
|
Util.validateModel(request);
|
|
3793
4740
|
let query = { };
|