@alicloud/cloudauth20190307 1.0.5 → 1.0.6
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 +729 -728
- package/dist/client.js +1538 -1536
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1965 -1962
package/dist/client.js
CHANGED
|
@@ -20,231 +20,301 @@ const openplatform20191219_1 = __importStar(require("@alicloud/openplatform20191
|
|
|
20
20
|
const $OSSUtil = __importStar(require("@alicloud/oss-util"));
|
|
21
21
|
const $FileForm = __importStar(require("@alicloud/tea-fileform"));
|
|
22
22
|
const $tea = __importStar(require("@alicloud/tea-typescript"));
|
|
23
|
-
class
|
|
23
|
+
class CompareFaceVerifyRequest extends $tea.Model {
|
|
24
24
|
constructor(map) {
|
|
25
25
|
super(map);
|
|
26
26
|
}
|
|
27
27
|
static names() {
|
|
28
28
|
return {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
crop: 'Crop',
|
|
30
|
+
outerOrderNo: 'OuterOrderNo',
|
|
31
|
+
productCode: 'ProductCode',
|
|
32
32
|
sceneId: 'SceneId',
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
33
|
+
sourceCertifyId: 'SourceCertifyId',
|
|
34
|
+
sourceFaceContrastPicture: 'SourceFaceContrastPicture',
|
|
35
|
+
sourceFaceContrastPictureUrl: 'SourceFaceContrastPictureUrl',
|
|
36
|
+
sourceOssBucketName: 'SourceOssBucketName',
|
|
37
|
+
sourceOssObjectName: 'SourceOssObjectName',
|
|
38
|
+
targetCertifyId: 'TargetCertifyId',
|
|
39
|
+
targetFaceContrastPicture: 'TargetFaceContrastPicture',
|
|
40
|
+
targetFaceContrastPictureUrl: 'TargetFaceContrastPictureUrl',
|
|
41
|
+
targetOssBucketName: 'TargetOssBucketName',
|
|
42
|
+
targetOssObjectName: 'TargetOssObjectName',
|
|
40
43
|
};
|
|
41
44
|
}
|
|
42
45
|
static types() {
|
|
43
46
|
return {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
+
crop: 'string',
|
|
48
|
+
outerOrderNo: 'string',
|
|
49
|
+
productCode: 'string',
|
|
47
50
|
sceneId: 'number',
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
51
|
+
sourceCertifyId: 'string',
|
|
52
|
+
sourceFaceContrastPicture: 'string',
|
|
53
|
+
sourceFaceContrastPictureUrl: 'string',
|
|
54
|
+
sourceOssBucketName: 'string',
|
|
55
|
+
sourceOssObjectName: 'string',
|
|
56
|
+
targetCertifyId: 'string',
|
|
57
|
+
targetFaceContrastPicture: 'string',
|
|
58
|
+
targetFaceContrastPictureUrl: 'string',
|
|
59
|
+
targetOssBucketName: 'string',
|
|
60
|
+
targetOssObjectName: 'string',
|
|
55
61
|
};
|
|
56
62
|
}
|
|
57
63
|
}
|
|
58
|
-
exports.
|
|
59
|
-
class
|
|
64
|
+
exports.CompareFaceVerifyRequest = CompareFaceVerifyRequest;
|
|
65
|
+
class CompareFaceVerifyResponse extends $tea.Model {
|
|
60
66
|
constructor(map) {
|
|
61
67
|
super(map);
|
|
62
68
|
}
|
|
63
69
|
static names() {
|
|
64
70
|
return {
|
|
71
|
+
code: 'Code',
|
|
72
|
+
message: 'Message',
|
|
65
73
|
requestId: 'RequestId',
|
|
66
|
-
|
|
67
|
-
currentPage: 'CurrentPage',
|
|
68
|
-
pageSize: 'PageSize',
|
|
69
|
-
items: 'Items',
|
|
74
|
+
resultObject: 'ResultObject',
|
|
70
75
|
};
|
|
71
76
|
}
|
|
72
77
|
static types() {
|
|
73
78
|
return {
|
|
79
|
+
code: 'string',
|
|
80
|
+
message: 'string',
|
|
74
81
|
requestId: 'string',
|
|
75
|
-
|
|
76
|
-
currentPage: 'number',
|
|
77
|
-
pageSize: 'number',
|
|
78
|
-
items: { 'type': 'array', 'itemType': DescribeWhitelistSettingResponseItems },
|
|
82
|
+
resultObject: CompareFaceVerifyResponseResultObject,
|
|
79
83
|
};
|
|
80
84
|
}
|
|
81
85
|
}
|
|
82
|
-
exports.
|
|
83
|
-
class
|
|
86
|
+
exports.CompareFaceVerifyResponse = CompareFaceVerifyResponse;
|
|
87
|
+
class CompareFacesRequest extends $tea.Model {
|
|
84
88
|
constructor(map) {
|
|
85
89
|
super(map);
|
|
86
90
|
}
|
|
87
91
|
static names() {
|
|
88
92
|
return {
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
+
sourceImageType: 'SourceImageType',
|
|
94
|
+
sourceImageValue: 'SourceImageValue',
|
|
95
|
+
targetImageType: 'TargetImageType',
|
|
96
|
+
targetImageValue: 'TargetImageValue',
|
|
93
97
|
};
|
|
94
98
|
}
|
|
95
99
|
static types() {
|
|
96
100
|
return {
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
+
sourceImageType: 'string',
|
|
102
|
+
sourceImageValue: 'string',
|
|
103
|
+
targetImageType: 'string',
|
|
104
|
+
targetImageValue: 'string',
|
|
101
105
|
};
|
|
102
106
|
}
|
|
103
107
|
}
|
|
104
|
-
exports.
|
|
105
|
-
class
|
|
108
|
+
exports.CompareFacesRequest = CompareFacesRequest;
|
|
109
|
+
class CompareFacesResponse extends $tea.Model {
|
|
106
110
|
constructor(map) {
|
|
107
111
|
super(map);
|
|
108
112
|
}
|
|
109
113
|
static names() {
|
|
110
114
|
return {
|
|
115
|
+
code: 'Code',
|
|
116
|
+
message: 'Message',
|
|
111
117
|
requestId: 'RequestId',
|
|
112
|
-
|
|
118
|
+
success: 'Success',
|
|
119
|
+
data: 'Data',
|
|
113
120
|
};
|
|
114
121
|
}
|
|
115
122
|
static types() {
|
|
116
123
|
return {
|
|
124
|
+
code: 'string',
|
|
125
|
+
message: 'string',
|
|
117
126
|
requestId: 'string',
|
|
118
|
-
|
|
127
|
+
success: 'boolean',
|
|
128
|
+
data: CompareFacesResponseData,
|
|
119
129
|
};
|
|
120
130
|
}
|
|
121
131
|
}
|
|
122
|
-
exports.
|
|
123
|
-
class
|
|
132
|
+
exports.CompareFacesResponse = CompareFacesResponse;
|
|
133
|
+
class ContrastFaceVerifyRequest extends $tea.Model {
|
|
124
134
|
constructor(map) {
|
|
125
135
|
super(map);
|
|
126
136
|
}
|
|
127
137
|
static names() {
|
|
128
138
|
return {
|
|
129
|
-
|
|
130
|
-
lang: 'Lang',
|
|
131
|
-
serviceCode: 'ServiceCode',
|
|
132
|
-
sceneId: 'SceneId',
|
|
133
|
-
certifyId: 'CertifyId',
|
|
139
|
+
certName: 'CertName',
|
|
134
140
|
certNo: 'CertNo',
|
|
135
|
-
|
|
141
|
+
certType: 'CertType',
|
|
142
|
+
certifyId: 'CertifyId',
|
|
143
|
+
crop: 'Crop',
|
|
144
|
+
deviceToken: 'DeviceToken',
|
|
145
|
+
faceContrastFile: 'FaceContrastFile',
|
|
146
|
+
faceContrastPicture: 'FaceContrastPicture',
|
|
147
|
+
faceContrastPictureUrl: 'FaceContrastPictureUrl',
|
|
148
|
+
ip: 'Ip',
|
|
149
|
+
mobile: 'Mobile',
|
|
150
|
+
model: 'Model',
|
|
151
|
+
ossBucketName: 'OssBucketName',
|
|
152
|
+
ossObjectName: 'OssObjectName',
|
|
153
|
+
outerOrderNo: 'OuterOrderNo',
|
|
154
|
+
productCode: 'ProductCode',
|
|
155
|
+
sceneId: 'SceneId',
|
|
156
|
+
userId: 'UserId',
|
|
136
157
|
};
|
|
137
158
|
}
|
|
138
159
|
static types() {
|
|
139
160
|
return {
|
|
140
|
-
|
|
141
|
-
lang: 'string',
|
|
142
|
-
serviceCode: 'string',
|
|
143
|
-
sceneId: 'number',
|
|
144
|
-
certifyId: 'string',
|
|
161
|
+
certName: 'string',
|
|
145
162
|
certNo: 'string',
|
|
146
|
-
|
|
163
|
+
certType: 'string',
|
|
164
|
+
certifyId: 'string',
|
|
165
|
+
crop: 'string',
|
|
166
|
+
deviceToken: 'string',
|
|
167
|
+
faceContrastFile: 'string',
|
|
168
|
+
faceContrastPicture: 'string',
|
|
169
|
+
faceContrastPictureUrl: 'string',
|
|
170
|
+
ip: 'string',
|
|
171
|
+
mobile: 'string',
|
|
172
|
+
model: 'string',
|
|
173
|
+
ossBucketName: 'string',
|
|
174
|
+
ossObjectName: 'string',
|
|
175
|
+
outerOrderNo: 'string',
|
|
176
|
+
productCode: 'string',
|
|
177
|
+
sceneId: 'number',
|
|
178
|
+
userId: 'string',
|
|
147
179
|
};
|
|
148
180
|
}
|
|
149
181
|
}
|
|
150
|
-
exports.
|
|
151
|
-
class
|
|
182
|
+
exports.ContrastFaceVerifyRequest = ContrastFaceVerifyRequest;
|
|
183
|
+
class ContrastFaceVerifyResponse extends $tea.Model {
|
|
152
184
|
constructor(map) {
|
|
153
185
|
super(map);
|
|
154
186
|
}
|
|
155
187
|
static names() {
|
|
156
188
|
return {
|
|
189
|
+
code: 'Code',
|
|
190
|
+
message: 'Message',
|
|
157
191
|
requestId: 'RequestId',
|
|
158
192
|
resultObject: 'ResultObject',
|
|
159
193
|
};
|
|
160
194
|
}
|
|
161
195
|
static types() {
|
|
162
196
|
return {
|
|
197
|
+
code: 'string',
|
|
198
|
+
message: 'string',
|
|
163
199
|
requestId: 'string',
|
|
164
|
-
resultObject:
|
|
200
|
+
resultObject: ContrastFaceVerifyResponseResultObject,
|
|
165
201
|
};
|
|
166
202
|
}
|
|
167
203
|
}
|
|
168
|
-
exports.
|
|
169
|
-
class
|
|
204
|
+
exports.ContrastFaceVerifyResponse = ContrastFaceVerifyResponse;
|
|
205
|
+
class ContrastFaceVerifyAdvanceRequest extends $tea.Model {
|
|
170
206
|
constructor(map) {
|
|
171
207
|
super(map);
|
|
172
208
|
}
|
|
173
209
|
static names() {
|
|
174
210
|
return {
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
211
|
+
faceContrastFileObject: 'FaceContrastFileObject',
|
|
212
|
+
certName: 'CertName',
|
|
213
|
+
certNo: 'CertNo',
|
|
214
|
+
certType: 'CertType',
|
|
215
|
+
certifyId: 'CertifyId',
|
|
216
|
+
crop: 'Crop',
|
|
217
|
+
deviceToken: 'DeviceToken',
|
|
218
|
+
faceContrastPicture: 'FaceContrastPicture',
|
|
219
|
+
faceContrastPictureUrl: 'FaceContrastPictureUrl',
|
|
220
|
+
ip: 'Ip',
|
|
221
|
+
mobile: 'Mobile',
|
|
222
|
+
model: 'Model',
|
|
223
|
+
ossBucketName: 'OssBucketName',
|
|
224
|
+
ossObjectName: 'OssObjectName',
|
|
225
|
+
outerOrderNo: 'OuterOrderNo',
|
|
226
|
+
productCode: 'ProductCode',
|
|
227
|
+
sceneId: 'SceneId',
|
|
228
|
+
userId: 'UserId',
|
|
185
229
|
};
|
|
186
230
|
}
|
|
187
231
|
static types() {
|
|
188
232
|
return {
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
233
|
+
faceContrastFileObject: 'Readable',
|
|
234
|
+
certName: 'string',
|
|
235
|
+
certNo: 'string',
|
|
236
|
+
certType: 'string',
|
|
237
|
+
certifyId: 'string',
|
|
238
|
+
crop: 'string',
|
|
239
|
+
deviceToken: 'string',
|
|
240
|
+
faceContrastPicture: 'string',
|
|
241
|
+
faceContrastPictureUrl: 'string',
|
|
242
|
+
ip: 'string',
|
|
243
|
+
mobile: 'string',
|
|
244
|
+
model: 'string',
|
|
245
|
+
ossBucketName: 'string',
|
|
246
|
+
ossObjectName: 'string',
|
|
247
|
+
outerOrderNo: 'string',
|
|
248
|
+
productCode: 'string',
|
|
249
|
+
sceneId: 'number',
|
|
250
|
+
userId: 'string',
|
|
199
251
|
};
|
|
200
252
|
}
|
|
201
253
|
}
|
|
202
|
-
exports.
|
|
203
|
-
class
|
|
254
|
+
exports.ContrastFaceVerifyAdvanceRequest = ContrastFaceVerifyAdvanceRequest;
|
|
255
|
+
class CreateAuthKeyRequest extends $tea.Model {
|
|
204
256
|
constructor(map) {
|
|
205
257
|
super(map);
|
|
206
258
|
}
|
|
207
259
|
static names() {
|
|
208
260
|
return {
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
items: 'Items',
|
|
261
|
+
authYears: 'AuthYears',
|
|
262
|
+
bizType: 'BizType',
|
|
263
|
+
test: 'Test',
|
|
264
|
+
userDeviceId: 'UserDeviceId',
|
|
214
265
|
};
|
|
215
266
|
}
|
|
216
267
|
static types() {
|
|
217
268
|
return {
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
items: { 'type': 'array', 'itemType': DescribeWhitelistResponseItems },
|
|
269
|
+
authYears: 'number',
|
|
270
|
+
bizType: 'string',
|
|
271
|
+
test: 'boolean',
|
|
272
|
+
userDeviceId: 'string',
|
|
223
273
|
};
|
|
224
274
|
}
|
|
225
275
|
}
|
|
226
|
-
exports.
|
|
227
|
-
class
|
|
276
|
+
exports.CreateAuthKeyRequest = CreateAuthKeyRequest;
|
|
277
|
+
class CreateAuthKeyResponse extends $tea.Model {
|
|
228
278
|
constructor(map) {
|
|
229
279
|
super(map);
|
|
230
280
|
}
|
|
231
281
|
static names() {
|
|
232
282
|
return {
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
ids: 'Ids',
|
|
283
|
+
authKey: 'AuthKey',
|
|
284
|
+
requestId: 'RequestId',
|
|
236
285
|
};
|
|
237
286
|
}
|
|
238
287
|
static types() {
|
|
239
288
|
return {
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
ids: 'string',
|
|
289
|
+
authKey: 'string',
|
|
290
|
+
requestId: 'string',
|
|
243
291
|
};
|
|
244
292
|
}
|
|
245
293
|
}
|
|
246
|
-
exports.
|
|
247
|
-
class
|
|
294
|
+
exports.CreateAuthKeyResponse = CreateAuthKeyResponse;
|
|
295
|
+
class CreateFaceConfigRequest extends $tea.Model {
|
|
296
|
+
constructor(map) {
|
|
297
|
+
super(map);
|
|
298
|
+
}
|
|
299
|
+
static names() {
|
|
300
|
+
return {
|
|
301
|
+
bizName: 'BizName',
|
|
302
|
+
bizType: 'BizType',
|
|
303
|
+
lang: 'Lang',
|
|
304
|
+
sourceIp: 'SourceIp',
|
|
305
|
+
};
|
|
306
|
+
}
|
|
307
|
+
static types() {
|
|
308
|
+
return {
|
|
309
|
+
bizName: 'string',
|
|
310
|
+
bizType: 'string',
|
|
311
|
+
lang: 'string',
|
|
312
|
+
sourceIp: 'string',
|
|
313
|
+
};
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
exports.CreateFaceConfigRequest = CreateFaceConfigRequest;
|
|
317
|
+
class CreateFaceConfigResponse extends $tea.Model {
|
|
248
318
|
constructor(map) {
|
|
249
319
|
super(map);
|
|
250
320
|
}
|
|
@@ -259,146 +329,160 @@ class DeleteWhitelistResponse extends $tea.Model {
|
|
|
259
329
|
};
|
|
260
330
|
}
|
|
261
331
|
}
|
|
262
|
-
exports.
|
|
263
|
-
class
|
|
332
|
+
exports.CreateFaceConfigResponse = CreateFaceConfigResponse;
|
|
333
|
+
class CreateRPSDKRequest extends $tea.Model {
|
|
264
334
|
constructor(map) {
|
|
265
335
|
super(map);
|
|
266
336
|
}
|
|
267
337
|
static names() {
|
|
268
338
|
return {
|
|
269
|
-
|
|
339
|
+
appUrl: 'AppUrl',
|
|
270
340
|
lang: 'Lang',
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
idCardNum: 'IdCardNum',
|
|
274
|
-
validDay: 'ValidDay',
|
|
341
|
+
platform: 'Platform',
|
|
342
|
+
sourceIp: 'SourceIp',
|
|
275
343
|
};
|
|
276
344
|
}
|
|
277
345
|
static types() {
|
|
278
346
|
return {
|
|
279
|
-
|
|
347
|
+
appUrl: 'string',
|
|
280
348
|
lang: 'string',
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
idCardNum: 'string',
|
|
284
|
-
validDay: 'string',
|
|
349
|
+
platform: 'string',
|
|
350
|
+
sourceIp: 'string',
|
|
285
351
|
};
|
|
286
352
|
}
|
|
287
353
|
}
|
|
288
|
-
exports.
|
|
289
|
-
class
|
|
354
|
+
exports.CreateRPSDKRequest = CreateRPSDKRequest;
|
|
355
|
+
class CreateRPSDKResponse extends $tea.Model {
|
|
290
356
|
constructor(map) {
|
|
291
357
|
super(map);
|
|
292
358
|
}
|
|
293
359
|
static names() {
|
|
294
360
|
return {
|
|
295
361
|
requestId: 'RequestId',
|
|
362
|
+
taskId: 'TaskId',
|
|
296
363
|
};
|
|
297
364
|
}
|
|
298
365
|
static types() {
|
|
299
366
|
return {
|
|
300
367
|
requestId: 'string',
|
|
368
|
+
taskId: 'string',
|
|
301
369
|
};
|
|
302
370
|
}
|
|
303
371
|
}
|
|
304
|
-
exports.
|
|
305
|
-
class
|
|
372
|
+
exports.CreateRPSDKResponse = CreateRPSDKResponse;
|
|
373
|
+
class CreateVerifySDKRequest extends $tea.Model {
|
|
306
374
|
constructor(map) {
|
|
307
375
|
super(map);
|
|
308
376
|
}
|
|
309
377
|
static names() {
|
|
310
378
|
return {
|
|
311
|
-
|
|
312
|
-
|
|
379
|
+
appUrl: 'AppUrl',
|
|
380
|
+
platform: 'Platform',
|
|
313
381
|
};
|
|
314
382
|
}
|
|
315
383
|
static types() {
|
|
316
384
|
return {
|
|
317
|
-
|
|
318
|
-
|
|
385
|
+
appUrl: 'string',
|
|
386
|
+
platform: 'string',
|
|
319
387
|
};
|
|
320
388
|
}
|
|
321
389
|
}
|
|
322
|
-
exports.
|
|
323
|
-
class
|
|
390
|
+
exports.CreateVerifySDKRequest = CreateVerifySDKRequest;
|
|
391
|
+
class CreateVerifySDKResponse extends $tea.Model {
|
|
324
392
|
constructor(map) {
|
|
325
393
|
super(map);
|
|
326
394
|
}
|
|
327
395
|
static names() {
|
|
328
396
|
return {
|
|
329
397
|
requestId: 'RequestId',
|
|
330
|
-
|
|
398
|
+
taskId: 'TaskId',
|
|
331
399
|
};
|
|
332
400
|
}
|
|
333
401
|
static types() {
|
|
334
402
|
return {
|
|
335
403
|
requestId: 'string',
|
|
336
|
-
|
|
404
|
+
taskId: 'string',
|
|
337
405
|
};
|
|
338
406
|
}
|
|
339
407
|
}
|
|
340
|
-
exports.
|
|
341
|
-
class
|
|
408
|
+
exports.CreateVerifySDKResponse = CreateVerifySDKResponse;
|
|
409
|
+
class CreateVerifySettingRequest extends $tea.Model {
|
|
342
410
|
constructor(map) {
|
|
343
411
|
super(map);
|
|
344
412
|
}
|
|
345
413
|
static names() {
|
|
346
414
|
return {
|
|
347
|
-
sourceIp: 'SourceIp',
|
|
348
|
-
lang: 'Lang',
|
|
349
|
-
bizType: 'BizType',
|
|
350
415
|
bizName: 'BizName',
|
|
416
|
+
bizType: 'BizType',
|
|
417
|
+
guideStep: 'GuideStep',
|
|
418
|
+
privacyStep: 'PrivacyStep',
|
|
419
|
+
resultStep: 'ResultStep',
|
|
420
|
+
solution: 'Solution',
|
|
351
421
|
};
|
|
352
422
|
}
|
|
353
423
|
static types() {
|
|
354
424
|
return {
|
|
355
|
-
sourceIp: 'string',
|
|
356
|
-
lang: 'string',
|
|
357
|
-
bizType: 'string',
|
|
358
425
|
bizName: 'string',
|
|
426
|
+
bizType: 'string',
|
|
427
|
+
guideStep: 'boolean',
|
|
428
|
+
privacyStep: 'boolean',
|
|
429
|
+
resultStep: 'boolean',
|
|
430
|
+
solution: 'string',
|
|
359
431
|
};
|
|
360
432
|
}
|
|
361
433
|
}
|
|
362
|
-
exports.
|
|
363
|
-
class
|
|
434
|
+
exports.CreateVerifySettingRequest = CreateVerifySettingRequest;
|
|
435
|
+
class CreateVerifySettingResponse extends $tea.Model {
|
|
364
436
|
constructor(map) {
|
|
365
437
|
super(map);
|
|
366
438
|
}
|
|
367
439
|
static names() {
|
|
368
440
|
return {
|
|
441
|
+
bizName: 'BizName',
|
|
442
|
+
bizType: 'BizType',
|
|
369
443
|
requestId: 'RequestId',
|
|
444
|
+
solution: 'Solution',
|
|
445
|
+
stepList: 'StepList',
|
|
370
446
|
};
|
|
371
447
|
}
|
|
372
448
|
static types() {
|
|
373
449
|
return {
|
|
450
|
+
bizName: 'string',
|
|
451
|
+
bizType: 'string',
|
|
374
452
|
requestId: 'string',
|
|
453
|
+
solution: 'string',
|
|
454
|
+
stepList: { 'type': 'array', 'itemType': 'string' },
|
|
375
455
|
};
|
|
376
456
|
}
|
|
377
457
|
}
|
|
378
|
-
exports.
|
|
379
|
-
class
|
|
458
|
+
exports.CreateVerifySettingResponse = CreateVerifySettingResponse;
|
|
459
|
+
class CreateWhitelistRequest extends $tea.Model {
|
|
380
460
|
constructor(map) {
|
|
381
461
|
super(map);
|
|
382
462
|
}
|
|
383
463
|
static names() {
|
|
384
464
|
return {
|
|
385
|
-
|
|
386
|
-
lang: 'Lang',
|
|
465
|
+
bizId: 'BizId',
|
|
387
466
|
bizType: 'BizType',
|
|
388
|
-
|
|
467
|
+
idCardNum: 'IdCardNum',
|
|
468
|
+
lang: 'Lang',
|
|
469
|
+
sourceIp: 'SourceIp',
|
|
470
|
+
validDay: 'ValidDay',
|
|
389
471
|
};
|
|
390
472
|
}
|
|
391
473
|
static types() {
|
|
392
474
|
return {
|
|
393
|
-
|
|
394
|
-
lang: 'string',
|
|
475
|
+
bizId: 'string',
|
|
395
476
|
bizType: 'string',
|
|
396
|
-
|
|
477
|
+
idCardNum: 'string',
|
|
478
|
+
lang: 'string',
|
|
479
|
+
sourceIp: 'string',
|
|
480
|
+
validDay: 'string',
|
|
397
481
|
};
|
|
398
482
|
}
|
|
399
483
|
}
|
|
400
|
-
exports.
|
|
401
|
-
class
|
|
484
|
+
exports.CreateWhitelistRequest = CreateWhitelistRequest;
|
|
485
|
+
class CreateWhitelistResponse extends $tea.Model {
|
|
402
486
|
constructor(map) {
|
|
403
487
|
super(map);
|
|
404
488
|
}
|
|
@@ -413,956 +497,808 @@ class CreateFaceConfigResponse extends $tea.Model {
|
|
|
413
497
|
};
|
|
414
498
|
}
|
|
415
499
|
}
|
|
416
|
-
exports.
|
|
417
|
-
class
|
|
500
|
+
exports.CreateWhitelistResponse = CreateWhitelistResponse;
|
|
501
|
+
class CreateWhitelistSettingRequest extends $tea.Model {
|
|
418
502
|
constructor(map) {
|
|
419
503
|
super(map);
|
|
420
504
|
}
|
|
421
505
|
static names() {
|
|
422
506
|
return {
|
|
423
|
-
|
|
424
|
-
outerOrderNo: 'OuterOrderNo',
|
|
425
|
-
productCode: 'ProductCode',
|
|
426
|
-
faceContrastPicture: 'FaceContrastPicture',
|
|
427
|
-
deviceToken: 'DeviceToken',
|
|
428
|
-
mobile: 'Mobile',
|
|
429
|
-
ip: 'Ip',
|
|
430
|
-
userId: 'UserId',
|
|
431
|
-
faceContrastPictureUrl: 'FaceContrastPictureUrl',
|
|
507
|
+
certNo: 'CertNo',
|
|
432
508
|
certifyId: 'CertifyId',
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
509
|
+
lang: 'Lang',
|
|
510
|
+
sceneId: 'SceneId',
|
|
511
|
+
serviceCode: 'ServiceCode',
|
|
512
|
+
sourceIp: 'SourceIp',
|
|
513
|
+
validDay: 'ValidDay',
|
|
437
514
|
};
|
|
438
515
|
}
|
|
439
516
|
static types() {
|
|
440
517
|
return {
|
|
441
|
-
|
|
442
|
-
outerOrderNo: 'string',
|
|
443
|
-
productCode: 'string',
|
|
444
|
-
faceContrastPicture: 'string',
|
|
445
|
-
deviceToken: 'string',
|
|
446
|
-
mobile: 'string',
|
|
447
|
-
ip: 'string',
|
|
448
|
-
userId: 'string',
|
|
449
|
-
faceContrastPictureUrl: 'string',
|
|
518
|
+
certNo: 'string',
|
|
450
519
|
certifyId: 'string',
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
520
|
+
lang: 'string',
|
|
521
|
+
sceneId: 'number',
|
|
522
|
+
serviceCode: 'string',
|
|
523
|
+
sourceIp: 'string',
|
|
524
|
+
validDay: 'number',
|
|
455
525
|
};
|
|
456
526
|
}
|
|
457
527
|
}
|
|
458
|
-
exports.
|
|
459
|
-
class
|
|
528
|
+
exports.CreateWhitelistSettingRequest = CreateWhitelistSettingRequest;
|
|
529
|
+
class CreateWhitelistSettingResponse extends $tea.Model {
|
|
460
530
|
constructor(map) {
|
|
461
531
|
super(map);
|
|
462
532
|
}
|
|
463
533
|
static names() {
|
|
464
534
|
return {
|
|
465
|
-
code: 'Code',
|
|
466
|
-
message: 'Message',
|
|
467
535
|
requestId: 'RequestId',
|
|
468
536
|
resultObject: 'ResultObject',
|
|
469
537
|
};
|
|
470
538
|
}
|
|
471
539
|
static types() {
|
|
472
540
|
return {
|
|
473
|
-
code: 'string',
|
|
474
|
-
message: 'string',
|
|
475
541
|
requestId: 'string',
|
|
476
|
-
resultObject:
|
|
542
|
+
resultObject: 'boolean',
|
|
477
543
|
};
|
|
478
544
|
}
|
|
479
545
|
}
|
|
480
|
-
exports.
|
|
481
|
-
class
|
|
546
|
+
exports.CreateWhitelistSettingResponse = CreateWhitelistSettingResponse;
|
|
547
|
+
class DeleteWhitelistRequest extends $tea.Model {
|
|
482
548
|
constructor(map) {
|
|
483
549
|
super(map);
|
|
484
550
|
}
|
|
485
551
|
static names() {
|
|
486
552
|
return {
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
sourceFaceContrastPicture: 'SourceFaceContrastPicture',
|
|
491
|
-
sourceFaceContrastPictureUrl: 'SourceFaceContrastPictureUrl',
|
|
492
|
-
sourceCertifyId: 'SourceCertifyId',
|
|
493
|
-
sourceOssBucketName: 'SourceOssBucketName',
|
|
494
|
-
sourceOssObjectName: 'SourceOssObjectName',
|
|
495
|
-
targetFaceContrastPicture: 'TargetFaceContrastPicture',
|
|
496
|
-
targetFaceContrastPictureUrl: 'TargetFaceContrastPictureUrl',
|
|
497
|
-
targetCertifyId: 'TargetCertifyId',
|
|
498
|
-
targetOssBucketName: 'TargetOssBucketName',
|
|
499
|
-
targetOssObjectName: 'TargetOssObjectName',
|
|
500
|
-
crop: 'Crop',
|
|
553
|
+
ids: 'Ids',
|
|
554
|
+
lang: 'Lang',
|
|
555
|
+
sourceIp: 'SourceIp',
|
|
501
556
|
};
|
|
502
557
|
}
|
|
503
558
|
static types() {
|
|
504
559
|
return {
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
sourceFaceContrastPicture: 'string',
|
|
509
|
-
sourceFaceContrastPictureUrl: 'string',
|
|
510
|
-
sourceCertifyId: 'string',
|
|
511
|
-
sourceOssBucketName: 'string',
|
|
512
|
-
sourceOssObjectName: 'string',
|
|
513
|
-
targetFaceContrastPicture: 'string',
|
|
514
|
-
targetFaceContrastPictureUrl: 'string',
|
|
515
|
-
targetCertifyId: 'string',
|
|
516
|
-
targetOssBucketName: 'string',
|
|
517
|
-
targetOssObjectName: 'string',
|
|
518
|
-
crop: 'string',
|
|
560
|
+
ids: 'string',
|
|
561
|
+
lang: 'string',
|
|
562
|
+
sourceIp: 'string',
|
|
519
563
|
};
|
|
520
564
|
}
|
|
521
565
|
}
|
|
522
|
-
exports.
|
|
523
|
-
class
|
|
566
|
+
exports.DeleteWhitelistRequest = DeleteWhitelistRequest;
|
|
567
|
+
class DeleteWhitelistResponse extends $tea.Model {
|
|
524
568
|
constructor(map) {
|
|
525
569
|
super(map);
|
|
526
570
|
}
|
|
527
571
|
static names() {
|
|
528
572
|
return {
|
|
529
|
-
code: 'Code',
|
|
530
|
-
message: 'Message',
|
|
531
573
|
requestId: 'RequestId',
|
|
532
|
-
resultObject: 'ResultObject',
|
|
533
574
|
};
|
|
534
575
|
}
|
|
535
576
|
static types() {
|
|
536
577
|
return {
|
|
537
|
-
code: 'string',
|
|
538
|
-
message: 'string',
|
|
539
578
|
requestId: 'string',
|
|
540
|
-
resultObject: CompareFaceVerifyResponseResultObject,
|
|
541
579
|
};
|
|
542
580
|
}
|
|
543
581
|
}
|
|
544
|
-
exports.
|
|
545
|
-
class
|
|
582
|
+
exports.DeleteWhitelistResponse = DeleteWhitelistResponse;
|
|
583
|
+
class DeleteWhitelistSettingRequest extends $tea.Model {
|
|
546
584
|
constructor(map) {
|
|
547
585
|
super(map);
|
|
548
586
|
}
|
|
549
587
|
static names() {
|
|
550
588
|
return {
|
|
551
|
-
|
|
552
|
-
|
|
589
|
+
ids: 'Ids',
|
|
590
|
+
lang: 'Lang',
|
|
591
|
+
serviceCode: 'ServiceCode',
|
|
592
|
+
sourceIp: 'SourceIp',
|
|
553
593
|
};
|
|
554
594
|
}
|
|
555
595
|
static types() {
|
|
556
596
|
return {
|
|
557
|
-
|
|
558
|
-
|
|
597
|
+
ids: 'string',
|
|
598
|
+
lang: 'string',
|
|
599
|
+
serviceCode: 'string',
|
|
600
|
+
sourceIp: 'string',
|
|
559
601
|
};
|
|
560
602
|
}
|
|
561
603
|
}
|
|
562
|
-
exports.
|
|
563
|
-
class
|
|
604
|
+
exports.DeleteWhitelistSettingRequest = DeleteWhitelistSettingRequest;
|
|
605
|
+
class DeleteWhitelistSettingResponse extends $tea.Model {
|
|
564
606
|
constructor(map) {
|
|
565
607
|
super(map);
|
|
566
608
|
}
|
|
567
609
|
static names() {
|
|
568
610
|
return {
|
|
569
611
|
requestId: 'RequestId',
|
|
570
|
-
|
|
612
|
+
resultObject: 'ResultObject',
|
|
571
613
|
};
|
|
572
614
|
}
|
|
573
615
|
static types() {
|
|
574
616
|
return {
|
|
575
617
|
requestId: 'string',
|
|
576
|
-
|
|
618
|
+
resultObject: 'boolean',
|
|
577
619
|
};
|
|
578
620
|
}
|
|
579
621
|
}
|
|
580
|
-
exports.
|
|
581
|
-
class
|
|
622
|
+
exports.DeleteWhitelistSettingResponse = DeleteWhitelistSettingResponse;
|
|
623
|
+
class DescribeAppInfoRequest extends $tea.Model {
|
|
582
624
|
constructor(map) {
|
|
583
625
|
super(map);
|
|
584
626
|
}
|
|
585
627
|
static names() {
|
|
586
628
|
return {
|
|
587
|
-
|
|
629
|
+
currentPage: 'CurrentPage',
|
|
630
|
+
pageSize: 'PageSize',
|
|
631
|
+
platform: 'Platform',
|
|
588
632
|
};
|
|
589
633
|
}
|
|
590
634
|
static types() {
|
|
591
635
|
return {
|
|
592
|
-
|
|
636
|
+
currentPage: 'number',
|
|
637
|
+
pageSize: 'number',
|
|
638
|
+
platform: 'string',
|
|
593
639
|
};
|
|
594
640
|
}
|
|
595
641
|
}
|
|
596
|
-
exports.
|
|
597
|
-
class
|
|
642
|
+
exports.DescribeAppInfoRequest = DescribeAppInfoRequest;
|
|
643
|
+
class DescribeAppInfoResponse extends $tea.Model {
|
|
598
644
|
constructor(map) {
|
|
599
645
|
super(map);
|
|
600
646
|
}
|
|
601
647
|
static names() {
|
|
602
648
|
return {
|
|
649
|
+
currentPage: 'CurrentPage',
|
|
650
|
+
pageSize: 'PageSize',
|
|
603
651
|
requestId: 'RequestId',
|
|
604
|
-
|
|
652
|
+
totalCount: 'TotalCount',
|
|
653
|
+
appInfoList: 'AppInfoList',
|
|
605
654
|
};
|
|
606
655
|
}
|
|
607
656
|
static types() {
|
|
608
657
|
return {
|
|
658
|
+
currentPage: 'number',
|
|
659
|
+
pageSize: 'number',
|
|
609
660
|
requestId: 'string',
|
|
610
|
-
|
|
661
|
+
totalCount: 'number',
|
|
662
|
+
appInfoList: { 'type': 'array', 'itemType': DescribeAppInfoResponseAppInfoList },
|
|
611
663
|
};
|
|
612
664
|
}
|
|
613
665
|
}
|
|
614
|
-
exports.
|
|
615
|
-
class
|
|
666
|
+
exports.DescribeAppInfoResponse = DescribeAppInfoResponse;
|
|
667
|
+
class DescribeDeviceInfoRequest extends $tea.Model {
|
|
616
668
|
constructor(map) {
|
|
617
669
|
super(map);
|
|
618
670
|
}
|
|
619
671
|
static names() {
|
|
620
672
|
return {
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
673
|
+
bizType: 'BizType',
|
|
674
|
+
currentPage: 'CurrentPage',
|
|
675
|
+
deviceId: 'DeviceId',
|
|
676
|
+
expiredEndDay: 'ExpiredEndDay',
|
|
677
|
+
expiredStartDay: 'ExpiredStartDay',
|
|
678
|
+
pageSize: 'PageSize',
|
|
679
|
+
userDeviceId: 'UserDeviceId',
|
|
625
680
|
};
|
|
626
681
|
}
|
|
627
682
|
static types() {
|
|
628
683
|
return {
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
684
|
+
bizType: 'string',
|
|
685
|
+
currentPage: 'number',
|
|
686
|
+
deviceId: 'string',
|
|
687
|
+
expiredEndDay: 'string',
|
|
688
|
+
expiredStartDay: 'string',
|
|
689
|
+
pageSize: 'number',
|
|
690
|
+
userDeviceId: 'string',
|
|
633
691
|
};
|
|
634
692
|
}
|
|
635
693
|
}
|
|
636
|
-
exports.
|
|
637
|
-
class
|
|
694
|
+
exports.DescribeDeviceInfoRequest = DescribeDeviceInfoRequest;
|
|
695
|
+
class DescribeDeviceInfoResponse extends $tea.Model {
|
|
638
696
|
constructor(map) {
|
|
639
697
|
super(map);
|
|
640
698
|
}
|
|
641
699
|
static names() {
|
|
642
700
|
return {
|
|
701
|
+
currentPage: 'CurrentPage',
|
|
702
|
+
pageSize: 'PageSize',
|
|
643
703
|
requestId: 'RequestId',
|
|
644
|
-
|
|
704
|
+
totalCount: 'TotalCount',
|
|
705
|
+
deviceInfoList: 'DeviceInfoList',
|
|
645
706
|
};
|
|
646
707
|
}
|
|
647
708
|
static types() {
|
|
648
709
|
return {
|
|
710
|
+
currentPage: 'number',
|
|
711
|
+
pageSize: 'number',
|
|
649
712
|
requestId: 'string',
|
|
650
|
-
|
|
713
|
+
totalCount: 'number',
|
|
714
|
+
deviceInfoList: DescribeDeviceInfoResponseDeviceInfoList,
|
|
651
715
|
};
|
|
652
716
|
}
|
|
653
717
|
}
|
|
654
|
-
exports.
|
|
655
|
-
class
|
|
718
|
+
exports.DescribeDeviceInfoResponse = DescribeDeviceInfoResponse;
|
|
719
|
+
class DescribeFaceConfigRequest extends $tea.Model {
|
|
656
720
|
constructor(map) {
|
|
657
721
|
super(map);
|
|
658
722
|
}
|
|
659
723
|
static names() {
|
|
660
724
|
return {
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
platform: 'Platform',
|
|
725
|
+
lang: 'Lang',
|
|
726
|
+
sourceIp: 'SourceIp',
|
|
664
727
|
};
|
|
665
728
|
}
|
|
666
729
|
static types() {
|
|
667
730
|
return {
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
platform: 'string',
|
|
731
|
+
lang: 'string',
|
|
732
|
+
sourceIp: 'string',
|
|
671
733
|
};
|
|
672
734
|
}
|
|
673
735
|
}
|
|
674
|
-
exports.
|
|
675
|
-
class
|
|
736
|
+
exports.DescribeFaceConfigRequest = DescribeFaceConfigRequest;
|
|
737
|
+
class DescribeFaceConfigResponse extends $tea.Model {
|
|
676
738
|
constructor(map) {
|
|
677
739
|
super(map);
|
|
678
740
|
}
|
|
679
741
|
static names() {
|
|
680
742
|
return {
|
|
681
743
|
requestId: 'RequestId',
|
|
682
|
-
|
|
683
|
-
currentPage: 'CurrentPage',
|
|
684
|
-
totalCount: 'TotalCount',
|
|
685
|
-
appInfoList: 'AppInfoList',
|
|
744
|
+
items: 'Items',
|
|
686
745
|
};
|
|
687
746
|
}
|
|
688
747
|
static types() {
|
|
689
748
|
return {
|
|
690
749
|
requestId: 'string',
|
|
691
|
-
|
|
692
|
-
currentPage: 'number',
|
|
693
|
-
totalCount: 'number',
|
|
694
|
-
appInfoList: { 'type': 'array', 'itemType': DescribeAppInfoResponseAppInfoList },
|
|
750
|
+
items: { 'type': 'array', 'itemType': DescribeFaceConfigResponseItems },
|
|
695
751
|
};
|
|
696
752
|
}
|
|
697
753
|
}
|
|
698
|
-
exports.
|
|
699
|
-
class
|
|
754
|
+
exports.DescribeFaceConfigResponse = DescribeFaceConfigResponse;
|
|
755
|
+
class DescribeFaceUsageRequest extends $tea.Model {
|
|
700
756
|
constructor(map) {
|
|
701
757
|
super(map);
|
|
702
758
|
}
|
|
703
759
|
static names() {
|
|
704
760
|
return {
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
productCode: 'ProductCode',
|
|
708
|
-
certType: 'CertType',
|
|
709
|
-
certName: 'CertName',
|
|
710
|
-
certNo: 'CertNo',
|
|
711
|
-
faceContrastPicture: 'FaceContrastPicture',
|
|
712
|
-
deviceToken: 'DeviceToken',
|
|
713
|
-
mobile: 'Mobile',
|
|
714
|
-
ip: 'Ip',
|
|
715
|
-
userId: 'UserId',
|
|
716
|
-
faceContrastPictureUrl: 'FaceContrastPictureUrl',
|
|
717
|
-
certifyId: 'CertifyId',
|
|
718
|
-
ossBucketName: 'OssBucketName',
|
|
719
|
-
ossObjectName: 'OssObjectName',
|
|
720
|
-
model: 'Model',
|
|
721
|
-
faceContrastFile: 'FaceContrastFile',
|
|
722
|
-
crop: 'Crop',
|
|
761
|
+
endDate: 'EndDate',
|
|
762
|
+
startDate: 'StartDate',
|
|
723
763
|
};
|
|
724
764
|
}
|
|
725
765
|
static types() {
|
|
726
766
|
return {
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
productCode: 'string',
|
|
730
|
-
certType: 'string',
|
|
731
|
-
certName: 'string',
|
|
732
|
-
certNo: 'string',
|
|
733
|
-
faceContrastPicture: 'string',
|
|
734
|
-
deviceToken: 'string',
|
|
735
|
-
mobile: 'string',
|
|
736
|
-
ip: 'string',
|
|
737
|
-
userId: 'string',
|
|
738
|
-
faceContrastPictureUrl: 'string',
|
|
739
|
-
certifyId: 'string',
|
|
740
|
-
ossBucketName: 'string',
|
|
741
|
-
ossObjectName: 'string',
|
|
742
|
-
model: 'string',
|
|
743
|
-
faceContrastFile: 'string',
|
|
744
|
-
crop: 'string',
|
|
767
|
+
endDate: 'string',
|
|
768
|
+
startDate: 'string',
|
|
745
769
|
};
|
|
746
770
|
}
|
|
747
771
|
}
|
|
748
|
-
exports.
|
|
749
|
-
class
|
|
772
|
+
exports.DescribeFaceUsageRequest = DescribeFaceUsageRequest;
|
|
773
|
+
class DescribeFaceUsageResponse extends $tea.Model {
|
|
750
774
|
constructor(map) {
|
|
751
775
|
super(map);
|
|
752
776
|
}
|
|
753
777
|
static names() {
|
|
754
778
|
return {
|
|
755
|
-
code: 'Code',
|
|
756
|
-
message: 'Message',
|
|
757
779
|
requestId: 'RequestId',
|
|
758
|
-
|
|
780
|
+
totalCount: 'TotalCount',
|
|
781
|
+
faceUsageList: 'FaceUsageList',
|
|
759
782
|
};
|
|
760
783
|
}
|
|
761
784
|
static types() {
|
|
762
785
|
return {
|
|
763
|
-
code: 'string',
|
|
764
|
-
message: 'string',
|
|
765
786
|
requestId: 'string',
|
|
766
|
-
|
|
787
|
+
totalCount: 'number',
|
|
788
|
+
faceUsageList: { 'type': 'array', 'itemType': DescribeFaceUsageResponseFaceUsageList },
|
|
767
789
|
};
|
|
768
790
|
}
|
|
769
791
|
}
|
|
770
|
-
exports.
|
|
771
|
-
class
|
|
792
|
+
exports.DescribeFaceUsageResponse = DescribeFaceUsageResponse;
|
|
793
|
+
class DescribeFaceVerifyRequest extends $tea.Model {
|
|
772
794
|
constructor(map) {
|
|
773
795
|
super(map);
|
|
774
796
|
}
|
|
775
797
|
static names() {
|
|
776
798
|
return {
|
|
777
|
-
faceContrastFileObject: 'FaceContrastFileObject',
|
|
778
|
-
sceneId: 'SceneId',
|
|
779
|
-
outerOrderNo: 'OuterOrderNo',
|
|
780
|
-
productCode: 'ProductCode',
|
|
781
|
-
certType: 'CertType',
|
|
782
|
-
certName: 'CertName',
|
|
783
|
-
certNo: 'CertNo',
|
|
784
|
-
faceContrastPicture: 'FaceContrastPicture',
|
|
785
|
-
deviceToken: 'DeviceToken',
|
|
786
|
-
mobile: 'Mobile',
|
|
787
|
-
ip: 'Ip',
|
|
788
|
-
userId: 'UserId',
|
|
789
|
-
faceContrastPictureUrl: 'FaceContrastPictureUrl',
|
|
790
799
|
certifyId: 'CertifyId',
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
model: 'Model',
|
|
794
|
-
crop: 'Crop',
|
|
800
|
+
pictureReturnType: 'PictureReturnType',
|
|
801
|
+
sceneId: 'SceneId',
|
|
795
802
|
};
|
|
796
803
|
}
|
|
797
804
|
static types() {
|
|
798
805
|
return {
|
|
799
|
-
faceContrastFileObject: 'Readable',
|
|
800
|
-
sceneId: 'number',
|
|
801
|
-
outerOrderNo: 'string',
|
|
802
|
-
productCode: 'string',
|
|
803
|
-
certType: 'string',
|
|
804
|
-
certName: 'string',
|
|
805
|
-
certNo: 'string',
|
|
806
|
-
faceContrastPicture: 'string',
|
|
807
|
-
deviceToken: 'string',
|
|
808
|
-
mobile: 'string',
|
|
809
|
-
ip: 'string',
|
|
810
|
-
userId: 'string',
|
|
811
|
-
faceContrastPictureUrl: 'string',
|
|
812
806
|
certifyId: 'string',
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
model: 'string',
|
|
816
|
-
crop: 'string',
|
|
807
|
+
pictureReturnType: 'string',
|
|
808
|
+
sceneId: 'number',
|
|
817
809
|
};
|
|
818
810
|
}
|
|
819
811
|
}
|
|
820
|
-
exports.
|
|
821
|
-
class
|
|
812
|
+
exports.DescribeFaceVerifyRequest = DescribeFaceVerifyRequest;
|
|
813
|
+
class DescribeFaceVerifyResponse extends $tea.Model {
|
|
822
814
|
constructor(map) {
|
|
823
815
|
super(map);
|
|
824
816
|
}
|
|
825
817
|
static names() {
|
|
826
818
|
return {
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
productName: 'ProductName',
|
|
832
|
-
produceNode: 'ProduceNode',
|
|
833
|
-
bizData: 'BizData',
|
|
834
|
-
metaInfo: 'MetaInfo',
|
|
835
|
-
certifyPrincipal: 'CertifyPrincipal',
|
|
836
|
-
appVersion: 'AppVersion',
|
|
837
|
-
deviceToken: 'DeviceToken',
|
|
838
|
-
uaToken: 'UaToken',
|
|
839
|
-
webUmidToken: 'WebUmidToken',
|
|
819
|
+
code: 'Code',
|
|
820
|
+
message: 'Message',
|
|
821
|
+
requestId: 'RequestId',
|
|
822
|
+
resultObject: 'ResultObject',
|
|
840
823
|
};
|
|
841
824
|
}
|
|
842
825
|
static types() {
|
|
843
826
|
return {
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
productName: 'string',
|
|
849
|
-
produceNode: 'string',
|
|
850
|
-
bizData: 'string',
|
|
851
|
-
metaInfo: 'string',
|
|
852
|
-
certifyPrincipal: 'string',
|
|
853
|
-
appVersion: 'string',
|
|
854
|
-
deviceToken: 'string',
|
|
855
|
-
uaToken: 'string',
|
|
856
|
-
webUmidToken: 'string',
|
|
827
|
+
code: 'string',
|
|
828
|
+
message: 'string',
|
|
829
|
+
requestId: 'string',
|
|
830
|
+
resultObject: DescribeFaceVerifyResponseResultObject,
|
|
857
831
|
};
|
|
858
832
|
}
|
|
859
833
|
}
|
|
860
|
-
exports.
|
|
861
|
-
class
|
|
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 {
|
|
862
848
|
constructor(map) {
|
|
863
849
|
super(map);
|
|
864
850
|
}
|
|
865
851
|
static names() {
|
|
866
852
|
return {
|
|
867
853
|
requestId: 'RequestId',
|
|
868
|
-
|
|
869
|
-
code: 'Code',
|
|
870
|
-
resultObject: 'ResultObject',
|
|
854
|
+
ossUploadToken: 'OssUploadToken',
|
|
871
855
|
};
|
|
872
856
|
}
|
|
873
857
|
static types() {
|
|
874
858
|
return {
|
|
875
859
|
requestId: 'string',
|
|
876
|
-
|
|
877
|
-
code: 'string',
|
|
878
|
-
resultObject: InitDeviceResponseResultObject,
|
|
860
|
+
ossUploadToken: DescribeOssUploadTokenResponseOssUploadToken,
|
|
879
861
|
};
|
|
880
862
|
}
|
|
881
863
|
}
|
|
882
|
-
exports.
|
|
883
|
-
class
|
|
864
|
+
exports.DescribeOssUploadTokenResponse = DescribeOssUploadTokenResponse;
|
|
865
|
+
class DescribeRPSDKRequest extends $tea.Model {
|
|
884
866
|
constructor(map) {
|
|
885
867
|
super(map);
|
|
886
868
|
}
|
|
887
869
|
static names() {
|
|
888
870
|
return {
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
certType: 'CertType',
|
|
893
|
-
certName: 'CertName',
|
|
894
|
-
certNo: 'CertNo',
|
|
895
|
-
returnUrl: 'ReturnUrl',
|
|
896
|
-
faceContrastPicture: 'FaceContrastPicture',
|
|
897
|
-
metaInfo: 'MetaInfo',
|
|
898
|
-
mobile: 'Mobile',
|
|
899
|
-
ip: 'Ip',
|
|
900
|
-
userId: 'UserId',
|
|
901
|
-
faceContrastPictureUrl: 'FaceContrastPictureUrl',
|
|
902
|
-
certifyId: 'CertifyId',
|
|
903
|
-
ossBucketName: 'OssBucketName',
|
|
904
|
-
ossObjectName: 'OssObjectName',
|
|
905
|
-
model: 'Model',
|
|
906
|
-
callbackUrl: 'CallbackUrl',
|
|
907
|
-
callbackToken: 'CallbackToken',
|
|
908
|
-
crop: 'Crop',
|
|
871
|
+
lang: 'Lang',
|
|
872
|
+
sourceIp: 'SourceIp',
|
|
873
|
+
taskId: 'TaskId',
|
|
909
874
|
};
|
|
910
875
|
}
|
|
911
876
|
static types() {
|
|
912
877
|
return {
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
certType: 'string',
|
|
917
|
-
certName: 'string',
|
|
918
|
-
certNo: 'string',
|
|
919
|
-
returnUrl: 'string',
|
|
920
|
-
faceContrastPicture: 'string',
|
|
921
|
-
metaInfo: 'string',
|
|
922
|
-
mobile: 'string',
|
|
923
|
-
ip: 'string',
|
|
924
|
-
userId: 'string',
|
|
925
|
-
faceContrastPictureUrl: 'string',
|
|
926
|
-
certifyId: 'string',
|
|
927
|
-
ossBucketName: 'string',
|
|
928
|
-
ossObjectName: 'string',
|
|
929
|
-
model: 'string',
|
|
930
|
-
callbackUrl: 'string',
|
|
931
|
-
callbackToken: 'string',
|
|
932
|
-
crop: 'string',
|
|
878
|
+
lang: 'string',
|
|
879
|
+
sourceIp: 'string',
|
|
880
|
+
taskId: 'string',
|
|
933
881
|
};
|
|
934
882
|
}
|
|
935
883
|
}
|
|
936
|
-
exports.
|
|
937
|
-
class
|
|
884
|
+
exports.DescribeRPSDKRequest = DescribeRPSDKRequest;
|
|
885
|
+
class DescribeRPSDKResponse extends $tea.Model {
|
|
938
886
|
constructor(map) {
|
|
939
887
|
super(map);
|
|
940
888
|
}
|
|
941
889
|
static names() {
|
|
942
890
|
return {
|
|
943
|
-
code: 'Code',
|
|
944
|
-
message: 'Message',
|
|
945
891
|
requestId: 'RequestId',
|
|
946
|
-
|
|
892
|
+
sdkUrl: 'SdkUrl',
|
|
947
893
|
};
|
|
948
894
|
}
|
|
949
895
|
static types() {
|
|
950
896
|
return {
|
|
951
|
-
code: 'string',
|
|
952
|
-
message: 'string',
|
|
953
897
|
requestId: 'string',
|
|
954
|
-
|
|
898
|
+
sdkUrl: 'string',
|
|
955
899
|
};
|
|
956
900
|
}
|
|
957
901
|
}
|
|
958
|
-
exports.
|
|
959
|
-
class
|
|
902
|
+
exports.DescribeRPSDKResponse = DescribeRPSDKResponse;
|
|
903
|
+
class DescribeSdkUrlRequest extends $tea.Model {
|
|
960
904
|
constructor(map) {
|
|
961
905
|
super(map);
|
|
962
906
|
}
|
|
963
907
|
static names() {
|
|
964
908
|
return {
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
pictureReturnType: 'PictureReturnType',
|
|
909
|
+
debug: 'Debug',
|
|
910
|
+
id: 'Id',
|
|
968
911
|
};
|
|
969
912
|
}
|
|
970
913
|
static types() {
|
|
971
914
|
return {
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
pictureReturnType: 'string',
|
|
915
|
+
debug: 'boolean',
|
|
916
|
+
id: 'number',
|
|
975
917
|
};
|
|
976
918
|
}
|
|
977
919
|
}
|
|
978
|
-
exports.
|
|
979
|
-
class
|
|
920
|
+
exports.DescribeSdkUrlRequest = DescribeSdkUrlRequest;
|
|
921
|
+
class DescribeSdkUrlResponse extends $tea.Model {
|
|
980
922
|
constructor(map) {
|
|
981
923
|
super(map);
|
|
982
924
|
}
|
|
983
925
|
static names() {
|
|
984
926
|
return {
|
|
985
|
-
code: 'Code',
|
|
986
|
-
message: 'Message',
|
|
987
927
|
requestId: 'RequestId',
|
|
988
|
-
|
|
928
|
+
sdkUrl: 'SdkUrl',
|
|
989
929
|
};
|
|
990
930
|
}
|
|
991
931
|
static types() {
|
|
992
932
|
return {
|
|
993
|
-
code: 'string',
|
|
994
|
-
message: 'string',
|
|
995
933
|
requestId: 'string',
|
|
996
|
-
|
|
934
|
+
sdkUrl: 'string',
|
|
997
935
|
};
|
|
998
936
|
}
|
|
999
937
|
}
|
|
1000
|
-
exports.
|
|
1001
|
-
class
|
|
938
|
+
exports.DescribeSdkUrlResponse = DescribeSdkUrlResponse;
|
|
939
|
+
class DescribeUpdatePackageResultRequest extends $tea.Model {
|
|
1002
940
|
constructor(map) {
|
|
1003
941
|
super(map);
|
|
1004
942
|
}
|
|
1005
943
|
static names() {
|
|
1006
944
|
return {
|
|
1007
|
-
|
|
1008
|
-
certifyData: 'CertifyData',
|
|
1009
|
-
appVersion: 'AppVersion',
|
|
1010
|
-
extInfo: 'ExtInfo',
|
|
1011
|
-
deviceToken: 'DeviceToken',
|
|
945
|
+
taskId: 'TaskId',
|
|
1012
946
|
};
|
|
1013
947
|
}
|
|
1014
948
|
static types() {
|
|
1015
949
|
return {
|
|
1016
|
-
|
|
1017
|
-
certifyData: 'string',
|
|
1018
|
-
appVersion: 'string',
|
|
1019
|
-
extInfo: 'string',
|
|
1020
|
-
deviceToken: 'string',
|
|
950
|
+
taskId: 'string',
|
|
1021
951
|
};
|
|
1022
952
|
}
|
|
1023
953
|
}
|
|
1024
|
-
exports.
|
|
1025
|
-
class
|
|
954
|
+
exports.DescribeUpdatePackageResultRequest = DescribeUpdatePackageResultRequest;
|
|
955
|
+
class DescribeUpdatePackageResultResponse extends $tea.Model {
|
|
1026
956
|
constructor(map) {
|
|
1027
957
|
super(map);
|
|
1028
958
|
}
|
|
1029
959
|
static names() {
|
|
1030
960
|
return {
|
|
1031
961
|
requestId: 'RequestId',
|
|
1032
|
-
|
|
1033
|
-
message: 'Message',
|
|
1034
|
-
resultObject: 'ResultObject',
|
|
962
|
+
appInfo: 'AppInfo',
|
|
1035
963
|
};
|
|
1036
964
|
}
|
|
1037
965
|
static types() {
|
|
1038
966
|
return {
|
|
1039
967
|
requestId: 'string',
|
|
1040
|
-
|
|
1041
|
-
message: 'string',
|
|
1042
|
-
resultObject: VerifyDeviceResponseResultObject,
|
|
968
|
+
appInfo: DescribeUpdatePackageResultResponseAppInfo,
|
|
1043
969
|
};
|
|
1044
970
|
}
|
|
1045
971
|
}
|
|
1046
|
-
exports.
|
|
1047
|
-
class
|
|
972
|
+
exports.DescribeUpdatePackageResultResponse = DescribeUpdatePackageResultResponse;
|
|
973
|
+
class DescribeUploadInfoRequest extends $tea.Model {
|
|
1048
974
|
constructor(map) {
|
|
1049
975
|
super(map);
|
|
1050
976
|
}
|
|
1051
977
|
static names() {
|
|
1052
978
|
return {
|
|
1053
|
-
|
|
1054
|
-
userDeviceId: 'UserDeviceId',
|
|
1055
|
-
bizType: 'BizType',
|
|
1056
|
-
duration: 'Duration',
|
|
1057
|
-
expiredDay: 'ExpiredDay',
|
|
979
|
+
biz: 'Biz',
|
|
1058
980
|
};
|
|
1059
981
|
}
|
|
1060
982
|
static types() {
|
|
1061
983
|
return {
|
|
1062
|
-
|
|
1063
|
-
userDeviceId: 'string',
|
|
1064
|
-
bizType: 'string',
|
|
1065
|
-
duration: 'string',
|
|
1066
|
-
expiredDay: 'string',
|
|
984
|
+
biz: 'string',
|
|
1067
985
|
};
|
|
1068
986
|
}
|
|
1069
987
|
}
|
|
1070
|
-
exports.
|
|
1071
|
-
class
|
|
988
|
+
exports.DescribeUploadInfoRequest = DescribeUploadInfoRequest;
|
|
989
|
+
class DescribeUploadInfoResponse extends $tea.Model {
|
|
1072
990
|
constructor(map) {
|
|
1073
991
|
super(map);
|
|
1074
992
|
}
|
|
1075
993
|
static names() {
|
|
1076
994
|
return {
|
|
995
|
+
accessid: 'Accessid',
|
|
996
|
+
expire: 'Expire',
|
|
997
|
+
folder: 'Folder',
|
|
998
|
+
host: 'Host',
|
|
999
|
+
policy: 'Policy',
|
|
1077
1000
|
requestId: 'RequestId',
|
|
1078
|
-
|
|
1079
|
-
userDeviceId: 'UserDeviceId',
|
|
1080
|
-
bizType: 'BizType',
|
|
1081
|
-
beginDay: 'BeginDay',
|
|
1082
|
-
expiredDay: 'ExpiredDay',
|
|
1001
|
+
signature: 'Signature',
|
|
1083
1002
|
};
|
|
1084
1003
|
}
|
|
1085
1004
|
static types() {
|
|
1086
1005
|
return {
|
|
1006
|
+
accessid: 'string',
|
|
1007
|
+
expire: 'number',
|
|
1008
|
+
folder: 'string',
|
|
1009
|
+
host: 'string',
|
|
1010
|
+
policy: 'string',
|
|
1087
1011
|
requestId: 'string',
|
|
1088
|
-
|
|
1089
|
-
userDeviceId: 'string',
|
|
1090
|
-
bizType: 'string',
|
|
1091
|
-
beginDay: 'string',
|
|
1092
|
-
expiredDay: 'string',
|
|
1012
|
+
signature: 'string',
|
|
1093
1013
|
};
|
|
1094
1014
|
}
|
|
1095
1015
|
}
|
|
1096
|
-
exports.
|
|
1097
|
-
class
|
|
1098
|
-
constructor(map) {
|
|
1099
|
-
super(map);
|
|
1100
|
-
}
|
|
1016
|
+
exports.DescribeUploadInfoResponse = DescribeUploadInfoResponse;
|
|
1017
|
+
class DescribeUserStatusRequest extends $tea.Model {
|
|
1101
1018
|
static names() {
|
|
1102
|
-
return {
|
|
1103
|
-
taskId: 'TaskId',
|
|
1104
|
-
};
|
|
1019
|
+
return {};
|
|
1105
1020
|
}
|
|
1106
1021
|
static types() {
|
|
1107
|
-
return {
|
|
1108
|
-
|
|
1109
|
-
|
|
1022
|
+
return {};
|
|
1023
|
+
}
|
|
1024
|
+
constructor(map) {
|
|
1025
|
+
super(map);
|
|
1110
1026
|
}
|
|
1111
1027
|
}
|
|
1112
|
-
exports.
|
|
1113
|
-
class
|
|
1028
|
+
exports.DescribeUserStatusRequest = DescribeUserStatusRequest;
|
|
1029
|
+
class DescribeUserStatusResponse extends $tea.Model {
|
|
1114
1030
|
constructor(map) {
|
|
1115
1031
|
super(map);
|
|
1116
1032
|
}
|
|
1117
1033
|
static names() {
|
|
1118
1034
|
return {
|
|
1035
|
+
enabled: 'Enabled',
|
|
1119
1036
|
requestId: 'RequestId',
|
|
1120
|
-
sdkUrl: 'SdkUrl',
|
|
1121
1037
|
};
|
|
1122
1038
|
}
|
|
1123
1039
|
static types() {
|
|
1124
1040
|
return {
|
|
1041
|
+
enabled: 'boolean',
|
|
1125
1042
|
requestId: 'string',
|
|
1126
|
-
sdkUrl: 'string',
|
|
1127
1043
|
};
|
|
1128
1044
|
}
|
|
1129
1045
|
}
|
|
1130
|
-
exports.
|
|
1131
|
-
class
|
|
1046
|
+
exports.DescribeUserStatusResponse = DescribeUserStatusResponse;
|
|
1047
|
+
class DescribeVerifyRecordsRequest extends $tea.Model {
|
|
1132
1048
|
constructor(map) {
|
|
1133
1049
|
super(map);
|
|
1134
1050
|
}
|
|
1135
1051
|
static names() {
|
|
1136
1052
|
return {
|
|
1137
|
-
|
|
1138
|
-
currentPage: 'CurrentPage',
|
|
1139
|
-
deviceId: 'DeviceId',
|
|
1053
|
+
bizId: 'BizId',
|
|
1140
1054
|
bizType: 'BizType',
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1055
|
+
currentPage: 'CurrentPage',
|
|
1056
|
+
endDate: 'EndDate',
|
|
1057
|
+
idCardNum: 'IdCardNum',
|
|
1058
|
+
pageSize: 'PageSize',
|
|
1059
|
+
queryId: 'QueryId',
|
|
1060
|
+
startDate: 'StartDate',
|
|
1061
|
+
statusList: 'StatusList',
|
|
1062
|
+
totalCount: 'TotalCount',
|
|
1144
1063
|
};
|
|
1145
1064
|
}
|
|
1146
1065
|
static types() {
|
|
1147
1066
|
return {
|
|
1148
|
-
|
|
1149
|
-
currentPage: 'number',
|
|
1150
|
-
deviceId: 'string',
|
|
1067
|
+
bizId: 'string',
|
|
1151
1068
|
bizType: 'string',
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1069
|
+
currentPage: 'number',
|
|
1070
|
+
endDate: 'string',
|
|
1071
|
+
idCardNum: 'string',
|
|
1072
|
+
pageSize: 'number',
|
|
1073
|
+
queryId: 'string',
|
|
1074
|
+
startDate: 'string',
|
|
1075
|
+
statusList: 'string',
|
|
1076
|
+
totalCount: 'number',
|
|
1155
1077
|
};
|
|
1156
1078
|
}
|
|
1157
1079
|
}
|
|
1158
|
-
exports.
|
|
1159
|
-
class
|
|
1080
|
+
exports.DescribeVerifyRecordsRequest = DescribeVerifyRecordsRequest;
|
|
1081
|
+
class DescribeVerifyRecordsResponse extends $tea.Model {
|
|
1160
1082
|
constructor(map) {
|
|
1161
1083
|
super(map);
|
|
1162
1084
|
}
|
|
1163
1085
|
static names() {
|
|
1164
1086
|
return {
|
|
1165
|
-
requestId: 'RequestId',
|
|
1166
|
-
pageSize: 'PageSize',
|
|
1167
1087
|
currentPage: 'CurrentPage',
|
|
1088
|
+
pageSize: 'PageSize',
|
|
1089
|
+
queryId: 'QueryId',
|
|
1090
|
+
requestId: 'RequestId',
|
|
1168
1091
|
totalCount: 'TotalCount',
|
|
1169
|
-
|
|
1092
|
+
recordsList: 'RecordsList',
|
|
1170
1093
|
};
|
|
1171
1094
|
}
|
|
1172
1095
|
static types() {
|
|
1173
1096
|
return {
|
|
1174
|
-
requestId: 'string',
|
|
1175
|
-
pageSize: 'number',
|
|
1176
1097
|
currentPage: 'number',
|
|
1098
|
+
pageSize: 'number',
|
|
1099
|
+
queryId: 'string',
|
|
1100
|
+
requestId: 'string',
|
|
1177
1101
|
totalCount: 'number',
|
|
1178
|
-
|
|
1102
|
+
recordsList: { 'type': 'array', 'itemType': DescribeVerifyRecordsResponseRecordsList },
|
|
1179
1103
|
};
|
|
1180
1104
|
}
|
|
1181
1105
|
}
|
|
1182
|
-
exports.
|
|
1183
|
-
class
|
|
1106
|
+
exports.DescribeVerifyRecordsResponse = DescribeVerifyRecordsResponse;
|
|
1107
|
+
class DescribeVerifyResultRequest extends $tea.Model {
|
|
1184
1108
|
constructor(map) {
|
|
1185
1109
|
super(map);
|
|
1186
1110
|
}
|
|
1187
1111
|
static names() {
|
|
1188
1112
|
return {
|
|
1189
|
-
|
|
1190
|
-
|
|
1113
|
+
bizId: 'BizId',
|
|
1114
|
+
bizType: 'BizType',
|
|
1191
1115
|
};
|
|
1192
1116
|
}
|
|
1193
1117
|
static types() {
|
|
1194
1118
|
return {
|
|
1195
|
-
|
|
1196
|
-
|
|
1119
|
+
bizId: 'string',
|
|
1120
|
+
bizType: 'string',
|
|
1197
1121
|
};
|
|
1198
1122
|
}
|
|
1199
1123
|
}
|
|
1200
|
-
exports.
|
|
1201
|
-
class
|
|
1124
|
+
exports.DescribeVerifyResultRequest = DescribeVerifyResultRequest;
|
|
1125
|
+
class DescribeVerifyResultResponse extends $tea.Model {
|
|
1202
1126
|
constructor(map) {
|
|
1203
1127
|
super(map);
|
|
1204
1128
|
}
|
|
1205
1129
|
static names() {
|
|
1206
1130
|
return {
|
|
1131
|
+
authorityComparisionScore: 'AuthorityComparisionScore',
|
|
1132
|
+
faceComparisonScore: 'FaceComparisonScore',
|
|
1133
|
+
idCardFaceComparisonScore: 'IdCardFaceComparisonScore',
|
|
1207
1134
|
requestId: 'RequestId',
|
|
1208
|
-
|
|
1135
|
+
verifyStatus: 'VerifyStatus',
|
|
1136
|
+
material: 'Material',
|
|
1209
1137
|
};
|
|
1210
1138
|
}
|
|
1211
1139
|
static types() {
|
|
1212
1140
|
return {
|
|
1213
|
-
|
|
1214
|
-
|
|
1141
|
+
authorityComparisionScore: 'number',
|
|
1142
|
+
faceComparisonScore: 'number',
|
|
1143
|
+
idCardFaceComparisonScore: 'number',
|
|
1144
|
+
requestId: 'string',
|
|
1145
|
+
verifyStatus: 'number',
|
|
1146
|
+
material: DescribeVerifyResultResponseMaterial,
|
|
1215
1147
|
};
|
|
1216
1148
|
}
|
|
1217
1149
|
}
|
|
1218
|
-
exports.
|
|
1219
|
-
class
|
|
1150
|
+
exports.DescribeVerifyResultResponse = DescribeVerifyResultResponse;
|
|
1151
|
+
class DescribeVerifySDKRequest extends $tea.Model {
|
|
1220
1152
|
constructor(map) {
|
|
1221
1153
|
super(map);
|
|
1222
1154
|
}
|
|
1223
1155
|
static names() {
|
|
1224
1156
|
return {
|
|
1225
|
-
|
|
1226
|
-
userDeviceId: 'UserDeviceId',
|
|
1227
|
-
test: 'Test',
|
|
1228
|
-
authYears: 'AuthYears',
|
|
1157
|
+
taskId: 'TaskId',
|
|
1229
1158
|
};
|
|
1230
1159
|
}
|
|
1231
1160
|
static types() {
|
|
1232
1161
|
return {
|
|
1233
|
-
|
|
1234
|
-
userDeviceId: 'string',
|
|
1235
|
-
test: 'boolean',
|
|
1236
|
-
authYears: 'number',
|
|
1162
|
+
taskId: 'string',
|
|
1237
1163
|
};
|
|
1238
1164
|
}
|
|
1239
1165
|
}
|
|
1240
|
-
exports.
|
|
1241
|
-
class
|
|
1166
|
+
exports.DescribeVerifySDKRequest = DescribeVerifySDKRequest;
|
|
1167
|
+
class DescribeVerifySDKResponse extends $tea.Model {
|
|
1242
1168
|
constructor(map) {
|
|
1243
1169
|
super(map);
|
|
1244
1170
|
}
|
|
1245
1171
|
static names() {
|
|
1246
1172
|
return {
|
|
1247
1173
|
requestId: 'RequestId',
|
|
1248
|
-
|
|
1174
|
+
sdkUrl: 'SdkUrl',
|
|
1249
1175
|
};
|
|
1250
1176
|
}
|
|
1251
1177
|
static types() {
|
|
1252
1178
|
return {
|
|
1253
1179
|
requestId: 'string',
|
|
1254
|
-
|
|
1180
|
+
sdkUrl: 'string',
|
|
1255
1181
|
};
|
|
1256
1182
|
}
|
|
1257
1183
|
}
|
|
1258
|
-
exports.
|
|
1259
|
-
class
|
|
1260
|
-
constructor(map) {
|
|
1261
|
-
super(map);
|
|
1262
|
-
}
|
|
1184
|
+
exports.DescribeVerifySDKResponse = DescribeVerifySDKResponse;
|
|
1185
|
+
class DescribeVerifySettingRequest extends $tea.Model {
|
|
1263
1186
|
static names() {
|
|
1264
|
-
return {
|
|
1265
|
-
materialValue: 'MaterialValue',
|
|
1266
|
-
bizType: 'BizType',
|
|
1267
|
-
};
|
|
1187
|
+
return {};
|
|
1268
1188
|
}
|
|
1269
1189
|
static types() {
|
|
1270
|
-
return {
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1190
|
+
return {};
|
|
1191
|
+
}
|
|
1192
|
+
constructor(map) {
|
|
1193
|
+
super(map);
|
|
1274
1194
|
}
|
|
1275
1195
|
}
|
|
1276
|
-
exports.
|
|
1277
|
-
class
|
|
1196
|
+
exports.DescribeVerifySettingRequest = DescribeVerifySettingRequest;
|
|
1197
|
+
class DescribeVerifySettingResponse extends $tea.Model {
|
|
1278
1198
|
constructor(map) {
|
|
1279
1199
|
super(map);
|
|
1280
1200
|
}
|
|
1281
1201
|
static names() {
|
|
1282
1202
|
return {
|
|
1283
1203
|
requestId: 'RequestId',
|
|
1284
|
-
|
|
1285
|
-
code: 'Code',
|
|
1286
|
-
message: 'Message',
|
|
1287
|
-
data: 'Data',
|
|
1204
|
+
verifySettingList: 'VerifySettingList',
|
|
1288
1205
|
};
|
|
1289
1206
|
}
|
|
1290
1207
|
static types() {
|
|
1291
1208
|
return {
|
|
1292
1209
|
requestId: 'string',
|
|
1293
|
-
|
|
1294
|
-
code: 'string',
|
|
1295
|
-
message: 'string',
|
|
1296
|
-
data: DetectFaceAttributesResponseData,
|
|
1210
|
+
verifySettingList: { 'type': 'array', 'itemType': DescribeVerifySettingResponseVerifySettingList },
|
|
1297
1211
|
};
|
|
1298
1212
|
}
|
|
1299
1213
|
}
|
|
1300
|
-
exports.
|
|
1301
|
-
class
|
|
1214
|
+
exports.DescribeVerifySettingResponse = DescribeVerifySettingResponse;
|
|
1215
|
+
class DescribeVerifyTokenRequest extends $tea.Model {
|
|
1302
1216
|
constructor(map) {
|
|
1303
1217
|
super(map);
|
|
1304
1218
|
}
|
|
1305
1219
|
static names() {
|
|
1306
1220
|
return {
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
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',
|
|
1311
1236
|
};
|
|
1312
1237
|
}
|
|
1313
1238
|
static types() {
|
|
1314
1239
|
return {
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
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',
|
|
1319
1255
|
};
|
|
1320
1256
|
}
|
|
1321
1257
|
}
|
|
1322
|
-
exports.
|
|
1323
|
-
class
|
|
1258
|
+
exports.DescribeVerifyTokenRequest = DescribeVerifyTokenRequest;
|
|
1259
|
+
class DescribeVerifyTokenResponse extends $tea.Model {
|
|
1324
1260
|
constructor(map) {
|
|
1325
1261
|
super(map);
|
|
1326
1262
|
}
|
|
1327
1263
|
static names() {
|
|
1328
1264
|
return {
|
|
1329
1265
|
requestId: 'RequestId',
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
data: 'Data',
|
|
1266
|
+
verifyPageUrl: 'VerifyPageUrl',
|
|
1267
|
+
verifyToken: 'VerifyToken',
|
|
1268
|
+
ossUploadToken: 'OssUploadToken',
|
|
1334
1269
|
};
|
|
1335
1270
|
}
|
|
1336
1271
|
static types() {
|
|
1337
1272
|
return {
|
|
1338
1273
|
requestId: 'string',
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
data: CompareFacesResponseData,
|
|
1274
|
+
verifyPageUrl: 'string',
|
|
1275
|
+
verifyToken: 'string',
|
|
1276
|
+
ossUploadToken: DescribeVerifyTokenResponseOssUploadToken,
|
|
1343
1277
|
};
|
|
1344
1278
|
}
|
|
1345
1279
|
}
|
|
1346
|
-
exports.
|
|
1347
|
-
class
|
|
1280
|
+
exports.DescribeVerifyTokenResponse = DescribeVerifyTokenResponse;
|
|
1281
|
+
class DescribeVerifyUsageRequest extends $tea.Model {
|
|
1348
1282
|
constructor(map) {
|
|
1349
1283
|
super(map);
|
|
1350
1284
|
}
|
|
1351
1285
|
static names() {
|
|
1352
1286
|
return {
|
|
1353
|
-
|
|
1287
|
+
bizType: 'BizType',
|
|
1354
1288
|
endDate: 'EndDate',
|
|
1289
|
+
startDate: 'StartDate',
|
|
1355
1290
|
};
|
|
1356
1291
|
}
|
|
1357
1292
|
static types() {
|
|
1358
1293
|
return {
|
|
1359
|
-
|
|
1294
|
+
bizType: 'string',
|
|
1360
1295
|
endDate: 'string',
|
|
1296
|
+
startDate: 'string',
|
|
1361
1297
|
};
|
|
1362
1298
|
}
|
|
1363
1299
|
}
|
|
1364
|
-
exports.
|
|
1365
|
-
class
|
|
1300
|
+
exports.DescribeVerifyUsageRequest = DescribeVerifyUsageRequest;
|
|
1301
|
+
class DescribeVerifyUsageResponse extends $tea.Model {
|
|
1366
1302
|
constructor(map) {
|
|
1367
1303
|
super(map);
|
|
1368
1304
|
}
|
|
@@ -1370,383 +1306,455 @@ class DescribeFaceUsageResponse extends $tea.Model {
|
|
|
1370
1306
|
return {
|
|
1371
1307
|
requestId: 'RequestId',
|
|
1372
1308
|
totalCount: 'TotalCount',
|
|
1373
|
-
|
|
1309
|
+
verifyUsageList: 'VerifyUsageList',
|
|
1374
1310
|
};
|
|
1375
1311
|
}
|
|
1376
1312
|
static types() {
|
|
1377
1313
|
return {
|
|
1378
1314
|
requestId: 'string',
|
|
1379
1315
|
totalCount: 'number',
|
|
1380
|
-
|
|
1316
|
+
verifyUsageList: { 'type': 'array', 'itemType': DescribeVerifyUsageResponseVerifyUsageList },
|
|
1381
1317
|
};
|
|
1382
1318
|
}
|
|
1383
1319
|
}
|
|
1384
|
-
exports.
|
|
1385
|
-
class
|
|
1320
|
+
exports.DescribeVerifyUsageResponse = DescribeVerifyUsageResponse;
|
|
1321
|
+
class DescribeWhitelistRequest extends $tea.Model {
|
|
1386
1322
|
constructor(map) {
|
|
1387
1323
|
super(map);
|
|
1388
1324
|
}
|
|
1389
1325
|
static names() {
|
|
1390
1326
|
return {
|
|
1391
|
-
totalCount: 'TotalCount',
|
|
1392
|
-
pageSize: 'PageSize',
|
|
1393
|
-
currentPage: 'CurrentPage',
|
|
1394
|
-
bizType: 'BizType',
|
|
1395
|
-
startDate: 'StartDate',
|
|
1396
|
-
endDate: 'EndDate',
|
|
1397
1327
|
bizId: 'BizId',
|
|
1328
|
+
bizType: 'BizType',
|
|
1329
|
+
currentPage: 'CurrentPage',
|
|
1398
1330
|
idCardNum: 'IdCardNum',
|
|
1399
|
-
|
|
1400
|
-
|
|
1331
|
+
lang: 'Lang',
|
|
1332
|
+
pageSize: 'PageSize',
|
|
1333
|
+
sourceIp: 'SourceIp',
|
|
1334
|
+
valid: 'Valid',
|
|
1335
|
+
validEndDate: 'ValidEndDate',
|
|
1336
|
+
validStartDate: 'ValidStartDate',
|
|
1401
1337
|
};
|
|
1402
1338
|
}
|
|
1403
1339
|
static types() {
|
|
1404
1340
|
return {
|
|
1405
|
-
totalCount: 'number',
|
|
1406
|
-
pageSize: 'number',
|
|
1407
|
-
currentPage: 'number',
|
|
1408
|
-
bizType: 'string',
|
|
1409
|
-
startDate: 'string',
|
|
1410
|
-
endDate: 'string',
|
|
1411
1341
|
bizId: 'string',
|
|
1342
|
+
bizType: 'string',
|
|
1343
|
+
currentPage: 'number',
|
|
1412
1344
|
idCardNum: 'string',
|
|
1413
|
-
|
|
1414
|
-
|
|
1345
|
+
lang: 'string',
|
|
1346
|
+
pageSize: 'number',
|
|
1347
|
+
sourceIp: 'string',
|
|
1348
|
+
valid: 'string',
|
|
1349
|
+
validEndDate: 'string',
|
|
1350
|
+
validStartDate: 'string',
|
|
1415
1351
|
};
|
|
1416
1352
|
}
|
|
1417
1353
|
}
|
|
1418
|
-
exports.
|
|
1419
|
-
class
|
|
1354
|
+
exports.DescribeWhitelistRequest = DescribeWhitelistRequest;
|
|
1355
|
+
class DescribeWhitelistResponse extends $tea.Model {
|
|
1420
1356
|
constructor(map) {
|
|
1421
1357
|
super(map);
|
|
1422
1358
|
}
|
|
1423
1359
|
static names() {
|
|
1424
1360
|
return {
|
|
1361
|
+
currentPage: 'CurrentPage',
|
|
1362
|
+
pageSize: 'PageSize',
|
|
1425
1363
|
requestId: 'RequestId',
|
|
1426
1364
|
totalCount: 'TotalCount',
|
|
1427
|
-
|
|
1428
|
-
currentPage: 'CurrentPage',
|
|
1429
|
-
queryId: 'QueryId',
|
|
1430
|
-
recordsList: 'RecordsList',
|
|
1365
|
+
items: 'Items',
|
|
1431
1366
|
};
|
|
1432
1367
|
}
|
|
1433
1368
|
static types() {
|
|
1434
1369
|
return {
|
|
1370
|
+
currentPage: 'number',
|
|
1371
|
+
pageSize: 'number',
|
|
1435
1372
|
requestId: 'string',
|
|
1436
1373
|
totalCount: 'number',
|
|
1437
|
-
|
|
1438
|
-
currentPage: 'number',
|
|
1439
|
-
queryId: 'string',
|
|
1440
|
-
recordsList: { 'type': 'array', 'itemType': DescribeVerifyRecordsResponseRecordsList },
|
|
1374
|
+
items: { 'type': 'array', 'itemType': DescribeWhitelistResponseItems },
|
|
1441
1375
|
};
|
|
1442
1376
|
}
|
|
1443
1377
|
}
|
|
1444
|
-
exports.
|
|
1445
|
-
class
|
|
1378
|
+
exports.DescribeWhitelistResponse = DescribeWhitelistResponse;
|
|
1379
|
+
class DescribeWhitelistSettingRequest extends $tea.Model {
|
|
1446
1380
|
constructor(map) {
|
|
1447
1381
|
super(map);
|
|
1448
1382
|
}
|
|
1449
1383
|
static names() {
|
|
1450
1384
|
return {
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
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',
|
|
1457
1396
|
};
|
|
1458
1397
|
}
|
|
1459
1398
|
static types() {
|
|
1460
1399
|
return {
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
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',
|
|
1467
1411
|
};
|
|
1468
1412
|
}
|
|
1469
1413
|
}
|
|
1470
|
-
exports.
|
|
1471
|
-
class
|
|
1414
|
+
exports.DescribeWhitelistSettingRequest = DescribeWhitelistSettingRequest;
|
|
1415
|
+
class DescribeWhitelistSettingResponse extends $tea.Model {
|
|
1472
1416
|
constructor(map) {
|
|
1473
1417
|
super(map);
|
|
1474
1418
|
}
|
|
1475
1419
|
static names() {
|
|
1476
1420
|
return {
|
|
1421
|
+
currentPage: 'CurrentPage',
|
|
1422
|
+
pageSize: 'PageSize',
|
|
1477
1423
|
requestId: 'RequestId',
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
solution: 'Solution',
|
|
1481
|
-
stepList: 'StepList',
|
|
1424
|
+
totalCount: 'TotalCount',
|
|
1425
|
+
items: 'Items',
|
|
1482
1426
|
};
|
|
1483
1427
|
}
|
|
1484
1428
|
static types() {
|
|
1485
1429
|
return {
|
|
1430
|
+
currentPage: 'number',
|
|
1431
|
+
pageSize: 'number',
|
|
1486
1432
|
requestId: 'string',
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
solution: 'string',
|
|
1490
|
-
stepList: { 'type': 'array', 'itemType': 'string' },
|
|
1433
|
+
totalCount: 'number',
|
|
1434
|
+
items: { 'type': 'array', 'itemType': DescribeWhitelistSettingResponseItems },
|
|
1491
1435
|
};
|
|
1492
1436
|
}
|
|
1493
1437
|
}
|
|
1494
|
-
exports.
|
|
1495
|
-
class
|
|
1438
|
+
exports.DescribeWhitelistSettingResponse = DescribeWhitelistSettingResponse;
|
|
1439
|
+
class DetectFaceAttributesRequest extends $tea.Model {
|
|
1496
1440
|
constructor(map) {
|
|
1497
1441
|
super(map);
|
|
1498
1442
|
}
|
|
1499
1443
|
static names() {
|
|
1500
1444
|
return {
|
|
1501
1445
|
bizType: 'BizType',
|
|
1502
|
-
|
|
1503
|
-
solution: 'Solution',
|
|
1504
|
-
guideStep: 'GuideStep',
|
|
1505
|
-
privacyStep: 'PrivacyStep',
|
|
1506
|
-
resultStep: 'ResultStep',
|
|
1446
|
+
materialValue: 'MaterialValue',
|
|
1507
1447
|
};
|
|
1508
1448
|
}
|
|
1509
1449
|
static types() {
|
|
1510
1450
|
return {
|
|
1511
1451
|
bizType: 'string',
|
|
1512
|
-
|
|
1513
|
-
solution: 'string',
|
|
1514
|
-
guideStep: 'boolean',
|
|
1515
|
-
privacyStep: 'boolean',
|
|
1516
|
-
resultStep: 'boolean',
|
|
1452
|
+
materialValue: 'string',
|
|
1517
1453
|
};
|
|
1518
1454
|
}
|
|
1519
1455
|
}
|
|
1520
|
-
exports.
|
|
1521
|
-
class
|
|
1456
|
+
exports.DetectFaceAttributesRequest = DetectFaceAttributesRequest;
|
|
1457
|
+
class DetectFaceAttributesResponse extends $tea.Model {
|
|
1522
1458
|
constructor(map) {
|
|
1523
1459
|
super(map);
|
|
1524
1460
|
}
|
|
1525
1461
|
static names() {
|
|
1526
1462
|
return {
|
|
1463
|
+
code: 'Code',
|
|
1464
|
+
message: 'Message',
|
|
1527
1465
|
requestId: 'RequestId',
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
solution: 'Solution',
|
|
1531
|
-
stepList: 'StepList',
|
|
1466
|
+
success: 'Success',
|
|
1467
|
+
data: 'Data',
|
|
1532
1468
|
};
|
|
1533
1469
|
}
|
|
1534
1470
|
static types() {
|
|
1535
1471
|
return {
|
|
1472
|
+
code: 'string',
|
|
1473
|
+
message: 'string',
|
|
1536
1474
|
requestId: 'string',
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
solution: 'string',
|
|
1540
|
-
stepList: { 'type': 'array', 'itemType': 'string' },
|
|
1475
|
+
success: 'boolean',
|
|
1476
|
+
data: DetectFaceAttributesResponseData,
|
|
1541
1477
|
};
|
|
1542
1478
|
}
|
|
1543
1479
|
}
|
|
1544
|
-
exports.
|
|
1545
|
-
class
|
|
1546
|
-
static names() {
|
|
1547
|
-
return {};
|
|
1548
|
-
}
|
|
1549
|
-
static types() {
|
|
1550
|
-
return {};
|
|
1551
|
-
}
|
|
1552
|
-
constructor(map) {
|
|
1553
|
-
super(map);
|
|
1554
|
-
}
|
|
1555
|
-
}
|
|
1556
|
-
exports.DescribeVerifySettingRequest = DescribeVerifySettingRequest;
|
|
1557
|
-
class DescribeVerifySettingResponse extends $tea.Model {
|
|
1480
|
+
exports.DetectFaceAttributesResponse = DetectFaceAttributesResponse;
|
|
1481
|
+
class InitDeviceRequest extends $tea.Model {
|
|
1558
1482
|
constructor(map) {
|
|
1559
1483
|
super(map);
|
|
1560
1484
|
}
|
|
1561
1485
|
static names() {
|
|
1562
1486
|
return {
|
|
1563
|
-
|
|
1564
|
-
|
|
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',
|
|
1565
1500
|
};
|
|
1566
1501
|
}
|
|
1567
1502
|
static types() {
|
|
1568
1503
|
return {
|
|
1569
|
-
|
|
1570
|
-
|
|
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',
|
|
1571
1517
|
};
|
|
1572
1518
|
}
|
|
1573
1519
|
}
|
|
1574
|
-
exports.
|
|
1575
|
-
class
|
|
1520
|
+
exports.InitDeviceRequest = InitDeviceRequest;
|
|
1521
|
+
class InitDeviceResponse extends $tea.Model {
|
|
1576
1522
|
constructor(map) {
|
|
1577
1523
|
super(map);
|
|
1578
1524
|
}
|
|
1579
1525
|
static names() {
|
|
1580
1526
|
return {
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1527
|
+
code: 'Code',
|
|
1528
|
+
message: 'Message',
|
|
1529
|
+
requestId: 'RequestId',
|
|
1530
|
+
resultObject: 'ResultObject',
|
|
1584
1531
|
};
|
|
1585
1532
|
}
|
|
1586
1533
|
static types() {
|
|
1587
1534
|
return {
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1535
|
+
code: 'string',
|
|
1536
|
+
message: 'string',
|
|
1537
|
+
requestId: 'string',
|
|
1538
|
+
resultObject: InitDeviceResponseResultObject,
|
|
1591
1539
|
};
|
|
1592
1540
|
}
|
|
1593
1541
|
}
|
|
1594
|
-
exports.
|
|
1595
|
-
class
|
|
1542
|
+
exports.InitDeviceResponse = InitDeviceResponse;
|
|
1543
|
+
class InitFaceVerifyRequest extends $tea.Model {
|
|
1596
1544
|
constructor(map) {
|
|
1597
1545
|
super(map);
|
|
1598
1546
|
}
|
|
1599
1547
|
static names() {
|
|
1600
1548
|
return {
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
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',
|
|
1604
1570
|
};
|
|
1605
1571
|
}
|
|
1606
1572
|
static types() {
|
|
1607
1573
|
return {
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
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',
|
|
1611
1595
|
};
|
|
1612
1596
|
}
|
|
1613
1597
|
}
|
|
1614
|
-
exports.
|
|
1615
|
-
class
|
|
1616
|
-
static names() {
|
|
1617
|
-
return {};
|
|
1618
|
-
}
|
|
1619
|
-
static types() {
|
|
1620
|
-
return {};
|
|
1621
|
-
}
|
|
1622
|
-
constructor(map) {
|
|
1623
|
-
super(map);
|
|
1624
|
-
}
|
|
1625
|
-
}
|
|
1626
|
-
exports.DescribeUserStatusRequest = DescribeUserStatusRequest;
|
|
1627
|
-
class DescribeUserStatusResponse extends $tea.Model {
|
|
1598
|
+
exports.InitFaceVerifyRequest = InitFaceVerifyRequest;
|
|
1599
|
+
class InitFaceVerifyResponse extends $tea.Model {
|
|
1628
1600
|
constructor(map) {
|
|
1629
1601
|
super(map);
|
|
1630
1602
|
}
|
|
1631
1603
|
static names() {
|
|
1632
1604
|
return {
|
|
1605
|
+
code: 'Code',
|
|
1606
|
+
message: 'Message',
|
|
1633
1607
|
requestId: 'RequestId',
|
|
1634
|
-
|
|
1608
|
+
resultObject: 'ResultObject',
|
|
1635
1609
|
};
|
|
1636
1610
|
}
|
|
1637
1611
|
static types() {
|
|
1638
1612
|
return {
|
|
1613
|
+
code: 'string',
|
|
1614
|
+
message: 'string',
|
|
1639
1615
|
requestId: 'string',
|
|
1640
|
-
|
|
1616
|
+
resultObject: InitFaceVerifyResponseResultObject,
|
|
1641
1617
|
};
|
|
1642
1618
|
}
|
|
1643
1619
|
}
|
|
1644
|
-
exports.
|
|
1645
|
-
class
|
|
1620
|
+
exports.InitFaceVerifyResponse = InitFaceVerifyResponse;
|
|
1621
|
+
class LivenessFaceVerifyRequest extends $tea.Model {
|
|
1646
1622
|
constructor(map) {
|
|
1647
1623
|
super(map);
|
|
1648
1624
|
}
|
|
1649
1625
|
static names() {
|
|
1650
1626
|
return {
|
|
1651
|
-
|
|
1627
|
+
certifyId: 'CertifyId',
|
|
1628
|
+
crop: 'Crop',
|
|
1629
|
+
deviceToken: 'DeviceToken',
|
|
1630
|
+
faceContrastPicture: 'FaceContrastPicture',
|
|
1631
|
+
faceContrastPictureUrl: 'FaceContrastPictureUrl',
|
|
1632
|
+
ip: 'Ip',
|
|
1633
|
+
mobile: 'Mobile',
|
|
1634
|
+
model: 'Model',
|
|
1635
|
+
ossBucketName: 'OssBucketName',
|
|
1636
|
+
ossObjectName: 'OssObjectName',
|
|
1637
|
+
outerOrderNo: 'OuterOrderNo',
|
|
1638
|
+
productCode: 'ProductCode',
|
|
1639
|
+
sceneId: 'SceneId',
|
|
1640
|
+
userId: 'UserId',
|
|
1652
1641
|
};
|
|
1653
1642
|
}
|
|
1654
1643
|
static types() {
|
|
1655
1644
|
return {
|
|
1656
|
-
|
|
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',
|
|
1657
1659
|
};
|
|
1658
1660
|
}
|
|
1659
1661
|
}
|
|
1660
|
-
exports.
|
|
1661
|
-
class
|
|
1662
|
+
exports.LivenessFaceVerifyRequest = LivenessFaceVerifyRequest;
|
|
1663
|
+
class LivenessFaceVerifyResponse extends $tea.Model {
|
|
1662
1664
|
constructor(map) {
|
|
1663
1665
|
super(map);
|
|
1664
1666
|
}
|
|
1665
1667
|
static names() {
|
|
1666
1668
|
return {
|
|
1669
|
+
code: 'Code',
|
|
1670
|
+
message: 'Message',
|
|
1667
1671
|
requestId: 'RequestId',
|
|
1668
|
-
|
|
1669
|
-
policy: 'Policy',
|
|
1670
|
-
signature: 'Signature',
|
|
1671
|
-
folder: 'Folder',
|
|
1672
|
-
host: 'Host',
|
|
1673
|
-
expire: 'Expire',
|
|
1672
|
+
resultObject: 'ResultObject',
|
|
1674
1673
|
};
|
|
1675
1674
|
}
|
|
1676
1675
|
static types() {
|
|
1677
1676
|
return {
|
|
1677
|
+
code: 'string',
|
|
1678
|
+
message: 'string',
|
|
1678
1679
|
requestId: 'string',
|
|
1679
|
-
|
|
1680
|
-
policy: 'string',
|
|
1681
|
-
signature: 'string',
|
|
1682
|
-
folder: 'string',
|
|
1683
|
-
host: 'string',
|
|
1684
|
-
expire: 'number',
|
|
1680
|
+
resultObject: LivenessFaceVerifyResponseResultObject,
|
|
1685
1681
|
};
|
|
1686
1682
|
}
|
|
1687
1683
|
}
|
|
1688
|
-
exports.
|
|
1689
|
-
class
|
|
1684
|
+
exports.LivenessFaceVerifyResponse = LivenessFaceVerifyResponse;
|
|
1685
|
+
class ModifyDeviceInfoRequest extends $tea.Model {
|
|
1690
1686
|
constructor(map) {
|
|
1691
1687
|
super(map);
|
|
1692
1688
|
}
|
|
1693
1689
|
static names() {
|
|
1694
1690
|
return {
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1691
|
+
bizType: 'BizType',
|
|
1692
|
+
deviceId: 'DeviceId',
|
|
1693
|
+
duration: 'Duration',
|
|
1694
|
+
expiredDay: 'ExpiredDay',
|
|
1695
|
+
userDeviceId: 'UserDeviceId',
|
|
1698
1696
|
};
|
|
1699
1697
|
}
|
|
1700
1698
|
static types() {
|
|
1701
1699
|
return {
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1700
|
+
bizType: 'string',
|
|
1701
|
+
deviceId: 'string',
|
|
1702
|
+
duration: 'string',
|
|
1703
|
+
expiredDay: 'string',
|
|
1704
|
+
userDeviceId: 'string',
|
|
1705
1705
|
};
|
|
1706
1706
|
}
|
|
1707
1707
|
}
|
|
1708
|
-
exports.
|
|
1709
|
-
class
|
|
1708
|
+
exports.ModifyDeviceInfoRequest = ModifyDeviceInfoRequest;
|
|
1709
|
+
class ModifyDeviceInfoResponse extends $tea.Model {
|
|
1710
1710
|
constructor(map) {
|
|
1711
1711
|
super(map);
|
|
1712
1712
|
}
|
|
1713
1713
|
static names() {
|
|
1714
1714
|
return {
|
|
1715
|
+
beginDay: 'BeginDay',
|
|
1716
|
+
bizType: 'BizType',
|
|
1717
|
+
deviceId: 'DeviceId',
|
|
1718
|
+
expiredDay: 'ExpiredDay',
|
|
1715
1719
|
requestId: 'RequestId',
|
|
1716
|
-
|
|
1720
|
+
userDeviceId: 'UserDeviceId',
|
|
1717
1721
|
};
|
|
1718
1722
|
}
|
|
1719
1723
|
static types() {
|
|
1720
1724
|
return {
|
|
1725
|
+
beginDay: 'string',
|
|
1726
|
+
bizType: 'string',
|
|
1727
|
+
deviceId: 'string',
|
|
1728
|
+
expiredDay: 'string',
|
|
1721
1729
|
requestId: 'string',
|
|
1722
|
-
|
|
1730
|
+
userDeviceId: 'string',
|
|
1723
1731
|
};
|
|
1724
1732
|
}
|
|
1725
1733
|
}
|
|
1726
|
-
exports.
|
|
1727
|
-
class
|
|
1734
|
+
exports.ModifyDeviceInfoResponse = ModifyDeviceInfoResponse;
|
|
1735
|
+
class UpdateAppPackageRequest extends $tea.Model {
|
|
1728
1736
|
constructor(map) {
|
|
1729
1737
|
super(map);
|
|
1730
1738
|
}
|
|
1731
1739
|
static names() {
|
|
1732
1740
|
return {
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1741
|
+
debug: 'Debug',
|
|
1742
|
+
id: 'Id',
|
|
1743
|
+
packageUrl: 'PackageUrl',
|
|
1736
1744
|
platform: 'Platform',
|
|
1737
1745
|
};
|
|
1738
1746
|
}
|
|
1739
1747
|
static types() {
|
|
1740
1748
|
return {
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1749
|
+
debug: 'boolean',
|
|
1750
|
+
id: 'number',
|
|
1751
|
+
packageUrl: 'string',
|
|
1744
1752
|
platform: 'string',
|
|
1745
1753
|
};
|
|
1746
1754
|
}
|
|
1747
1755
|
}
|
|
1748
|
-
exports.
|
|
1749
|
-
class
|
|
1756
|
+
exports.UpdateAppPackageRequest = UpdateAppPackageRequest;
|
|
1757
|
+
class UpdateAppPackageResponse extends $tea.Model {
|
|
1750
1758
|
constructor(map) {
|
|
1751
1759
|
super(map);
|
|
1752
1760
|
}
|
|
@@ -1763,332 +1771,260 @@ class CreateRPSDKResponse extends $tea.Model {
|
|
|
1763
1771
|
};
|
|
1764
1772
|
}
|
|
1765
1773
|
}
|
|
1766
|
-
exports.
|
|
1767
|
-
class
|
|
1774
|
+
exports.UpdateAppPackageResponse = UpdateAppPackageResponse;
|
|
1775
|
+
class UpdateFaceConfigRequest extends $tea.Model {
|
|
1768
1776
|
constructor(map) {
|
|
1769
1777
|
super(map);
|
|
1770
1778
|
}
|
|
1771
1779
|
static names() {
|
|
1772
1780
|
return {
|
|
1773
|
-
|
|
1774
|
-
faceImageUrl: 'FaceImageUrl',
|
|
1781
|
+
bizName: 'BizName',
|
|
1775
1782
|
bizType: 'BizType',
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
idCardNumber: 'IdCardNumber',
|
|
1779
|
-
idCardFrontImageUrl: 'IdCardFrontImageUrl',
|
|
1780
|
-
userId: 'UserId',
|
|
1783
|
+
lang: 'Lang',
|
|
1784
|
+
sourceIp: 'SourceIp',
|
|
1781
1785
|
};
|
|
1782
1786
|
}
|
|
1783
1787
|
static types() {
|
|
1784
1788
|
return {
|
|
1785
|
-
|
|
1786
|
-
faceImageUrl: 'string',
|
|
1789
|
+
bizName: 'string',
|
|
1787
1790
|
bizType: 'string',
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
idCardNumber: 'string',
|
|
1791
|
-
idCardFrontImageUrl: 'string',
|
|
1792
|
-
userId: 'string',
|
|
1791
|
+
lang: 'string',
|
|
1792
|
+
sourceIp: 'string',
|
|
1793
1793
|
};
|
|
1794
1794
|
}
|
|
1795
1795
|
}
|
|
1796
|
-
exports.
|
|
1797
|
-
class
|
|
1796
|
+
exports.UpdateFaceConfigRequest = UpdateFaceConfigRequest;
|
|
1797
|
+
class UpdateFaceConfigResponse extends $tea.Model {
|
|
1798
1798
|
constructor(map) {
|
|
1799
1799
|
super(map);
|
|
1800
1800
|
}
|
|
1801
1801
|
static names() {
|
|
1802
1802
|
return {
|
|
1803
1803
|
requestId: 'RequestId',
|
|
1804
|
-
verifyToken: 'VerifyToken',
|
|
1805
|
-
verifyStatus: 'VerifyStatus',
|
|
1806
|
-
authorityComparisionScore: 'AuthorityComparisionScore',
|
|
1807
|
-
idCardFaceComparisonScore: 'IdCardFaceComparisonScore',
|
|
1808
|
-
material: 'Material',
|
|
1809
1804
|
};
|
|
1810
1805
|
}
|
|
1811
1806
|
static types() {
|
|
1812
1807
|
return {
|
|
1813
1808
|
requestId: 'string',
|
|
1814
|
-
verifyToken: 'string',
|
|
1815
|
-
verifyStatus: 'number',
|
|
1816
|
-
authorityComparisionScore: 'number',
|
|
1817
|
-
idCardFaceComparisonScore: 'number',
|
|
1818
|
-
material: VerifyMaterialResponseMaterial,
|
|
1819
1809
|
};
|
|
1820
1810
|
}
|
|
1821
1811
|
}
|
|
1822
|
-
exports.
|
|
1823
|
-
class
|
|
1812
|
+
exports.UpdateFaceConfigResponse = UpdateFaceConfigResponse;
|
|
1813
|
+
class UpdateVerifySettingRequest extends $tea.Model {
|
|
1824
1814
|
constructor(map) {
|
|
1825
1815
|
super(map);
|
|
1826
1816
|
}
|
|
1827
1817
|
static names() {
|
|
1828
1818
|
return {
|
|
1829
|
-
|
|
1819
|
+
bizName: 'BizName',
|
|
1830
1820
|
bizType: 'BizType',
|
|
1821
|
+
guideStep: 'GuideStep',
|
|
1822
|
+
privacyStep: 'PrivacyStep',
|
|
1823
|
+
resultStep: 'ResultStep',
|
|
1824
|
+
solution: 'Solution',
|
|
1831
1825
|
};
|
|
1832
1826
|
}
|
|
1833
1827
|
static types() {
|
|
1834
1828
|
return {
|
|
1835
|
-
|
|
1829
|
+
bizName: 'string',
|
|
1836
1830
|
bizType: 'string',
|
|
1831
|
+
guideStep: 'boolean',
|
|
1832
|
+
privacyStep: 'boolean',
|
|
1833
|
+
resultStep: 'boolean',
|
|
1834
|
+
solution: 'string',
|
|
1837
1835
|
};
|
|
1838
1836
|
}
|
|
1839
1837
|
}
|
|
1840
|
-
exports.
|
|
1841
|
-
class
|
|
1838
|
+
exports.UpdateVerifySettingRequest = UpdateVerifySettingRequest;
|
|
1839
|
+
class UpdateVerifySettingResponse extends $tea.Model {
|
|
1842
1840
|
constructor(map) {
|
|
1843
1841
|
super(map);
|
|
1844
1842
|
}
|
|
1845
1843
|
static names() {
|
|
1846
1844
|
return {
|
|
1845
|
+
bizName: 'BizName',
|
|
1846
|
+
bizType: 'BizType',
|
|
1847
1847
|
requestId: 'RequestId',
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
faceComparisonScore: 'FaceComparisonScore',
|
|
1851
|
-
idCardFaceComparisonScore: 'IdCardFaceComparisonScore',
|
|
1852
|
-
material: 'Material',
|
|
1848
|
+
solution: 'Solution',
|
|
1849
|
+
stepList: 'StepList',
|
|
1853
1850
|
};
|
|
1854
1851
|
}
|
|
1855
1852
|
static types() {
|
|
1856
1853
|
return {
|
|
1854
|
+
bizName: 'string',
|
|
1855
|
+
bizType: 'string',
|
|
1857
1856
|
requestId: 'string',
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
faceComparisonScore: 'number',
|
|
1861
|
-
idCardFaceComparisonScore: 'number',
|
|
1862
|
-
material: DescribeVerifyResultResponseMaterial,
|
|
1857
|
+
solution: 'string',
|
|
1858
|
+
stepList: { 'type': 'array', 'itemType': 'string' },
|
|
1863
1859
|
};
|
|
1864
1860
|
}
|
|
1865
1861
|
}
|
|
1866
|
-
exports.
|
|
1867
|
-
class
|
|
1862
|
+
exports.UpdateVerifySettingResponse = UpdateVerifySettingResponse;
|
|
1863
|
+
class VerifyDeviceRequest extends $tea.Model {
|
|
1864
|
+
constructor(map) {
|
|
1865
|
+
super(map);
|
|
1866
|
+
}
|
|
1868
1867
|
static names() {
|
|
1869
|
-
return {
|
|
1868
|
+
return {
|
|
1869
|
+
appVersion: 'AppVersion',
|
|
1870
|
+
certifyData: 'CertifyData',
|
|
1871
|
+
certifyId: 'CertifyId',
|
|
1872
|
+
deviceToken: 'DeviceToken',
|
|
1873
|
+
extInfo: 'ExtInfo',
|
|
1874
|
+
};
|
|
1870
1875
|
}
|
|
1871
1876
|
static types() {
|
|
1872
|
-
return {
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1877
|
+
return {
|
|
1878
|
+
appVersion: 'string',
|
|
1879
|
+
certifyData: 'string',
|
|
1880
|
+
certifyId: 'string',
|
|
1881
|
+
deviceToken: 'string',
|
|
1882
|
+
extInfo: 'string',
|
|
1883
|
+
};
|
|
1876
1884
|
}
|
|
1877
1885
|
}
|
|
1878
|
-
exports.
|
|
1879
|
-
class
|
|
1886
|
+
exports.VerifyDeviceRequest = VerifyDeviceRequest;
|
|
1887
|
+
class VerifyDeviceResponse extends $tea.Model {
|
|
1880
1888
|
constructor(map) {
|
|
1881
1889
|
super(map);
|
|
1882
1890
|
}
|
|
1883
1891
|
static names() {
|
|
1884
1892
|
return {
|
|
1893
|
+
code: 'Code',
|
|
1894
|
+
message: 'Message',
|
|
1885
1895
|
requestId: 'RequestId',
|
|
1886
|
-
|
|
1896
|
+
resultObject: 'ResultObject',
|
|
1887
1897
|
};
|
|
1888
1898
|
}
|
|
1889
1899
|
static types() {
|
|
1890
1900
|
return {
|
|
1901
|
+
code: 'string',
|
|
1902
|
+
message: 'string',
|
|
1891
1903
|
requestId: 'string',
|
|
1892
|
-
|
|
1904
|
+
resultObject: VerifyDeviceResponseResultObject,
|
|
1893
1905
|
};
|
|
1894
1906
|
}
|
|
1895
1907
|
}
|
|
1896
|
-
exports.
|
|
1897
|
-
class
|
|
1908
|
+
exports.VerifyDeviceResponse = VerifyDeviceResponse;
|
|
1909
|
+
class VerifyMaterialRequest extends $tea.Model {
|
|
1898
1910
|
constructor(map) {
|
|
1899
1911
|
super(map);
|
|
1900
1912
|
}
|
|
1901
1913
|
static names() {
|
|
1902
1914
|
return {
|
|
1903
|
-
|
|
1915
|
+
bizId: 'BizId',
|
|
1904
1916
|
bizType: 'BizType',
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
callbackSeed: 'CallbackSeed',
|
|
1917
|
+
faceImageUrl: 'FaceImageUrl',
|
|
1918
|
+
idCardBackImageUrl: 'IdCardBackImageUrl',
|
|
1908
1919
|
idCardFrontImageUrl: 'IdCardFrontImageUrl',
|
|
1909
|
-
userId: 'UserId',
|
|
1910
|
-
bizId: 'BizId',
|
|
1911
|
-
name: 'Name',
|
|
1912
1920
|
idCardNumber: 'IdCardNumber',
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
userIp: 'UserIp',
|
|
1916
|
-
userPhoneNumber: 'UserPhoneNumber',
|
|
1917
|
-
userRegistTime: 'UserRegistTime',
|
|
1921
|
+
name: 'Name',
|
|
1922
|
+
userId: 'UserId',
|
|
1918
1923
|
};
|
|
1919
1924
|
}
|
|
1920
1925
|
static types() {
|
|
1921
1926
|
return {
|
|
1922
|
-
|
|
1927
|
+
bizId: 'string',
|
|
1923
1928
|
bizType: 'string',
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
callbackSeed: 'string',
|
|
1929
|
+
faceImageUrl: 'string',
|
|
1930
|
+
idCardBackImageUrl: 'string',
|
|
1927
1931
|
idCardFrontImageUrl: 'string',
|
|
1928
|
-
userId: 'string',
|
|
1929
|
-
bizId: 'string',
|
|
1930
|
-
name: 'string',
|
|
1931
1932
|
idCardNumber: 'string',
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
userIp: 'string',
|
|
1935
|
-
userPhoneNumber: 'string',
|
|
1936
|
-
userRegistTime: 'number',
|
|
1933
|
+
name: 'string',
|
|
1934
|
+
userId: 'string',
|
|
1937
1935
|
};
|
|
1938
1936
|
}
|
|
1939
1937
|
}
|
|
1940
|
-
exports.
|
|
1941
|
-
class
|
|
1938
|
+
exports.VerifyMaterialRequest = VerifyMaterialRequest;
|
|
1939
|
+
class VerifyMaterialResponse extends $tea.Model {
|
|
1942
1940
|
constructor(map) {
|
|
1943
1941
|
super(map);
|
|
1944
1942
|
}
|
|
1945
1943
|
static names() {
|
|
1946
1944
|
return {
|
|
1945
|
+
authorityComparisionScore: 'AuthorityComparisionScore',
|
|
1946
|
+
idCardFaceComparisonScore: 'IdCardFaceComparisonScore',
|
|
1947
1947
|
requestId: 'RequestId',
|
|
1948
|
-
|
|
1948
|
+
verifyStatus: 'VerifyStatus',
|
|
1949
1949
|
verifyToken: 'VerifyToken',
|
|
1950
|
-
|
|
1950
|
+
material: 'Material',
|
|
1951
1951
|
};
|
|
1952
1952
|
}
|
|
1953
1953
|
static types() {
|
|
1954
1954
|
return {
|
|
1955
|
+
authorityComparisionScore: 'number',
|
|
1956
|
+
idCardFaceComparisonScore: 'number',
|
|
1955
1957
|
requestId: 'string',
|
|
1956
|
-
|
|
1958
|
+
verifyStatus: 'number',
|
|
1957
1959
|
verifyToken: 'string',
|
|
1958
|
-
|
|
1960
|
+
material: VerifyMaterialResponseMaterial,
|
|
1959
1961
|
};
|
|
1960
1962
|
}
|
|
1961
1963
|
}
|
|
1962
|
-
exports.
|
|
1963
|
-
class
|
|
1964
|
+
exports.VerifyMaterialResponse = VerifyMaterialResponse;
|
|
1965
|
+
class CompareFaceVerifyResponseResultObject extends $tea.Model {
|
|
1964
1966
|
constructor(map) {
|
|
1965
1967
|
super(map);
|
|
1966
1968
|
}
|
|
1967
1969
|
static names() {
|
|
1968
1970
|
return {
|
|
1969
|
-
id: 'Id',
|
|
1970
|
-
sceneId: 'SceneId',
|
|
1971
|
-
validStartDate: 'ValidStartDate',
|
|
1972
|
-
validEndDate: 'ValidEndDate',
|
|
1973
|
-
certNo: 'CertNo',
|
|
1974
1971
|
certifyId: 'CertifyId',
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
gmtModified: 'GmtModified',
|
|
1972
|
+
passed: 'Passed',
|
|
1973
|
+
verifyScore: 'VerifyScore',
|
|
1978
1974
|
};
|
|
1979
1975
|
}
|
|
1980
1976
|
static types() {
|
|
1981
1977
|
return {
|
|
1982
|
-
id: 'number',
|
|
1983
|
-
sceneId: 'number',
|
|
1984
|
-
validStartDate: 'string',
|
|
1985
|
-
validEndDate: 'string',
|
|
1986
|
-
certNo: 'string',
|
|
1987
1978
|
certifyId: 'string',
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
gmtModified: 'string',
|
|
1979
|
+
passed: 'string',
|
|
1980
|
+
verifyScore: 'number',
|
|
1991
1981
|
};
|
|
1992
1982
|
}
|
|
1993
1983
|
}
|
|
1994
|
-
exports.
|
|
1995
|
-
class
|
|
1984
|
+
exports.CompareFaceVerifyResponseResultObject = CompareFaceVerifyResponseResultObject;
|
|
1985
|
+
class CompareFacesResponseData extends $tea.Model {
|
|
1996
1986
|
constructor(map) {
|
|
1997
1987
|
super(map);
|
|
1998
1988
|
}
|
|
1999
1989
|
static names() {
|
|
2000
1990
|
return {
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
bizType: 'BizType',
|
|
2004
|
-
startDate: 'StartDate',
|
|
2005
|
-
endDate: 'EndDate',
|
|
2006
|
-
idCardNum: 'IdCardNum',
|
|
2007
|
-
bizId: 'BizId',
|
|
2008
|
-
valid: 'Valid',
|
|
2009
|
-
gmtCreate: 'GmtCreate',
|
|
2010
|
-
gmtModified: 'GmtModified',
|
|
1991
|
+
confidenceThresholds: 'ConfidenceThresholds',
|
|
1992
|
+
similarityScore: 'SimilarityScore',
|
|
2011
1993
|
};
|
|
2012
1994
|
}
|
|
2013
1995
|
static types() {
|
|
2014
1996
|
return {
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
bizType: 'string',
|
|
2018
|
-
startDate: 'number',
|
|
2019
|
-
endDate: 'number',
|
|
2020
|
-
idCardNum: 'string',
|
|
2021
|
-
bizId: 'string',
|
|
2022
|
-
valid: 'number',
|
|
2023
|
-
gmtCreate: 'number',
|
|
2024
|
-
gmtModified: 'number',
|
|
1997
|
+
confidenceThresholds: 'string',
|
|
1998
|
+
similarityScore: 'number',
|
|
2025
1999
|
};
|
|
2026
2000
|
}
|
|
2027
2001
|
}
|
|
2028
|
-
exports.
|
|
2029
|
-
class
|
|
2030
|
-
constructor(map) {
|
|
2031
|
-
super(map);
|
|
2032
|
-
}
|
|
2033
|
-
static names() {
|
|
2034
|
-
return {
|
|
2035
|
-
bizType: 'BizType',
|
|
2036
|
-
bizName: 'BizName',
|
|
2037
|
-
gmtUpdated: 'GmtUpdated',
|
|
2038
|
-
};
|
|
2039
|
-
}
|
|
2040
|
-
static types() {
|
|
2041
|
-
return {
|
|
2042
|
-
bizType: 'string',
|
|
2043
|
-
bizName: 'string',
|
|
2044
|
-
gmtUpdated: 'number',
|
|
2045
|
-
};
|
|
2046
|
-
}
|
|
2047
|
-
}
|
|
2048
|
-
exports.DescribeFaceConfigResponseItems = DescribeFaceConfigResponseItems;
|
|
2049
|
-
class LivenessFaceVerifyResponseResultObject extends $tea.Model {
|
|
2002
|
+
exports.CompareFacesResponseData = CompareFacesResponseData;
|
|
2003
|
+
class ContrastFaceVerifyResponseResultObject extends $tea.Model {
|
|
2050
2004
|
constructor(map) {
|
|
2051
2005
|
super(map);
|
|
2052
2006
|
}
|
|
2053
2007
|
static names() {
|
|
2054
2008
|
return {
|
|
2055
2009
|
certifyId: 'CertifyId',
|
|
2056
|
-
|
|
2010
|
+
identityInfo: 'IdentityInfo',
|
|
2057
2011
|
materialInfo: 'MaterialInfo',
|
|
2058
2012
|
passed: 'Passed',
|
|
2013
|
+
subCode: 'SubCode',
|
|
2059
2014
|
};
|
|
2060
2015
|
}
|
|
2061
2016
|
static types() {
|
|
2062
2017
|
return {
|
|
2063
2018
|
certifyId: 'string',
|
|
2064
|
-
|
|
2019
|
+
identityInfo: 'string',
|
|
2065
2020
|
materialInfo: 'string',
|
|
2066
2021
|
passed: 'string',
|
|
2022
|
+
subCode: 'string',
|
|
2067
2023
|
};
|
|
2068
2024
|
}
|
|
2069
2025
|
}
|
|
2070
|
-
exports.
|
|
2071
|
-
class
|
|
2072
|
-
constructor(map) {
|
|
2073
|
-
super(map);
|
|
2074
|
-
}
|
|
2075
|
-
static names() {
|
|
2076
|
-
return {
|
|
2077
|
-
certifyId: 'CertifyId',
|
|
2078
|
-
verifyScore: 'VerifyScore',
|
|
2079
|
-
passed: 'Passed',
|
|
2080
|
-
};
|
|
2081
|
-
}
|
|
2082
|
-
static types() {
|
|
2083
|
-
return {
|
|
2084
|
-
certifyId: 'string',
|
|
2085
|
-
verifyScore: 'number',
|
|
2086
|
-
passed: 'string',
|
|
2087
|
-
};
|
|
2088
|
-
}
|
|
2089
|
-
}
|
|
2090
|
-
exports.CompareFaceVerifyResponseResultObject = CompareFaceVerifyResponseResultObject;
|
|
2091
|
-
class DescribeUpdatePackageResultResponseAppInfoPackageInfo extends $tea.Model {
|
|
2026
|
+
exports.ContrastFaceVerifyResponseResultObject = ContrastFaceVerifyResponseResultObject;
|
|
2027
|
+
class DescribeAppInfoResponseAppInfoListDebugPackageInfo extends $tea.Model {
|
|
2092
2028
|
constructor(map) {
|
|
2093
2029
|
super(map);
|
|
2094
2030
|
}
|
|
@@ -2103,8 +2039,8 @@ class DescribeUpdatePackageResultResponseAppInfoPackageInfo extends $tea.Model {
|
|
|
2103
2039
|
};
|
|
2104
2040
|
}
|
|
2105
2041
|
}
|
|
2106
|
-
exports.
|
|
2107
|
-
class
|
|
2042
|
+
exports.DescribeAppInfoResponseAppInfoListDebugPackageInfo = DescribeAppInfoResponseAppInfoListDebugPackageInfo;
|
|
2043
|
+
class DescribeAppInfoResponseAppInfoListPackageInfo extends $tea.Model {
|
|
2108
2044
|
constructor(map) {
|
|
2109
2045
|
super(map);
|
|
2110
2046
|
}
|
|
@@ -2119,863 +2055,849 @@ class DescribeUpdatePackageResultResponseAppInfoDebugPackageInfo extends $tea.Mo
|
|
|
2119
2055
|
};
|
|
2120
2056
|
}
|
|
2121
2057
|
}
|
|
2122
|
-
exports.
|
|
2123
|
-
class
|
|
2058
|
+
exports.DescribeAppInfoResponseAppInfoListPackageInfo = DescribeAppInfoResponseAppInfoListPackageInfo;
|
|
2059
|
+
class DescribeAppInfoResponseAppInfoList extends $tea.Model {
|
|
2124
2060
|
constructor(map) {
|
|
2125
2061
|
super(map);
|
|
2126
2062
|
}
|
|
2127
2063
|
static names() {
|
|
2128
2064
|
return {
|
|
2065
|
+
endDate: 'EndDate',
|
|
2066
|
+
icon: 'Icon',
|
|
2129
2067
|
id: 'Id',
|
|
2130
2068
|
name: 'Name',
|
|
2131
2069
|
packageName: 'PackageName',
|
|
2132
|
-
icon: 'Icon',
|
|
2133
2070
|
startDate: 'StartDate',
|
|
2134
|
-
endDate: 'EndDate',
|
|
2135
2071
|
type: 'Type',
|
|
2136
|
-
packageInfo: 'PackageInfo',
|
|
2137
2072
|
debugPackageInfo: 'DebugPackageInfo',
|
|
2073
|
+
packageInfo: 'PackageInfo',
|
|
2138
2074
|
};
|
|
2139
2075
|
}
|
|
2140
2076
|
static types() {
|
|
2141
2077
|
return {
|
|
2078
|
+
endDate: 'string',
|
|
2079
|
+
icon: 'string',
|
|
2142
2080
|
id: 'number',
|
|
2143
2081
|
name: 'string',
|
|
2144
2082
|
packageName: 'string',
|
|
2145
|
-
icon: 'string',
|
|
2146
2083
|
startDate: 'string',
|
|
2147
|
-
endDate: 'string',
|
|
2148
2084
|
type: 'number',
|
|
2149
|
-
|
|
2150
|
-
|
|
2085
|
+
debugPackageInfo: DescribeAppInfoResponseAppInfoListDebugPackageInfo,
|
|
2086
|
+
packageInfo: DescribeAppInfoResponseAppInfoListPackageInfo,
|
|
2151
2087
|
};
|
|
2152
2088
|
}
|
|
2153
2089
|
}
|
|
2154
|
-
exports.
|
|
2155
|
-
class
|
|
2090
|
+
exports.DescribeAppInfoResponseAppInfoList = DescribeAppInfoResponseAppInfoList;
|
|
2091
|
+
class DescribeDeviceInfoResponseDeviceInfoListDeviceInfo extends $tea.Model {
|
|
2156
2092
|
constructor(map) {
|
|
2157
2093
|
super(map);
|
|
2158
2094
|
}
|
|
2159
2095
|
static names() {
|
|
2160
2096
|
return {
|
|
2161
|
-
|
|
2097
|
+
beginDay: 'BeginDay',
|
|
2098
|
+
bizType: 'BizType',
|
|
2099
|
+
deviceId: 'DeviceId',
|
|
2100
|
+
expiredDay: 'ExpiredDay',
|
|
2101
|
+
userDeviceId: 'UserDeviceId',
|
|
2162
2102
|
};
|
|
2163
2103
|
}
|
|
2164
2104
|
static types() {
|
|
2165
2105
|
return {
|
|
2166
|
-
|
|
2106
|
+
beginDay: 'string',
|
|
2107
|
+
bizType: 'string',
|
|
2108
|
+
deviceId: 'string',
|
|
2109
|
+
expiredDay: 'string',
|
|
2110
|
+
userDeviceId: 'string',
|
|
2167
2111
|
};
|
|
2168
2112
|
}
|
|
2169
2113
|
}
|
|
2170
|
-
exports.
|
|
2171
|
-
class
|
|
2114
|
+
exports.DescribeDeviceInfoResponseDeviceInfoListDeviceInfo = DescribeDeviceInfoResponseDeviceInfoListDeviceInfo;
|
|
2115
|
+
class DescribeDeviceInfoResponseDeviceInfoList extends $tea.Model {
|
|
2172
2116
|
constructor(map) {
|
|
2173
2117
|
super(map);
|
|
2174
2118
|
}
|
|
2175
2119
|
static names() {
|
|
2176
2120
|
return {
|
|
2177
|
-
|
|
2121
|
+
deviceInfo: 'DeviceInfo',
|
|
2178
2122
|
};
|
|
2179
2123
|
}
|
|
2180
2124
|
static types() {
|
|
2181
2125
|
return {
|
|
2182
|
-
|
|
2126
|
+
deviceInfo: { 'type': 'array', 'itemType': DescribeDeviceInfoResponseDeviceInfoListDeviceInfo },
|
|
2183
2127
|
};
|
|
2184
2128
|
}
|
|
2185
2129
|
}
|
|
2186
|
-
exports.
|
|
2187
|
-
class
|
|
2130
|
+
exports.DescribeDeviceInfoResponseDeviceInfoList = DescribeDeviceInfoResponseDeviceInfoList;
|
|
2131
|
+
class DescribeFaceConfigResponseItems extends $tea.Model {
|
|
2188
2132
|
constructor(map) {
|
|
2189
2133
|
super(map);
|
|
2190
2134
|
}
|
|
2191
2135
|
static names() {
|
|
2192
2136
|
return {
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
icon: 'Icon',
|
|
2197
|
-
startDate: 'StartDate',
|
|
2198
|
-
endDate: 'EndDate',
|
|
2199
|
-
type: 'Type',
|
|
2200
|
-
packageInfo: 'PackageInfo',
|
|
2201
|
-
debugPackageInfo: 'DebugPackageInfo',
|
|
2137
|
+
bizName: 'BizName',
|
|
2138
|
+
bizType: 'BizType',
|
|
2139
|
+
gmtUpdated: 'GmtUpdated',
|
|
2202
2140
|
};
|
|
2203
2141
|
}
|
|
2204
2142
|
static types() {
|
|
2205
2143
|
return {
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
icon: 'string',
|
|
2210
|
-
startDate: 'string',
|
|
2211
|
-
endDate: 'string',
|
|
2212
|
-
type: 'number',
|
|
2213
|
-
packageInfo: DescribeAppInfoResponseAppInfoListPackageInfo,
|
|
2214
|
-
debugPackageInfo: DescribeAppInfoResponseAppInfoListDebugPackageInfo,
|
|
2144
|
+
bizName: 'string',
|
|
2145
|
+
bizType: 'string',
|
|
2146
|
+
gmtUpdated: 'number',
|
|
2215
2147
|
};
|
|
2216
2148
|
}
|
|
2217
2149
|
}
|
|
2218
|
-
exports.
|
|
2219
|
-
class
|
|
2150
|
+
exports.DescribeFaceConfigResponseItems = DescribeFaceConfigResponseItems;
|
|
2151
|
+
class DescribeFaceUsageResponseFaceUsageList extends $tea.Model {
|
|
2220
2152
|
constructor(map) {
|
|
2221
2153
|
super(map);
|
|
2222
2154
|
}
|
|
2223
2155
|
static names() {
|
|
2224
2156
|
return {
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
materialInfo: 'MaterialInfo',
|
|
2228
|
-
identityInfo: 'IdentityInfo',
|
|
2229
|
-
passed: 'Passed',
|
|
2157
|
+
date: 'Date',
|
|
2158
|
+
totalCount: 'TotalCount',
|
|
2230
2159
|
};
|
|
2231
2160
|
}
|
|
2232
2161
|
static types() {
|
|
2233
2162
|
return {
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
materialInfo: 'string',
|
|
2237
|
-
identityInfo: 'string',
|
|
2238
|
-
passed: 'string',
|
|
2163
|
+
date: 'string',
|
|
2164
|
+
totalCount: 'number',
|
|
2239
2165
|
};
|
|
2240
2166
|
}
|
|
2241
2167
|
}
|
|
2242
|
-
exports.
|
|
2243
|
-
class
|
|
2168
|
+
exports.DescribeFaceUsageResponseFaceUsageList = DescribeFaceUsageResponseFaceUsageList;
|
|
2169
|
+
class DescribeFaceVerifyResponseResultObject extends $tea.Model {
|
|
2244
2170
|
constructor(map) {
|
|
2245
2171
|
super(map);
|
|
2246
2172
|
}
|
|
2247
2173
|
static names() {
|
|
2248
2174
|
return {
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
retMessageSub: 'RetMessageSub',
|
|
2255
|
-
message: 'Message',
|
|
2256
|
-
ossEndPoint: 'OssEndPoint',
|
|
2257
|
-
accessKeyId: 'AccessKeyId',
|
|
2258
|
-
accessKeySecret: 'AccessKeySecret',
|
|
2259
|
-
securityToken: 'SecurityToken',
|
|
2260
|
-
bucketName: 'BucketName',
|
|
2261
|
-
fileNamePrefix: 'FileNamePrefix',
|
|
2262
|
-
fileName: 'FileName',
|
|
2263
|
-
presignedUrl: 'PresignedUrl',
|
|
2175
|
+
deviceToken: 'DeviceToken',
|
|
2176
|
+
identityInfo: 'IdentityInfo',
|
|
2177
|
+
materialInfo: 'MaterialInfo',
|
|
2178
|
+
passed: 'Passed',
|
|
2179
|
+
subCode: 'SubCode',
|
|
2264
2180
|
};
|
|
2265
2181
|
}
|
|
2266
2182
|
static types() {
|
|
2267
2183
|
return {
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
retMessageSub: 'string',
|
|
2274
|
-
message: 'string',
|
|
2275
|
-
ossEndPoint: 'string',
|
|
2276
|
-
accessKeyId: 'string',
|
|
2277
|
-
accessKeySecret: 'string',
|
|
2278
|
-
securityToken: 'string',
|
|
2279
|
-
bucketName: 'string',
|
|
2280
|
-
fileNamePrefix: 'string',
|
|
2281
|
-
fileName: 'string',
|
|
2282
|
-
presignedUrl: 'string',
|
|
2184
|
+
deviceToken: 'string',
|
|
2185
|
+
identityInfo: 'string',
|
|
2186
|
+
materialInfo: 'string',
|
|
2187
|
+
passed: 'string',
|
|
2188
|
+
subCode: 'string',
|
|
2283
2189
|
};
|
|
2284
2190
|
}
|
|
2285
2191
|
}
|
|
2286
|
-
exports.
|
|
2287
|
-
class
|
|
2192
|
+
exports.DescribeFaceVerifyResponseResultObject = DescribeFaceVerifyResponseResultObject;
|
|
2193
|
+
class DescribeOssUploadTokenResponseOssUploadToken extends $tea.Model {
|
|
2288
2194
|
constructor(map) {
|
|
2289
2195
|
super(map);
|
|
2290
2196
|
}
|
|
2291
2197
|
static names() {
|
|
2292
2198
|
return {
|
|
2293
|
-
|
|
2294
|
-
|
|
2199
|
+
bucket: 'Bucket',
|
|
2200
|
+
endPoint: 'EndPoint',
|
|
2201
|
+
expired: 'Expired',
|
|
2202
|
+
key: 'Key',
|
|
2203
|
+
path: 'Path',
|
|
2204
|
+
secret: 'Secret',
|
|
2205
|
+
token: 'Token',
|
|
2295
2206
|
};
|
|
2296
2207
|
}
|
|
2297
2208
|
static types() {
|
|
2298
2209
|
return {
|
|
2299
|
-
|
|
2300
|
-
|
|
2210
|
+
bucket: 'string',
|
|
2211
|
+
endPoint: 'string',
|
|
2212
|
+
expired: 'number',
|
|
2213
|
+
key: 'string',
|
|
2214
|
+
path: 'string',
|
|
2215
|
+
secret: 'string',
|
|
2216
|
+
token: 'string',
|
|
2301
2217
|
};
|
|
2302
2218
|
}
|
|
2303
2219
|
}
|
|
2304
|
-
exports.
|
|
2305
|
-
class
|
|
2220
|
+
exports.DescribeOssUploadTokenResponseOssUploadToken = DescribeOssUploadTokenResponseOssUploadToken;
|
|
2221
|
+
class DescribeUpdatePackageResultResponseAppInfoDebugPackageInfo extends $tea.Model {
|
|
2306
2222
|
constructor(map) {
|
|
2307
2223
|
super(map);
|
|
2308
2224
|
}
|
|
2309
2225
|
static names() {
|
|
2310
2226
|
return {
|
|
2311
|
-
|
|
2312
|
-
materialInfo: 'MaterialInfo',
|
|
2313
|
-
identityInfo: 'IdentityInfo',
|
|
2314
|
-
deviceToken: 'DeviceToken',
|
|
2315
|
-
passed: 'Passed',
|
|
2227
|
+
version: 'Version',
|
|
2316
2228
|
};
|
|
2317
2229
|
}
|
|
2318
2230
|
static types() {
|
|
2319
2231
|
return {
|
|
2320
|
-
|
|
2321
|
-
materialInfo: 'string',
|
|
2322
|
-
identityInfo: 'string',
|
|
2323
|
-
deviceToken: 'string',
|
|
2324
|
-
passed: 'string',
|
|
2232
|
+
version: 'string',
|
|
2325
2233
|
};
|
|
2326
2234
|
}
|
|
2327
2235
|
}
|
|
2328
|
-
exports.
|
|
2329
|
-
class
|
|
2236
|
+
exports.DescribeUpdatePackageResultResponseAppInfoDebugPackageInfo = DescribeUpdatePackageResultResponseAppInfoDebugPackageInfo;
|
|
2237
|
+
class DescribeUpdatePackageResultResponseAppInfoPackageInfo extends $tea.Model {
|
|
2330
2238
|
constructor(map) {
|
|
2331
2239
|
super(map);
|
|
2332
2240
|
}
|
|
2333
2241
|
static names() {
|
|
2334
2242
|
return {
|
|
2335
|
-
|
|
2336
|
-
productRetCode: 'ProductRetCode',
|
|
2337
|
-
retCodeSub: 'RetCodeSub',
|
|
2338
|
-
retMessageSub: 'RetMessageSub',
|
|
2339
|
-
hasNext: 'HasNext',
|
|
2340
|
-
extParams: 'ExtParams',
|
|
2243
|
+
version: 'Version',
|
|
2341
2244
|
};
|
|
2342
2245
|
}
|
|
2343
2246
|
static types() {
|
|
2344
2247
|
return {
|
|
2345
|
-
|
|
2346
|
-
productRetCode: 'string',
|
|
2347
|
-
retCodeSub: 'string',
|
|
2348
|
-
retMessageSub: 'string',
|
|
2349
|
-
hasNext: 'string',
|
|
2350
|
-
extParams: 'string',
|
|
2248
|
+
version: 'string',
|
|
2351
2249
|
};
|
|
2352
2250
|
}
|
|
2353
2251
|
}
|
|
2354
|
-
exports.
|
|
2355
|
-
class
|
|
2252
|
+
exports.DescribeUpdatePackageResultResponseAppInfoPackageInfo = DescribeUpdatePackageResultResponseAppInfoPackageInfo;
|
|
2253
|
+
class DescribeUpdatePackageResultResponseAppInfo extends $tea.Model {
|
|
2356
2254
|
constructor(map) {
|
|
2357
2255
|
super(map);
|
|
2358
2256
|
}
|
|
2359
2257
|
static names() {
|
|
2360
2258
|
return {
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
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',
|
|
2366
2268
|
};
|
|
2367
2269
|
}
|
|
2368
2270
|
static types() {
|
|
2369
2271
|
return {
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
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,
|
|
2375
2281
|
};
|
|
2376
2282
|
}
|
|
2377
2283
|
}
|
|
2378
|
-
exports.
|
|
2379
|
-
class
|
|
2284
|
+
exports.DescribeUpdatePackageResultResponseAppInfo = DescribeUpdatePackageResultResponseAppInfo;
|
|
2285
|
+
class DescribeVerifyRecordsResponseRecordsListMaterialIdCardInfo extends $tea.Model {
|
|
2380
2286
|
constructor(map) {
|
|
2381
2287
|
super(map);
|
|
2382
2288
|
}
|
|
2383
2289
|
static names() {
|
|
2384
2290
|
return {
|
|
2385
|
-
|
|
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',
|
|
2386
2302
|
};
|
|
2387
2303
|
}
|
|
2388
2304
|
static types() {
|
|
2389
2305
|
return {
|
|
2390
|
-
|
|
2306
|
+
address: 'string',
|
|
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',
|
|
2391
2317
|
};
|
|
2392
2318
|
}
|
|
2393
2319
|
}
|
|
2394
|
-
exports.
|
|
2395
|
-
class
|
|
2320
|
+
exports.DescribeVerifyRecordsResponseRecordsListMaterialIdCardInfo = DescribeVerifyRecordsResponseRecordsListMaterialIdCardInfo;
|
|
2321
|
+
class DescribeVerifyRecordsResponseRecordsListMaterial extends $tea.Model {
|
|
2396
2322
|
constructor(map) {
|
|
2397
2323
|
super(map);
|
|
2398
2324
|
}
|
|
2399
2325
|
static names() {
|
|
2400
2326
|
return {
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2327
|
+
faceImageUrl: 'FaceImageUrl',
|
|
2328
|
+
idCardName: 'IdCardName',
|
|
2329
|
+
idCardNumber: 'IdCardNumber',
|
|
2330
|
+
idCardInfo: 'IdCardInfo',
|
|
2405
2331
|
};
|
|
2406
2332
|
}
|
|
2407
2333
|
static types() {
|
|
2408
2334
|
return {
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2335
|
+
faceImageUrl: 'string',
|
|
2336
|
+
idCardName: 'string',
|
|
2337
|
+
idCardNumber: 'string',
|
|
2338
|
+
idCardInfo: DescribeVerifyRecordsResponseRecordsListMaterialIdCardInfo,
|
|
2413
2339
|
};
|
|
2414
2340
|
}
|
|
2415
2341
|
}
|
|
2416
|
-
exports.
|
|
2417
|
-
class
|
|
2342
|
+
exports.DescribeVerifyRecordsResponseRecordsListMaterial = DescribeVerifyRecordsResponseRecordsListMaterial;
|
|
2343
|
+
class DescribeVerifyRecordsResponseRecordsList extends $tea.Model {
|
|
2418
2344
|
constructor(map) {
|
|
2419
2345
|
super(map);
|
|
2420
2346
|
}
|
|
2421
2347
|
static names() {
|
|
2422
2348
|
return {
|
|
2423
|
-
|
|
2424
|
-
|
|
2349
|
+
authorityComparisonScore: 'AuthorityComparisonScore',
|
|
2350
|
+
bizId: 'BizId',
|
|
2351
|
+
bizType: 'BizType',
|
|
2352
|
+
dataStats: 'DataStats',
|
|
2353
|
+
finishTime: 'FinishTime',
|
|
2354
|
+
idCardFaceComparisonScore: 'IdCardFaceComparisonScore',
|
|
2355
|
+
status: 'Status',
|
|
2356
|
+
verifyId: 'VerifyId',
|
|
2357
|
+
material: 'Material',
|
|
2425
2358
|
};
|
|
2426
2359
|
}
|
|
2427
2360
|
static types() {
|
|
2428
2361
|
return {
|
|
2429
|
-
|
|
2430
|
-
|
|
2362
|
+
authorityComparisonScore: 'number',
|
|
2363
|
+
bizId: 'string',
|
|
2364
|
+
bizType: 'string',
|
|
2365
|
+
dataStats: 'string',
|
|
2366
|
+
finishTime: 'number',
|
|
2367
|
+
idCardFaceComparisonScore: 'number',
|
|
2368
|
+
status: 'number',
|
|
2369
|
+
verifyId: 'string',
|
|
2370
|
+
material: DescribeVerifyRecordsResponseRecordsListMaterial,
|
|
2431
2371
|
};
|
|
2432
2372
|
}
|
|
2433
2373
|
}
|
|
2434
|
-
exports.
|
|
2435
|
-
class
|
|
2374
|
+
exports.DescribeVerifyRecordsResponseRecordsList = DescribeVerifyRecordsResponseRecordsList;
|
|
2375
|
+
class DescribeVerifyResultResponseMaterialIdCardInfo extends $tea.Model {
|
|
2436
2376
|
constructor(map) {
|
|
2437
2377
|
super(map);
|
|
2438
2378
|
}
|
|
2439
2379
|
static names() {
|
|
2440
2380
|
return {
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2381
|
+
address: 'Address',
|
|
2382
|
+
authority: 'Authority',
|
|
2383
|
+
backImageUrl: 'BackImageUrl',
|
|
2384
|
+
birth: 'Birth',
|
|
2385
|
+
endDate: 'EndDate',
|
|
2386
|
+
frontImageUrl: 'FrontImageUrl',
|
|
2387
|
+
name: 'Name',
|
|
2388
|
+
nationality: 'Nationality',
|
|
2389
|
+
number: 'Number',
|
|
2390
|
+
startDate: 'StartDate',
|
|
2444
2391
|
};
|
|
2445
2392
|
}
|
|
2446
2393
|
static types() {
|
|
2447
2394
|
return {
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2395
|
+
address: 'string',
|
|
2396
|
+
authority: 'string',
|
|
2397
|
+
backImageUrl: 'string',
|
|
2398
|
+
birth: 'string',
|
|
2399
|
+
endDate: 'string',
|
|
2400
|
+
frontImageUrl: 'string',
|
|
2401
|
+
name: 'string',
|
|
2402
|
+
nationality: 'string',
|
|
2403
|
+
number: 'string',
|
|
2404
|
+
startDate: 'string',
|
|
2451
2405
|
};
|
|
2452
2406
|
}
|
|
2453
2407
|
}
|
|
2454
|
-
exports.
|
|
2455
|
-
class
|
|
2408
|
+
exports.DescribeVerifyResultResponseMaterialIdCardInfo = DescribeVerifyResultResponseMaterialIdCardInfo;
|
|
2409
|
+
class DescribeVerifyResultResponseMaterial extends $tea.Model {
|
|
2456
2410
|
constructor(map) {
|
|
2457
2411
|
super(map);
|
|
2458
2412
|
}
|
|
2459
2413
|
static names() {
|
|
2460
2414
|
return {
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2415
|
+
faceGlobalUrl: 'FaceGlobalUrl',
|
|
2416
|
+
faceImageUrl: 'FaceImageUrl',
|
|
2417
|
+
faceMask: 'FaceMask',
|
|
2418
|
+
faceQuality: 'FaceQuality',
|
|
2419
|
+
idCardName: 'IdCardName',
|
|
2420
|
+
idCardNumber: 'IdCardNumber',
|
|
2421
|
+
idCardInfo: 'IdCardInfo',
|
|
2422
|
+
videoUrls: 'VideoUrls',
|
|
2469
2423
|
};
|
|
2470
2424
|
}
|
|
2471
2425
|
static types() {
|
|
2472
2426
|
return {
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2427
|
+
faceGlobalUrl: 'string',
|
|
2428
|
+
faceImageUrl: 'string',
|
|
2429
|
+
faceMask: 'boolean',
|
|
2430
|
+
faceQuality: 'string',
|
|
2431
|
+
idCardName: 'string',
|
|
2432
|
+
idCardNumber: 'string',
|
|
2433
|
+
idCardInfo: DescribeVerifyResultResponseMaterialIdCardInfo,
|
|
2434
|
+
videoUrls: { 'type': 'array', 'itemType': 'string' },
|
|
2481
2435
|
};
|
|
2482
2436
|
}
|
|
2483
2437
|
}
|
|
2484
|
-
exports.
|
|
2485
|
-
class
|
|
2438
|
+
exports.DescribeVerifyResultResponseMaterial = DescribeVerifyResultResponseMaterial;
|
|
2439
|
+
class DescribeVerifySettingResponseVerifySettingList extends $tea.Model {
|
|
2486
2440
|
constructor(map) {
|
|
2487
2441
|
super(map);
|
|
2488
2442
|
}
|
|
2489
2443
|
static names() {
|
|
2490
2444
|
return {
|
|
2491
|
-
|
|
2492
|
-
|
|
2445
|
+
bizName: 'BizName',
|
|
2446
|
+
bizType: 'BizType',
|
|
2447
|
+
solution: 'Solution',
|
|
2448
|
+
stepList: 'StepList',
|
|
2493
2449
|
};
|
|
2494
2450
|
}
|
|
2495
2451
|
static types() {
|
|
2496
2452
|
return {
|
|
2497
|
-
|
|
2498
|
-
|
|
2453
|
+
bizName: 'string',
|
|
2454
|
+
bizType: 'string',
|
|
2455
|
+
solution: 'string',
|
|
2456
|
+
stepList: { 'type': 'array', 'itemType': 'string' },
|
|
2499
2457
|
};
|
|
2500
2458
|
}
|
|
2501
2459
|
}
|
|
2502
|
-
exports.
|
|
2503
|
-
class
|
|
2460
|
+
exports.DescribeVerifySettingResponseVerifySettingList = DescribeVerifySettingResponseVerifySettingList;
|
|
2461
|
+
class DescribeVerifyTokenResponseOssUploadToken extends $tea.Model {
|
|
2504
2462
|
constructor(map) {
|
|
2505
2463
|
super(map);
|
|
2506
2464
|
}
|
|
2507
2465
|
static names() {
|
|
2508
2466
|
return {
|
|
2509
|
-
|
|
2467
|
+
bucket: 'Bucket',
|
|
2468
|
+
endPoint: 'EndPoint',
|
|
2469
|
+
expired: 'Expired',
|
|
2470
|
+
key: 'Key',
|
|
2471
|
+
path: 'Path',
|
|
2472
|
+
secret: 'Secret',
|
|
2473
|
+
token: 'Token',
|
|
2510
2474
|
};
|
|
2511
2475
|
}
|
|
2512
2476
|
static types() {
|
|
2513
2477
|
return {
|
|
2514
|
-
|
|
2478
|
+
bucket: 'string',
|
|
2479
|
+
endPoint: 'string',
|
|
2480
|
+
expired: 'number',
|
|
2481
|
+
key: 'string',
|
|
2482
|
+
path: 'string',
|
|
2483
|
+
secret: 'string',
|
|
2484
|
+
token: 'string',
|
|
2515
2485
|
};
|
|
2516
2486
|
}
|
|
2517
2487
|
}
|
|
2518
|
-
exports.
|
|
2519
|
-
class
|
|
2488
|
+
exports.DescribeVerifyTokenResponseOssUploadToken = DescribeVerifyTokenResponseOssUploadToken;
|
|
2489
|
+
class DescribeVerifyUsageResponseVerifyUsageList extends $tea.Model {
|
|
2520
2490
|
constructor(map) {
|
|
2521
2491
|
super(map);
|
|
2522
2492
|
}
|
|
2523
2493
|
static names() {
|
|
2524
2494
|
return {
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2495
|
+
bizType: 'BizType',
|
|
2496
|
+
date: 'Date',
|
|
2497
|
+
failCount: 'FailCount',
|
|
2498
|
+
passCount: 'PassCount',
|
|
2499
|
+
totalCount: 'TotalCount',
|
|
2528
2500
|
};
|
|
2529
2501
|
}
|
|
2530
2502
|
static types() {
|
|
2531
2503
|
return {
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2504
|
+
bizType: 'string',
|
|
2505
|
+
date: 'string',
|
|
2506
|
+
failCount: 'number',
|
|
2507
|
+
passCount: 'number',
|
|
2508
|
+
totalCount: 'number',
|
|
2535
2509
|
};
|
|
2536
2510
|
}
|
|
2537
2511
|
}
|
|
2538
|
-
exports.
|
|
2539
|
-
class
|
|
2512
|
+
exports.DescribeVerifyUsageResponseVerifyUsageList = DescribeVerifyUsageResponseVerifyUsageList;
|
|
2513
|
+
class DescribeWhitelistResponseItems extends $tea.Model {
|
|
2540
2514
|
constructor(map) {
|
|
2541
2515
|
super(map);
|
|
2542
2516
|
}
|
|
2543
2517
|
static names() {
|
|
2544
2518
|
return {
|
|
2545
|
-
|
|
2546
|
-
|
|
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',
|
|
2547
2529
|
};
|
|
2548
2530
|
}
|
|
2549
2531
|
static types() {
|
|
2550
2532
|
return {
|
|
2551
|
-
|
|
2552
|
-
|
|
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',
|
|
2553
2543
|
};
|
|
2554
2544
|
}
|
|
2555
2545
|
}
|
|
2556
|
-
exports.
|
|
2557
|
-
class
|
|
2546
|
+
exports.DescribeWhitelistResponseItems = DescribeWhitelistResponseItems;
|
|
2547
|
+
class DescribeWhitelistSettingResponseItems extends $tea.Model {
|
|
2558
2548
|
constructor(map) {
|
|
2559
2549
|
super(map);
|
|
2560
2550
|
}
|
|
2561
2551
|
static names() {
|
|
2562
2552
|
return {
|
|
2563
|
-
|
|
2564
|
-
|
|
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',
|
|
2565
2562
|
};
|
|
2566
2563
|
}
|
|
2567
2564
|
static types() {
|
|
2568
2565
|
return {
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
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
|
+
class DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfoFaceAttributesHeadpose extends $tea.Model {
|
|
2576
2580
|
constructor(map) {
|
|
2577
2581
|
super(map);
|
|
2578
2582
|
}
|
|
2579
2583
|
static names() {
|
|
2580
2584
|
return {
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
number: 'Number',
|
|
2585
|
-
address: 'Address',
|
|
2586
|
-
birth: 'Birth',
|
|
2587
|
-
sex: 'Sex',
|
|
2588
|
-
nationality: 'Nationality',
|
|
2589
|
-
authority: 'Authority',
|
|
2590
|
-
startDate: 'StartDate',
|
|
2591
|
-
endDate: 'EndDate',
|
|
2585
|
+
pitchAngle: 'PitchAngle',
|
|
2586
|
+
rollAngle: 'RollAngle',
|
|
2587
|
+
yawAngle: 'YawAngle',
|
|
2592
2588
|
};
|
|
2593
2589
|
}
|
|
2594
2590
|
static types() {
|
|
2595
2591
|
return {
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
number: 'string',
|
|
2600
|
-
address: 'string',
|
|
2601
|
-
birth: 'string',
|
|
2602
|
-
sex: 'string',
|
|
2603
|
-
nationality: 'string',
|
|
2604
|
-
authority: 'string',
|
|
2605
|
-
startDate: 'string',
|
|
2606
|
-
endDate: 'string',
|
|
2592
|
+
pitchAngle: 'number',
|
|
2593
|
+
rollAngle: 'number',
|
|
2594
|
+
yawAngle: 'number',
|
|
2607
2595
|
};
|
|
2608
2596
|
}
|
|
2609
2597
|
}
|
|
2610
|
-
exports.
|
|
2611
|
-
class
|
|
2598
|
+
exports.DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfoFaceAttributesHeadpose = DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfoFaceAttributesHeadpose;
|
|
2599
|
+
class DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfoFaceAttributesSmiling extends $tea.Model {
|
|
2612
2600
|
constructor(map) {
|
|
2613
2601
|
super(map);
|
|
2614
2602
|
}
|
|
2615
2603
|
static names() {
|
|
2616
2604
|
return {
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
idCardNumber: 'IdCardNumber',
|
|
2620
|
-
idCardInfo: 'IdCardInfo',
|
|
2605
|
+
threshold: 'Threshold',
|
|
2606
|
+
value: 'Value',
|
|
2621
2607
|
};
|
|
2622
2608
|
}
|
|
2623
2609
|
static types() {
|
|
2624
2610
|
return {
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
idCardNumber: 'string',
|
|
2628
|
-
idCardInfo: DescribeVerifyRecordsResponseRecordsListMaterialIdCardInfo,
|
|
2611
|
+
threshold: 'number',
|
|
2612
|
+
value: 'number',
|
|
2629
2613
|
};
|
|
2630
2614
|
}
|
|
2631
2615
|
}
|
|
2632
|
-
exports.
|
|
2633
|
-
class
|
|
2616
|
+
exports.DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfoFaceAttributesSmiling = DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfoFaceAttributesSmiling;
|
|
2617
|
+
class DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfoFaceAttributes extends $tea.Model {
|
|
2634
2618
|
constructor(map) {
|
|
2635
2619
|
super(map);
|
|
2636
2620
|
}
|
|
2637
2621
|
static names() {
|
|
2638
2622
|
return {
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
material: 'Material',
|
|
2623
|
+
blur: 'Blur',
|
|
2624
|
+
facequal: 'Facequal',
|
|
2625
|
+
facetype: 'Facetype',
|
|
2626
|
+
glasses: 'Glasses',
|
|
2627
|
+
integrity: 'Integrity',
|
|
2628
|
+
respirator: 'Respirator',
|
|
2629
|
+
headpose: 'Headpose',
|
|
2630
|
+
smiling: 'Smiling',
|
|
2648
2631
|
};
|
|
2649
2632
|
}
|
|
2650
2633
|
static types() {
|
|
2651
2634
|
return {
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
material: DescribeVerifyRecordsResponseRecordsListMaterial,
|
|
2635
|
+
blur: 'number',
|
|
2636
|
+
facequal: 'number',
|
|
2637
|
+
facetype: 'string',
|
|
2638
|
+
glasses: 'string',
|
|
2639
|
+
integrity: 'number',
|
|
2640
|
+
respirator: 'string',
|
|
2641
|
+
headpose: DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfoFaceAttributesHeadpose,
|
|
2642
|
+
smiling: DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfoFaceAttributesSmiling,
|
|
2661
2643
|
};
|
|
2662
2644
|
}
|
|
2663
2645
|
}
|
|
2664
|
-
exports.
|
|
2665
|
-
class
|
|
2646
|
+
exports.DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfoFaceAttributes = DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfoFaceAttributes;
|
|
2647
|
+
class DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfoFaceRect extends $tea.Model {
|
|
2666
2648
|
constructor(map) {
|
|
2667
2649
|
super(map);
|
|
2668
2650
|
}
|
|
2669
2651
|
static names() {
|
|
2670
2652
|
return {
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2653
|
+
height: 'Height',
|
|
2654
|
+
left: 'Left',
|
|
2655
|
+
top: 'Top',
|
|
2656
|
+
width: 'Width',
|
|
2675
2657
|
};
|
|
2676
2658
|
}
|
|
2677
2659
|
static types() {
|
|
2678
2660
|
return {
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2661
|
+
height: 'number',
|
|
2662
|
+
left: 'number',
|
|
2663
|
+
top: 'number',
|
|
2664
|
+
width: 'number',
|
|
2683
2665
|
};
|
|
2684
2666
|
}
|
|
2685
2667
|
}
|
|
2686
|
-
exports.
|
|
2687
|
-
class
|
|
2668
|
+
exports.DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfoFaceRect = DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfoFaceRect;
|
|
2669
|
+
class DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfo extends $tea.Model {
|
|
2688
2670
|
constructor(map) {
|
|
2689
2671
|
super(map);
|
|
2690
2672
|
}
|
|
2691
2673
|
static names() {
|
|
2692
2674
|
return {
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
totalCount: 'TotalCount',
|
|
2696
|
-
passCount: 'PassCount',
|
|
2697
|
-
failCount: 'FailCount',
|
|
2675
|
+
faceAttributes: 'FaceAttributes',
|
|
2676
|
+
faceRect: 'FaceRect',
|
|
2698
2677
|
};
|
|
2699
2678
|
}
|
|
2700
2679
|
static types() {
|
|
2701
2680
|
return {
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
totalCount: 'number',
|
|
2705
|
-
passCount: 'number',
|
|
2706
|
-
failCount: 'number',
|
|
2681
|
+
faceAttributes: DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfoFaceAttributes,
|
|
2682
|
+
faceRect: DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfoFaceRect,
|
|
2707
2683
|
};
|
|
2708
2684
|
}
|
|
2709
2685
|
}
|
|
2710
|
-
exports.
|
|
2711
|
-
class
|
|
2686
|
+
exports.DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfo = DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfo;
|
|
2687
|
+
class DetectFaceAttributesResponseDataFaceInfos extends $tea.Model {
|
|
2712
2688
|
constructor(map) {
|
|
2713
2689
|
super(map);
|
|
2714
2690
|
}
|
|
2715
2691
|
static names() {
|
|
2716
2692
|
return {
|
|
2717
|
-
|
|
2718
|
-
address: 'Address',
|
|
2719
|
-
nationality: 'Nationality',
|
|
2720
|
-
endDate: 'EndDate',
|
|
2721
|
-
frontImageUrl: 'FrontImageUrl',
|
|
2722
|
-
authority: 'Authority',
|
|
2723
|
-
name: 'Name',
|
|
2724
|
-
birth: 'Birth',
|
|
2725
|
-
backImageUrl: 'BackImageUrl',
|
|
2726
|
-
startDate: 'StartDate',
|
|
2693
|
+
faceAttributesDetectInfo: 'FaceAttributesDetectInfo',
|
|
2727
2694
|
};
|
|
2728
2695
|
}
|
|
2729
2696
|
static types() {
|
|
2730
2697
|
return {
|
|
2731
|
-
|
|
2732
|
-
address: 'string',
|
|
2733
|
-
nationality: 'string',
|
|
2734
|
-
endDate: 'string',
|
|
2735
|
-
frontImageUrl: 'string',
|
|
2736
|
-
authority: 'string',
|
|
2737
|
-
name: 'string',
|
|
2738
|
-
birth: 'string',
|
|
2739
|
-
backImageUrl: 'string',
|
|
2740
|
-
startDate: 'string',
|
|
2698
|
+
faceAttributesDetectInfo: { 'type': 'array', 'itemType': DetectFaceAttributesResponseDataFaceInfosFaceAttributesDetectInfo },
|
|
2741
2699
|
};
|
|
2742
2700
|
}
|
|
2743
2701
|
}
|
|
2744
|
-
exports.
|
|
2745
|
-
class
|
|
2702
|
+
exports.DetectFaceAttributesResponseDataFaceInfos = DetectFaceAttributesResponseDataFaceInfos;
|
|
2703
|
+
class DetectFaceAttributesResponseData extends $tea.Model {
|
|
2746
2704
|
constructor(map) {
|
|
2747
2705
|
super(map);
|
|
2748
2706
|
}
|
|
2749
2707
|
static names() {
|
|
2750
2708
|
return {
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
faceQuality: 'FaceQuality',
|
|
2755
|
-
faceGlobalUrl: 'FaceGlobalUrl',
|
|
2756
|
-
faceMask: 'FaceMask',
|
|
2757
|
-
idCardInfo: 'IdCardInfo',
|
|
2709
|
+
imgHeight: 'ImgHeight',
|
|
2710
|
+
imgWidth: 'ImgWidth',
|
|
2711
|
+
faceInfos: 'FaceInfos',
|
|
2758
2712
|
};
|
|
2759
2713
|
}
|
|
2760
2714
|
static types() {
|
|
2761
2715
|
return {
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
faceQuality: 'string',
|
|
2766
|
-
faceGlobalUrl: 'string',
|
|
2767
|
-
faceMask: 'string',
|
|
2768
|
-
idCardInfo: VerifyMaterialResponseMaterialIdCardInfo,
|
|
2716
|
+
imgHeight: 'number',
|
|
2717
|
+
imgWidth: 'number',
|
|
2718
|
+
faceInfos: DetectFaceAttributesResponseDataFaceInfos,
|
|
2769
2719
|
};
|
|
2770
2720
|
}
|
|
2771
2721
|
}
|
|
2772
|
-
exports.
|
|
2773
|
-
class
|
|
2722
|
+
exports.DetectFaceAttributesResponseData = DetectFaceAttributesResponseData;
|
|
2723
|
+
class InitDeviceResponseResultObject extends $tea.Model {
|
|
2774
2724
|
constructor(map) {
|
|
2775
2725
|
super(map);
|
|
2776
2726
|
}
|
|
2777
2727
|
static names() {
|
|
2778
2728
|
return {
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
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',
|
|
2789
2744
|
};
|
|
2790
2745
|
}
|
|
2791
2746
|
static types() {
|
|
2792
2747
|
return {
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
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',
|
|
2803
2763
|
};
|
|
2804
2764
|
}
|
|
2805
2765
|
}
|
|
2806
|
-
exports.
|
|
2807
|
-
class
|
|
2766
|
+
exports.InitDeviceResponseResultObject = InitDeviceResponseResultObject;
|
|
2767
|
+
class InitFaceVerifyResponseResultObject extends $tea.Model {
|
|
2808
2768
|
constructor(map) {
|
|
2809
2769
|
super(map);
|
|
2810
2770
|
}
|
|
2811
2771
|
static names() {
|
|
2812
2772
|
return {
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
idCardNumber: 'IdCardNumber',
|
|
2816
|
-
faceQuality: 'FaceQuality',
|
|
2817
|
-
faceGlobalUrl: 'FaceGlobalUrl',
|
|
2818
|
-
faceMask: 'FaceMask',
|
|
2819
|
-
idCardInfo: 'IdCardInfo',
|
|
2820
|
-
videoUrls: 'VideoUrls',
|
|
2773
|
+
certifyId: 'CertifyId',
|
|
2774
|
+
certifyUrl: 'CertifyUrl',
|
|
2821
2775
|
};
|
|
2822
2776
|
}
|
|
2823
2777
|
static types() {
|
|
2824
2778
|
return {
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
idCardNumber: 'string',
|
|
2828
|
-
faceQuality: 'string',
|
|
2829
|
-
faceGlobalUrl: 'string',
|
|
2830
|
-
faceMask: 'boolean',
|
|
2831
|
-
idCardInfo: DescribeVerifyResultResponseMaterialIdCardInfo,
|
|
2832
|
-
videoUrls: { 'type': 'array', 'itemType': 'string' },
|
|
2779
|
+
certifyId: 'string',
|
|
2780
|
+
certifyUrl: 'string',
|
|
2833
2781
|
};
|
|
2834
2782
|
}
|
|
2835
2783
|
}
|
|
2836
|
-
exports.
|
|
2837
|
-
class
|
|
2784
|
+
exports.InitFaceVerifyResponseResultObject = InitFaceVerifyResponseResultObject;
|
|
2785
|
+
class LivenessFaceVerifyResponseResultObject extends $tea.Model {
|
|
2838
2786
|
constructor(map) {
|
|
2839
2787
|
super(map);
|
|
2840
2788
|
}
|
|
2841
2789
|
static names() {
|
|
2842
2790
|
return {
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
secret: 'Secret',
|
|
2848
|
-
key: 'Key',
|
|
2849
|
-
token: 'Token',
|
|
2791
|
+
certifyId: 'CertifyId',
|
|
2792
|
+
materialInfo: 'MaterialInfo',
|
|
2793
|
+
passed: 'Passed',
|
|
2794
|
+
subCode: 'SubCode',
|
|
2850
2795
|
};
|
|
2851
2796
|
}
|
|
2852
2797
|
static types() {
|
|
2853
2798
|
return {
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
secret: 'string',
|
|
2859
|
-
key: 'string',
|
|
2860
|
-
token: 'string',
|
|
2799
|
+
certifyId: 'string',
|
|
2800
|
+
materialInfo: 'string',
|
|
2801
|
+
passed: 'string',
|
|
2802
|
+
subCode: 'string',
|
|
2861
2803
|
};
|
|
2862
2804
|
}
|
|
2863
2805
|
}
|
|
2864
|
-
exports.
|
|
2865
|
-
class
|
|
2806
|
+
exports.LivenessFaceVerifyResponseResultObject = LivenessFaceVerifyResponseResultObject;
|
|
2807
|
+
class VerifyDeviceResponseResultObject extends $tea.Model {
|
|
2866
2808
|
constructor(map) {
|
|
2867
2809
|
super(map);
|
|
2868
2810
|
}
|
|
2869
2811
|
static names() {
|
|
2870
2812
|
return {
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
token: 'Token',
|
|
2813
|
+
extParams: 'ExtParams',
|
|
2814
|
+
hasNext: 'HasNext',
|
|
2815
|
+
productRetCode: 'ProductRetCode',
|
|
2816
|
+
retCodeSub: 'RetCodeSub',
|
|
2817
|
+
retMessageSub: 'RetMessageSub',
|
|
2818
|
+
validationRetCode: 'ValidationRetCode',
|
|
2878
2819
|
};
|
|
2879
2820
|
}
|
|
2880
2821
|
static types() {
|
|
2881
2822
|
return {
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
|
|
2887
|
-
|
|
2888
|
-
token: 'string',
|
|
2823
|
+
extParams: 'string',
|
|
2824
|
+
hasNext: 'string',
|
|
2825
|
+
productRetCode: 'string',
|
|
2826
|
+
retCodeSub: 'string',
|
|
2827
|
+
retMessageSub: 'string',
|
|
2828
|
+
validationRetCode: 'string',
|
|
2889
2829
|
};
|
|
2890
2830
|
}
|
|
2891
2831
|
}
|
|
2892
|
-
exports.
|
|
2893
|
-
class
|
|
2894
|
-
constructor(
|
|
2895
|
-
super(
|
|
2896
|
-
this._endpointRule = "central";
|
|
2897
|
-
this.checkConfig(config);
|
|
2898
|
-
this._endpoint = this.getEndpoint("cloudauth", this._regionId, this._endpointRule, this._network, this._suffix, this._endpointMap, this._endpoint);
|
|
2899
|
-
}
|
|
2900
|
-
async describeWhitelistSetting(request, runtime) {
|
|
2901
|
-
tea_util_1.default.validateModel(request);
|
|
2902
|
-
return $tea.cast(await this.doRequest("DescribeWhitelistSetting", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeWhitelistSettingResponse({}));
|
|
2903
|
-
}
|
|
2904
|
-
async describeWhitelistSettingSimply(request) {
|
|
2905
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
2906
|
-
return await this.describeWhitelistSetting(request, runtime);
|
|
2907
|
-
}
|
|
2908
|
-
async deleteWhitelistSetting(request, runtime) {
|
|
2909
|
-
tea_util_1.default.validateModel(request);
|
|
2910
|
-
return $tea.cast(await this.doRequest("DeleteWhitelistSetting", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DeleteWhitelistSettingResponse({}));
|
|
2911
|
-
}
|
|
2912
|
-
async deleteWhitelistSettingSimply(request) {
|
|
2913
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
2914
|
-
return await this.deleteWhitelistSetting(request, runtime);
|
|
2915
|
-
}
|
|
2916
|
-
async createWhitelistSetting(request, runtime) {
|
|
2917
|
-
tea_util_1.default.validateModel(request);
|
|
2918
|
-
return $tea.cast(await this.doRequest("CreateWhitelistSetting", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new CreateWhitelistSettingResponse({}));
|
|
2919
|
-
}
|
|
2920
|
-
async createWhitelistSettingSimply(request) {
|
|
2921
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
2922
|
-
return await this.createWhitelistSetting(request, runtime);
|
|
2923
|
-
}
|
|
2924
|
-
async describeWhitelist(request, runtime) {
|
|
2925
|
-
tea_util_1.default.validateModel(request);
|
|
2926
|
-
return $tea.cast(await this.doRequest("DescribeWhitelist", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeWhitelistResponse({}));
|
|
2927
|
-
}
|
|
2928
|
-
async describeWhitelistSimply(request) {
|
|
2929
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
2930
|
-
return await this.describeWhitelist(request, runtime);
|
|
2931
|
-
}
|
|
2932
|
-
async deleteWhitelist(request, runtime) {
|
|
2933
|
-
tea_util_1.default.validateModel(request);
|
|
2934
|
-
return $tea.cast(await this.doRequest("DeleteWhitelist", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DeleteWhitelistResponse({}));
|
|
2935
|
-
}
|
|
2936
|
-
async deleteWhitelistSimply(request) {
|
|
2937
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
2938
|
-
return await this.deleteWhitelist(request, runtime);
|
|
2939
|
-
}
|
|
2940
|
-
async createWhitelist(request, runtime) {
|
|
2941
|
-
tea_util_1.default.validateModel(request);
|
|
2942
|
-
return $tea.cast(await this.doRequest("CreateWhitelist", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new CreateWhitelistResponse({}));
|
|
2943
|
-
}
|
|
2944
|
-
async createWhitelistSimply(request) {
|
|
2945
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
2946
|
-
return await this.createWhitelist(request, runtime);
|
|
2947
|
-
}
|
|
2948
|
-
async describeFaceConfig(request, runtime) {
|
|
2949
|
-
tea_util_1.default.validateModel(request);
|
|
2950
|
-
return $tea.cast(await this.doRequest("DescribeFaceConfig", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeFaceConfigResponse({}));
|
|
2951
|
-
}
|
|
2952
|
-
async describeFaceConfigSimply(request) {
|
|
2953
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
2954
|
-
return await this.describeFaceConfig(request, runtime);
|
|
2832
|
+
exports.VerifyDeviceResponseResultObject = VerifyDeviceResponseResultObject;
|
|
2833
|
+
class VerifyMaterialResponseMaterialIdCardInfo extends $tea.Model {
|
|
2834
|
+
constructor(map) {
|
|
2835
|
+
super(map);
|
|
2955
2836
|
}
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
|
|
2837
|
+
static names() {
|
|
2838
|
+
return {
|
|
2839
|
+
address: 'Address',
|
|
2840
|
+
authority: 'Authority',
|
|
2841
|
+
backImageUrl: 'BackImageUrl',
|
|
2842
|
+
birth: 'Birth',
|
|
2843
|
+
endDate: 'EndDate',
|
|
2844
|
+
frontImageUrl: 'FrontImageUrl',
|
|
2845
|
+
name: 'Name',
|
|
2846
|
+
nationality: 'Nationality',
|
|
2847
|
+
number: 'Number',
|
|
2848
|
+
startDate: 'StartDate',
|
|
2849
|
+
};
|
|
2959
2850
|
}
|
|
2960
|
-
|
|
2961
|
-
|
|
2962
|
-
|
|
2851
|
+
static types() {
|
|
2852
|
+
return {
|
|
2853
|
+
address: 'string',
|
|
2854
|
+
authority: 'string',
|
|
2855
|
+
backImageUrl: 'string',
|
|
2856
|
+
birth: 'string',
|
|
2857
|
+
endDate: 'string',
|
|
2858
|
+
frontImageUrl: 'string',
|
|
2859
|
+
name: 'string',
|
|
2860
|
+
nationality: 'string',
|
|
2861
|
+
number: 'string',
|
|
2862
|
+
startDate: 'string',
|
|
2863
|
+
};
|
|
2963
2864
|
}
|
|
2964
|
-
|
|
2965
|
-
|
|
2966
|
-
|
|
2865
|
+
}
|
|
2866
|
+
exports.VerifyMaterialResponseMaterialIdCardInfo = VerifyMaterialResponseMaterialIdCardInfo;
|
|
2867
|
+
class VerifyMaterialResponseMaterial extends $tea.Model {
|
|
2868
|
+
constructor(map) {
|
|
2869
|
+
super(map);
|
|
2967
2870
|
}
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
2871
|
+
static names() {
|
|
2872
|
+
return {
|
|
2873
|
+
faceGlobalUrl: 'FaceGlobalUrl',
|
|
2874
|
+
faceImageUrl: 'FaceImageUrl',
|
|
2875
|
+
faceMask: 'FaceMask',
|
|
2876
|
+
faceQuality: 'FaceQuality',
|
|
2877
|
+
idCardName: 'IdCardName',
|
|
2878
|
+
idCardNumber: 'IdCardNumber',
|
|
2879
|
+
idCardInfo: 'IdCardInfo',
|
|
2880
|
+
};
|
|
2971
2881
|
}
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
2882
|
+
static types() {
|
|
2883
|
+
return {
|
|
2884
|
+
faceGlobalUrl: 'string',
|
|
2885
|
+
faceImageUrl: 'string',
|
|
2886
|
+
faceMask: 'string',
|
|
2887
|
+
faceQuality: 'string',
|
|
2888
|
+
idCardName: 'string',
|
|
2889
|
+
idCardNumber: 'string',
|
|
2890
|
+
idCardInfo: VerifyMaterialResponseMaterialIdCardInfo,
|
|
2891
|
+
};
|
|
2975
2892
|
}
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2893
|
+
}
|
|
2894
|
+
exports.VerifyMaterialResponseMaterial = VerifyMaterialResponseMaterial;
|
|
2895
|
+
class Client extends rpc_client_1.default {
|
|
2896
|
+
constructor(config) {
|
|
2897
|
+
super(config);
|
|
2898
|
+
this._endpointRule = "central";
|
|
2899
|
+
this.checkConfig(config);
|
|
2900
|
+
this._endpoint = this.getEndpoint("cloudauth", this._regionId, this._endpointRule, this._network, this._suffix, this._endpointMap, this._endpoint);
|
|
2979
2901
|
}
|
|
2980
2902
|
async compareFaceVerify(request, runtime) {
|
|
2981
2903
|
tea_util_1.default.validateModel(request);
|
|
@@ -2985,37 +2907,13 @@ class Client extends rpc_client_1.default {
|
|
|
2985
2907
|
let runtime = new $Util.RuntimeOptions({});
|
|
2986
2908
|
return await this.compareFaceVerify(request, runtime);
|
|
2987
2909
|
}
|
|
2988
|
-
async
|
|
2989
|
-
tea_util_1.default.validateModel(request);
|
|
2990
|
-
return $tea.cast(await this.doRequest("DescribeSdkUrl", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeSdkUrlResponse({}));
|
|
2991
|
-
}
|
|
2992
|
-
async describeSdkUrlSimply(request) {
|
|
2993
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
2994
|
-
return await this.describeSdkUrl(request, runtime);
|
|
2995
|
-
}
|
|
2996
|
-
async describeUpdatePackageResult(request, runtime) {
|
|
2997
|
-
tea_util_1.default.validateModel(request);
|
|
2998
|
-
return $tea.cast(await this.doRequest("DescribeUpdatePackageResult", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeUpdatePackageResultResponse({}));
|
|
2999
|
-
}
|
|
3000
|
-
async describeUpdatePackageResultSimply(request) {
|
|
3001
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3002
|
-
return await this.describeUpdatePackageResult(request, runtime);
|
|
3003
|
-
}
|
|
3004
|
-
async updateAppPackage(request, runtime) {
|
|
3005
|
-
tea_util_1.default.validateModel(request);
|
|
3006
|
-
return $tea.cast(await this.doRequest("UpdateAppPackage", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new UpdateAppPackageResponse({}));
|
|
3007
|
-
}
|
|
3008
|
-
async updateAppPackageSimply(request) {
|
|
3009
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
3010
|
-
return await this.updateAppPackage(request, runtime);
|
|
3011
|
-
}
|
|
3012
|
-
async describeAppInfo(request, runtime) {
|
|
2910
|
+
async compareFaces(request, runtime) {
|
|
3013
2911
|
tea_util_1.default.validateModel(request);
|
|
3014
|
-
return $tea.cast(await this.doRequest("
|
|
2912
|
+
return $tea.cast(await this.doRequest("CompareFaces", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new CompareFacesResponse({}));
|
|
3015
2913
|
}
|
|
3016
|
-
async
|
|
2914
|
+
async compareFacesSimply(request) {
|
|
3017
2915
|
let runtime = new $Util.RuntimeOptions({});
|
|
3018
|
-
return await this.
|
|
2916
|
+
return await this.compareFaces(request, runtime);
|
|
3019
2917
|
}
|
|
3020
2918
|
async contrastFaceVerify(request, runtime) {
|
|
3021
2919
|
tea_util_1.default.validateModel(request);
|
|
@@ -3095,53 +2993,85 @@ class Client extends rpc_client_1.default {
|
|
|
3095
2993
|
let contrastFaceVerifyResp = await this.contrastFaceVerify(contrastFaceVerifyReq, runtime);
|
|
3096
2994
|
return contrastFaceVerifyResp;
|
|
3097
2995
|
}
|
|
3098
|
-
async
|
|
2996
|
+
async createAuthKey(request, runtime) {
|
|
2997
|
+
tea_util_1.default.validateModel(request);
|
|
2998
|
+
return $tea.cast(await this.doRequest("CreateAuthKey", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new CreateAuthKeyResponse({}));
|
|
2999
|
+
}
|
|
3000
|
+
async createAuthKeySimply(request) {
|
|
3001
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
3002
|
+
return await this.createAuthKey(request, runtime);
|
|
3003
|
+
}
|
|
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) {
|
|
3099
3013
|
tea_util_1.default.validateModel(request);
|
|
3100
|
-
return $tea.cast(await this.doRequest("
|
|
3014
|
+
return $tea.cast(await this.doRequest("CreateRPSDK", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new CreateRPSDKResponse({}));
|
|
3101
3015
|
}
|
|
3102
|
-
async
|
|
3016
|
+
async createRPSDKSimply(request) {
|
|
3103
3017
|
let runtime = new $Util.RuntimeOptions({});
|
|
3104
|
-
return await this.
|
|
3018
|
+
return await this.createRPSDK(request, runtime);
|
|
3105
3019
|
}
|
|
3106
|
-
async
|
|
3020
|
+
async createVerifySDK(request, runtime) {
|
|
3107
3021
|
tea_util_1.default.validateModel(request);
|
|
3108
|
-
return $tea.cast(await this.doRequest("
|
|
3022
|
+
return $tea.cast(await this.doRequest("CreateVerifySDK", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new CreateVerifySDKResponse({}));
|
|
3109
3023
|
}
|
|
3110
|
-
async
|
|
3024
|
+
async createVerifySDKSimply(request) {
|
|
3111
3025
|
let runtime = new $Util.RuntimeOptions({});
|
|
3112
|
-
return await this.
|
|
3026
|
+
return await this.createVerifySDK(request, runtime);
|
|
3113
3027
|
}
|
|
3114
|
-
async
|
|
3028
|
+
async createVerifySetting(request, runtime) {
|
|
3115
3029
|
tea_util_1.default.validateModel(request);
|
|
3116
|
-
return $tea.cast(await this.doRequest("
|
|
3030
|
+
return $tea.cast(await this.doRequest("CreateVerifySetting", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new CreateVerifySettingResponse({}));
|
|
3117
3031
|
}
|
|
3118
|
-
async
|
|
3032
|
+
async createVerifySettingSimply(request) {
|
|
3119
3033
|
let runtime = new $Util.RuntimeOptions({});
|
|
3120
|
-
return await this.
|
|
3034
|
+
return await this.createVerifySetting(request, runtime);
|
|
3121
3035
|
}
|
|
3122
|
-
async
|
|
3036
|
+
async createWhitelist(request, runtime) {
|
|
3123
3037
|
tea_util_1.default.validateModel(request);
|
|
3124
|
-
return $tea.cast(await this.doRequest("
|
|
3038
|
+
return $tea.cast(await this.doRequest("CreateWhitelist", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new CreateWhitelistResponse({}));
|
|
3125
3039
|
}
|
|
3126
|
-
async
|
|
3040
|
+
async createWhitelistSimply(request) {
|
|
3127
3041
|
let runtime = new $Util.RuntimeOptions({});
|
|
3128
|
-
return await this.
|
|
3042
|
+
return await this.createWhitelist(request, runtime);
|
|
3129
3043
|
}
|
|
3130
|
-
async
|
|
3044
|
+
async createWhitelistSetting(request, runtime) {
|
|
3131
3045
|
tea_util_1.default.validateModel(request);
|
|
3132
|
-
return $tea.cast(await this.doRequest("
|
|
3046
|
+
return $tea.cast(await this.doRequest("CreateWhitelistSetting", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new CreateWhitelistSettingResponse({}));
|
|
3133
3047
|
}
|
|
3134
|
-
async
|
|
3048
|
+
async createWhitelistSettingSimply(request) {
|
|
3135
3049
|
let runtime = new $Util.RuntimeOptions({});
|
|
3136
|
-
return await this.
|
|
3050
|
+
return await this.createWhitelistSetting(request, runtime);
|
|
3137
3051
|
}
|
|
3138
|
-
async
|
|
3052
|
+
async deleteWhitelist(request, runtime) {
|
|
3139
3053
|
tea_util_1.default.validateModel(request);
|
|
3140
|
-
return $tea.cast(await this.doRequest("
|
|
3054
|
+
return $tea.cast(await this.doRequest("DeleteWhitelist", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DeleteWhitelistResponse({}));
|
|
3141
3055
|
}
|
|
3142
|
-
async
|
|
3056
|
+
async deleteWhitelistSimply(request) {
|
|
3143
3057
|
let runtime = new $Util.RuntimeOptions({});
|
|
3144
|
-
return await this.
|
|
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);
|
|
3145
3075
|
}
|
|
3146
3076
|
async describeDeviceInfo(request, runtime) {
|
|
3147
3077
|
tea_util_1.default.validateModel(request);
|
|
@@ -3151,45 +3081,77 @@ class Client extends rpc_client_1.default {
|
|
|
3151
3081
|
let runtime = new $Util.RuntimeOptions({});
|
|
3152
3082
|
return await this.describeDeviceInfo(request, runtime);
|
|
3153
3083
|
}
|
|
3154
|
-
async
|
|
3084
|
+
async describeFaceConfig(request, runtime) {
|
|
3155
3085
|
tea_util_1.default.validateModel(request);
|
|
3156
|
-
return $tea.cast(await this.doRequest("
|
|
3086
|
+
return $tea.cast(await this.doRequest("DescribeFaceConfig", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeFaceConfigResponse({}));
|
|
3157
3087
|
}
|
|
3158
|
-
async
|
|
3088
|
+
async describeFaceConfigSimply(request) {
|
|
3159
3089
|
let runtime = new $Util.RuntimeOptions({});
|
|
3160
|
-
return await this.
|
|
3090
|
+
return await this.describeFaceConfig(request, runtime);
|
|
3161
3091
|
}
|
|
3162
|
-
async
|
|
3092
|
+
async describeFaceUsage(request, runtime) {
|
|
3163
3093
|
tea_util_1.default.validateModel(request);
|
|
3164
|
-
return $tea.cast(await this.doRequest("
|
|
3094
|
+
return $tea.cast(await this.doRequest("DescribeFaceUsage", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeFaceUsageResponse({}));
|
|
3165
3095
|
}
|
|
3166
|
-
async
|
|
3096
|
+
async describeFaceUsageSimply(request) {
|
|
3167
3097
|
let runtime = new $Util.RuntimeOptions({});
|
|
3168
|
-
return await this.
|
|
3098
|
+
return await this.describeFaceUsage(request, runtime);
|
|
3169
3099
|
}
|
|
3170
|
-
async
|
|
3100
|
+
async describeFaceVerify(request, runtime) {
|
|
3171
3101
|
tea_util_1.default.validateModel(request);
|
|
3172
|
-
return $tea.cast(await this.doRequest("
|
|
3102
|
+
return $tea.cast(await this.doRequest("DescribeFaceVerify", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeFaceVerifyResponse({}));
|
|
3173
3103
|
}
|
|
3174
|
-
async
|
|
3104
|
+
async describeFaceVerifySimply(request) {
|
|
3175
3105
|
let runtime = new $Util.RuntimeOptions({});
|
|
3176
|
-
return await this.
|
|
3106
|
+
return await this.describeFaceVerify(request, runtime);
|
|
3177
3107
|
}
|
|
3178
|
-
async
|
|
3108
|
+
async describeOssUploadToken(request, runtime) {
|
|
3179
3109
|
tea_util_1.default.validateModel(request);
|
|
3180
|
-
return $tea.cast(await this.doRequest("
|
|
3110
|
+
return $tea.cast(await this.doRequest("DescribeOssUploadToken", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeOssUploadTokenResponse({}));
|
|
3181
3111
|
}
|
|
3182
|
-
async
|
|
3112
|
+
async describeOssUploadTokenSimply(request) {
|
|
3183
3113
|
let runtime = new $Util.RuntimeOptions({});
|
|
3184
|
-
return await this.
|
|
3114
|
+
return await this.describeOssUploadToken(request, runtime);
|
|
3185
3115
|
}
|
|
3186
|
-
async
|
|
3116
|
+
async describeRPSDK(request, runtime) {
|
|
3187
3117
|
tea_util_1.default.validateModel(request);
|
|
3188
|
-
return $tea.cast(await this.doRequest("
|
|
3118
|
+
return $tea.cast(await this.doRequest("DescribeRPSDK", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeRPSDKResponse({}));
|
|
3189
3119
|
}
|
|
3190
|
-
async
|
|
3120
|
+
async describeRPSDKSimply(request) {
|
|
3191
3121
|
let runtime = new $Util.RuntimeOptions({});
|
|
3192
|
-
return await this.
|
|
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);
|
|
3193
3155
|
}
|
|
3194
3156
|
async describeVerifyRecords(request, runtime) {
|
|
3195
3157
|
tea_util_1.default.validateModel(request);
|
|
@@ -3199,21 +3161,21 @@ class Client extends rpc_client_1.default {
|
|
|
3199
3161
|
let runtime = new $Util.RuntimeOptions({});
|
|
3200
3162
|
return await this.describeVerifyRecords(request, runtime);
|
|
3201
3163
|
}
|
|
3202
|
-
async
|
|
3164
|
+
async describeVerifyResult(request, runtime) {
|
|
3203
3165
|
tea_util_1.default.validateModel(request);
|
|
3204
|
-
return $tea.cast(await this.doRequest("
|
|
3166
|
+
return $tea.cast(await this.doRequest("DescribeVerifyResult", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeVerifyResultResponse({}));
|
|
3205
3167
|
}
|
|
3206
|
-
async
|
|
3168
|
+
async describeVerifyResultSimply(request) {
|
|
3207
3169
|
let runtime = new $Util.RuntimeOptions({});
|
|
3208
|
-
return await this.
|
|
3170
|
+
return await this.describeVerifyResult(request, runtime);
|
|
3209
3171
|
}
|
|
3210
|
-
async
|
|
3172
|
+
async describeVerifySDK(request, runtime) {
|
|
3211
3173
|
tea_util_1.default.validateModel(request);
|
|
3212
|
-
return $tea.cast(await this.doRequest("
|
|
3174
|
+
return $tea.cast(await this.doRequest("DescribeVerifySDK", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeVerifySDKResponse({}));
|
|
3213
3175
|
}
|
|
3214
|
-
async
|
|
3176
|
+
async describeVerifySDKSimply(request) {
|
|
3215
3177
|
let runtime = new $Util.RuntimeOptions({});
|
|
3216
|
-
return await this.
|
|
3178
|
+
return await this.describeVerifySDK(request, runtime);
|
|
3217
3179
|
}
|
|
3218
3180
|
async describeVerifySetting(request, runtime) {
|
|
3219
3181
|
tea_util_1.default.validateModel(request);
|
|
@@ -3223,6 +3185,14 @@ class Client extends rpc_client_1.default {
|
|
|
3223
3185
|
let runtime = new $Util.RuntimeOptions({});
|
|
3224
3186
|
return await this.describeVerifySetting(request, runtime);
|
|
3225
3187
|
}
|
|
3188
|
+
async describeVerifyToken(request, runtime) {
|
|
3189
|
+
tea_util_1.default.validateModel(request);
|
|
3190
|
+
return $tea.cast(await this.doRequest("DescribeVerifyToken", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeVerifyTokenResponse({}));
|
|
3191
|
+
}
|
|
3192
|
+
async describeVerifyTokenSimply(request) {
|
|
3193
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
3194
|
+
return await this.describeVerifyToken(request, runtime);
|
|
3195
|
+
}
|
|
3226
3196
|
async describeVerifyUsage(request, runtime) {
|
|
3227
3197
|
tea_util_1.default.validateModel(request);
|
|
3228
3198
|
return $tea.cast(await this.doRequest("DescribeVerifyUsage", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeVerifyUsageResponse({}));
|
|
@@ -3231,69 +3201,101 @@ class Client extends rpc_client_1.default {
|
|
|
3231
3201
|
let runtime = new $Util.RuntimeOptions({});
|
|
3232
3202
|
return await this.describeVerifyUsage(request, runtime);
|
|
3233
3203
|
}
|
|
3234
|
-
async
|
|
3204
|
+
async describeWhitelist(request, runtime) {
|
|
3235
3205
|
tea_util_1.default.validateModel(request);
|
|
3236
|
-
return $tea.cast(await this.doRequest("
|
|
3206
|
+
return $tea.cast(await this.doRequest("DescribeWhitelist", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeWhitelistResponse({}));
|
|
3237
3207
|
}
|
|
3238
|
-
async
|
|
3208
|
+
async describeWhitelistSimply(request) {
|
|
3239
3209
|
let runtime = new $Util.RuntimeOptions({});
|
|
3240
|
-
return await this.
|
|
3210
|
+
return await this.describeWhitelist(request, runtime);
|
|
3241
3211
|
}
|
|
3242
|
-
async
|
|
3212
|
+
async describeWhitelistSetting(request, runtime) {
|
|
3243
3213
|
tea_util_1.default.validateModel(request);
|
|
3244
|
-
return $tea.cast(await this.doRequest("
|
|
3214
|
+
return $tea.cast(await this.doRequest("DescribeWhitelistSetting", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DescribeWhitelistSettingResponse({}));
|
|
3245
3215
|
}
|
|
3246
|
-
async
|
|
3216
|
+
async describeWhitelistSettingSimply(request) {
|
|
3247
3217
|
let runtime = new $Util.RuntimeOptions({});
|
|
3248
|
-
return await this.
|
|
3218
|
+
return await this.describeWhitelistSetting(request, runtime);
|
|
3249
3219
|
}
|
|
3250
|
-
async
|
|
3220
|
+
async detectFaceAttributes(request, runtime) {
|
|
3251
3221
|
tea_util_1.default.validateModel(request);
|
|
3252
|
-
return $tea.cast(await this.doRequest("
|
|
3222
|
+
return $tea.cast(await this.doRequest("DetectFaceAttributes", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new DetectFaceAttributesResponse({}));
|
|
3253
3223
|
}
|
|
3254
|
-
async
|
|
3224
|
+
async detectFaceAttributesSimply(request) {
|
|
3255
3225
|
let runtime = new $Util.RuntimeOptions({});
|
|
3256
|
-
return await this.
|
|
3226
|
+
return await this.detectFaceAttributes(request, runtime);
|
|
3257
3227
|
}
|
|
3258
|
-
async
|
|
3228
|
+
async initDevice(request, runtime) {
|
|
3259
3229
|
tea_util_1.default.validateModel(request);
|
|
3260
|
-
return $tea.cast(await this.doRequest("
|
|
3230
|
+
return $tea.cast(await this.doRequest("InitDevice", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new InitDeviceResponse({}));
|
|
3261
3231
|
}
|
|
3262
|
-
async
|
|
3232
|
+
async initDeviceSimply(request) {
|
|
3263
3233
|
let runtime = new $Util.RuntimeOptions({});
|
|
3264
|
-
return await this.
|
|
3234
|
+
return await this.initDevice(request, runtime);
|
|
3265
3235
|
}
|
|
3266
|
-
async
|
|
3236
|
+
async initFaceVerify(request, runtime) {
|
|
3267
3237
|
tea_util_1.default.validateModel(request);
|
|
3268
|
-
return $tea.cast(await this.doRequest("
|
|
3238
|
+
return $tea.cast(await this.doRequest("InitFaceVerify", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new InitFaceVerifyResponse({}));
|
|
3269
3239
|
}
|
|
3270
|
-
async
|
|
3240
|
+
async initFaceVerifySimply(request) {
|
|
3271
3241
|
let runtime = new $Util.RuntimeOptions({});
|
|
3272
|
-
return await this.
|
|
3242
|
+
return await this.initFaceVerify(request, runtime);
|
|
3273
3243
|
}
|
|
3274
|
-
async
|
|
3244
|
+
async livenessFaceVerify(request, runtime) {
|
|
3275
3245
|
tea_util_1.default.validateModel(request);
|
|
3276
|
-
return $tea.cast(await this.doRequest("
|
|
3246
|
+
return $tea.cast(await this.doRequest("LivenessFaceVerify", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new LivenessFaceVerifyResponse({}));
|
|
3277
3247
|
}
|
|
3278
|
-
async
|
|
3248
|
+
async livenessFaceVerifySimply(request) {
|
|
3279
3249
|
let runtime = new $Util.RuntimeOptions({});
|
|
3280
|
-
return await this.
|
|
3250
|
+
return await this.livenessFaceVerify(request, runtime);
|
|
3281
3251
|
}
|
|
3282
|
-
async
|
|
3252
|
+
async modifyDeviceInfo(request, runtime) {
|
|
3283
3253
|
tea_util_1.default.validateModel(request);
|
|
3284
|
-
return $tea.cast(await this.doRequest("
|
|
3254
|
+
return $tea.cast(await this.doRequest("ModifyDeviceInfo", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new ModifyDeviceInfoResponse({}));
|
|
3285
3255
|
}
|
|
3286
|
-
async
|
|
3256
|
+
async modifyDeviceInfoSimply(request) {
|
|
3287
3257
|
let runtime = new $Util.RuntimeOptions({});
|
|
3288
|
-
return await this.
|
|
3258
|
+
return await this.modifyDeviceInfo(request, runtime);
|
|
3289
3259
|
}
|
|
3290
|
-
async
|
|
3260
|
+
async updateAppPackage(request, runtime) {
|
|
3291
3261
|
tea_util_1.default.validateModel(request);
|
|
3292
|
-
return $tea.cast(await this.doRequest("
|
|
3262
|
+
return $tea.cast(await this.doRequest("UpdateAppPackage", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new UpdateAppPackageResponse({}));
|
|
3293
3263
|
}
|
|
3294
|
-
async
|
|
3264
|
+
async updateAppPackageSimply(request) {
|
|
3295
3265
|
let runtime = new $Util.RuntimeOptions({});
|
|
3296
|
-
return await this.
|
|
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
|
+
async verifyMaterial(request, runtime) {
|
|
3293
|
+
tea_util_1.default.validateModel(request);
|
|
3294
|
+
return $tea.cast(await this.doRequest("VerifyMaterial", "HTTPS", "POST", "2019-03-07", "AK", null, $tea.toMap(request), runtime), new VerifyMaterialResponse({}));
|
|
3295
|
+
}
|
|
3296
|
+
async verifyMaterialSimply(request) {
|
|
3297
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
3298
|
+
return await this.verifyMaterial(request, runtime);
|
|
3297
3299
|
}
|
|
3298
3300
|
getEndpoint(productId, regionId, endpointRule, network, suffix, endpointMap, endpoint) {
|
|
3299
3301
|
if (!tea_util_1.default.empty(endpoint)) {
|