@alicloud/cloudauth20190307 2.6.0 → 2.6.2
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 +1689 -164
- package/dist/client.js +171 -162
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +1722 -184
package/dist/client.d.ts
CHANGED
|
@@ -1,18 +1,44 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
1
|
/**
|
|
3
|
-
*
|
|
4
2
|
*/
|
|
5
3
|
import * as $Util from '@alicloud/tea-util';
|
|
6
4
|
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
7
5
|
import { Readable } from 'stream';
|
|
8
6
|
import * as $tea from '@alicloud/tea-typescript';
|
|
9
7
|
export declare class AIGCFaceVerifyRequest extends $tea.Model {
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* /9j/4AAQSkZJRgABAQAASxxxxxxx
|
|
11
|
+
*/
|
|
10
12
|
faceContrastPicture?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @example
|
|
15
|
+
* https://cn-shanghai-aliyun-cloudauth-xxxxxx.oss-cn-shanghai.aliyuncs.com/verify/xxxxx/xxxxx.jpeg
|
|
16
|
+
*/
|
|
11
17
|
faceContrastPictureUrl?: string;
|
|
18
|
+
/**
|
|
19
|
+
* @example
|
|
20
|
+
* cn-shanghai-aliyun-cloudauth-xxxxx
|
|
21
|
+
*/
|
|
12
22
|
ossBucketName?: string;
|
|
23
|
+
/**
|
|
24
|
+
* @example
|
|
25
|
+
* verify/xxxxx/xxxxxx.jpeg
|
|
26
|
+
*/
|
|
13
27
|
ossObjectName?: string;
|
|
28
|
+
/**
|
|
29
|
+
* @example
|
|
30
|
+
* e0c34a77f5ac40a5aa5e6ed20c353888
|
|
31
|
+
*/
|
|
14
32
|
outerOrderNo?: string;
|
|
33
|
+
/**
|
|
34
|
+
* @example
|
|
35
|
+
* LR_FR_AIGC
|
|
36
|
+
*/
|
|
15
37
|
productCode?: string;
|
|
38
|
+
/**
|
|
39
|
+
* @example
|
|
40
|
+
* 100000xxxx
|
|
41
|
+
*/
|
|
16
42
|
sceneId?: number;
|
|
17
43
|
static names(): {
|
|
18
44
|
[key: string]: string;
|
|
@@ -25,8 +51,20 @@ export declare class AIGCFaceVerifyRequest extends $tea.Model {
|
|
|
25
51
|
});
|
|
26
52
|
}
|
|
27
53
|
export declare class AIGCFaceVerifyResponseBody extends $tea.Model {
|
|
54
|
+
/**
|
|
55
|
+
* @example
|
|
56
|
+
* 200
|
|
57
|
+
*/
|
|
28
58
|
code?: string;
|
|
59
|
+
/**
|
|
60
|
+
* @example
|
|
61
|
+
* success
|
|
62
|
+
*/
|
|
29
63
|
message?: string;
|
|
64
|
+
/**
|
|
65
|
+
* @example
|
|
66
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
67
|
+
*/
|
|
30
68
|
requestId?: string;
|
|
31
69
|
resultObject?: AIGCFaceVerifyResponseBodyResultObject;
|
|
32
70
|
static names(): {
|
|
@@ -56,12 +94,36 @@ export declare class AIGCFaceVerifyResponse extends $tea.Model {
|
|
|
56
94
|
});
|
|
57
95
|
}
|
|
58
96
|
export declare class BankMetaVerifyRequest extends $tea.Model {
|
|
97
|
+
/**
|
|
98
|
+
* @example
|
|
99
|
+
* 610*************1181
|
|
100
|
+
*/
|
|
59
101
|
bankCard?: string;
|
|
102
|
+
/**
|
|
103
|
+
* @example
|
|
104
|
+
* 429001********8211
|
|
105
|
+
*/
|
|
60
106
|
identifyNum?: string;
|
|
107
|
+
/**
|
|
108
|
+
* @example
|
|
109
|
+
* 138******11
|
|
110
|
+
*/
|
|
61
111
|
mobile?: string;
|
|
112
|
+
/**
|
|
113
|
+
* @example
|
|
114
|
+
* normal
|
|
115
|
+
*/
|
|
62
116
|
paramType?: string;
|
|
117
|
+
/**
|
|
118
|
+
* @example
|
|
119
|
+
* BANK_CARD_2_META
|
|
120
|
+
*/
|
|
63
121
|
productType?: string;
|
|
64
122
|
userName?: string;
|
|
123
|
+
/**
|
|
124
|
+
* @example
|
|
125
|
+
* VERIFY_BANK_CARD
|
|
126
|
+
*/
|
|
65
127
|
verifyMode?: string;
|
|
66
128
|
static names(): {
|
|
67
129
|
[key: string]: string;
|
|
@@ -74,8 +136,20 @@ export declare class BankMetaVerifyRequest extends $tea.Model {
|
|
|
74
136
|
});
|
|
75
137
|
}
|
|
76
138
|
export declare class BankMetaVerifyResponseBody extends $tea.Model {
|
|
139
|
+
/**
|
|
140
|
+
* @example
|
|
141
|
+
* 200
|
|
142
|
+
*/
|
|
77
143
|
code?: string;
|
|
144
|
+
/**
|
|
145
|
+
* @example
|
|
146
|
+
* success
|
|
147
|
+
*/
|
|
78
148
|
message?: string;
|
|
149
|
+
/**
|
|
150
|
+
* @example
|
|
151
|
+
* 473469C7-A***B-A3DC0DE3C83E
|
|
152
|
+
*/
|
|
79
153
|
requestId?: string;
|
|
80
154
|
resultObject?: BankMetaVerifyResponseBodyResultObject;
|
|
81
155
|
static names(): {
|
|
@@ -106,18 +180,70 @@ export declare class BankMetaVerifyResponse extends $tea.Model {
|
|
|
106
180
|
}
|
|
107
181
|
export declare class CompareFaceVerifyRequest extends $tea.Model {
|
|
108
182
|
crop?: string;
|
|
183
|
+
/**
|
|
184
|
+
* @example
|
|
185
|
+
* e0c34a77f5ac40a5aa5e6ed20c353888
|
|
186
|
+
*/
|
|
109
187
|
outerOrderNo?: string;
|
|
188
|
+
/**
|
|
189
|
+
* @example
|
|
190
|
+
* PV_FC
|
|
191
|
+
*/
|
|
110
192
|
productCode?: string;
|
|
193
|
+
/**
|
|
194
|
+
* @example
|
|
195
|
+
* 1000000006
|
|
196
|
+
*/
|
|
111
197
|
sceneId?: number;
|
|
198
|
+
/**
|
|
199
|
+
* @example
|
|
200
|
+
* 0bfa7c493f850e5178b9f8613634c9xx
|
|
201
|
+
*/
|
|
112
202
|
sourceCertifyId?: string;
|
|
203
|
+
/**
|
|
204
|
+
* @example
|
|
205
|
+
* /9j/4AAQSkZJRgABAQAASxxxxxxx
|
|
206
|
+
*/
|
|
113
207
|
sourceFaceContrastPicture?: string;
|
|
208
|
+
/**
|
|
209
|
+
* @example
|
|
210
|
+
* https://cn-shanghai-aliyun-cloudauth-xxxxxx.oss-cn-shanghai.aliyuncs.com/verify/xxxxx/xxxxx.jpeg
|
|
211
|
+
*/
|
|
114
212
|
sourceFaceContrastPictureUrl?: string;
|
|
213
|
+
/**
|
|
214
|
+
* @example
|
|
215
|
+
* cn-shanghai-aliyun-cloudauth-xxxxx
|
|
216
|
+
*/
|
|
115
217
|
sourceOssBucketName?: string;
|
|
218
|
+
/**
|
|
219
|
+
* @example
|
|
220
|
+
* verify/xxxxx/xxxxxx.jpeg
|
|
221
|
+
*/
|
|
116
222
|
sourceOssObjectName?: string;
|
|
223
|
+
/**
|
|
224
|
+
* @example
|
|
225
|
+
* 0bfa7c493f850e5178b9f8613634c9xx
|
|
226
|
+
*/
|
|
117
227
|
targetCertifyId?: string;
|
|
228
|
+
/**
|
|
229
|
+
* @example
|
|
230
|
+
* /9j/4AAQSkZJRgABAQAASxxxxxxx
|
|
231
|
+
*/
|
|
118
232
|
targetFaceContrastPicture?: string;
|
|
233
|
+
/**
|
|
234
|
+
* @example
|
|
235
|
+
* https://cn-shanghai-aliyun-cloudauth-xxxxxx.oss-cn-shanghai.aliyuncs.com/verify/xxxxx/xxxxx.jpeg
|
|
236
|
+
*/
|
|
119
237
|
targetFaceContrastPictureUrl?: string;
|
|
238
|
+
/**
|
|
239
|
+
* @example
|
|
240
|
+
* cn-shanghai-aliyun-cloudauth-xxxxx
|
|
241
|
+
*/
|
|
120
242
|
targetOssBucketName?: string;
|
|
243
|
+
/**
|
|
244
|
+
* @example
|
|
245
|
+
* verify/xxxxx/xxxxxx.jpeg
|
|
246
|
+
*/
|
|
121
247
|
targetOssObjectName?: string;
|
|
122
248
|
static names(): {
|
|
123
249
|
[key: string]: string;
|
|
@@ -130,8 +256,20 @@ export declare class CompareFaceVerifyRequest extends $tea.Model {
|
|
|
130
256
|
});
|
|
131
257
|
}
|
|
132
258
|
export declare class CompareFaceVerifyResponseBody extends $tea.Model {
|
|
259
|
+
/**
|
|
260
|
+
* @example
|
|
261
|
+
* 200
|
|
262
|
+
*/
|
|
133
263
|
code?: string;
|
|
264
|
+
/**
|
|
265
|
+
* @example
|
|
266
|
+
* success
|
|
267
|
+
*/
|
|
134
268
|
message?: string;
|
|
269
|
+
/**
|
|
270
|
+
* @example
|
|
271
|
+
* 130A2C10-B9EE-4D84-88E3-5384FF039795
|
|
272
|
+
*/
|
|
135
273
|
requestId?: string;
|
|
136
274
|
resultObject?: CompareFaceVerifyResponseBodyResultObject;
|
|
137
275
|
static names(): {
|
|
@@ -161,9 +299,25 @@ export declare class CompareFaceVerifyResponse extends $tea.Model {
|
|
|
161
299
|
});
|
|
162
300
|
}
|
|
163
301
|
export declare class CompareFacesRequest extends $tea.Model {
|
|
302
|
+
/**
|
|
303
|
+
* @example
|
|
304
|
+
* FacePic
|
|
305
|
+
*/
|
|
164
306
|
sourceImageType?: string;
|
|
307
|
+
/**
|
|
308
|
+
* @example
|
|
309
|
+
* http%3A%2F%2Fjiangsu.china.com.cn%2Fuploadfile%2F2015%2F0114%2F1421221304095989.jpg
|
|
310
|
+
*/
|
|
165
311
|
sourceImageValue?: string;
|
|
312
|
+
/**
|
|
313
|
+
* @example
|
|
314
|
+
* FacePic
|
|
315
|
+
*/
|
|
166
316
|
targetImageType?: string;
|
|
317
|
+
/**
|
|
318
|
+
* @example
|
|
319
|
+
* http%3A%2F%2Fjiangsu.china.com.cn%2Fuploadfile%2F2015%2F0114%2F1421221304095989.jpg
|
|
320
|
+
*/
|
|
167
321
|
targetImageValue?: string;
|
|
168
322
|
static names(): {
|
|
169
323
|
[key: string]: string;
|
|
@@ -176,10 +330,26 @@ export declare class CompareFacesRequest extends $tea.Model {
|
|
|
176
330
|
});
|
|
177
331
|
}
|
|
178
332
|
export declare class CompareFacesResponseBody extends $tea.Model {
|
|
333
|
+
/**
|
|
334
|
+
* @example
|
|
335
|
+
* 200
|
|
336
|
+
*/
|
|
179
337
|
code?: string;
|
|
180
338
|
data?: CompareFacesResponseBodyData;
|
|
339
|
+
/**
|
|
340
|
+
* @example
|
|
341
|
+
* Error.InternalError
|
|
342
|
+
*/
|
|
181
343
|
message?: string;
|
|
344
|
+
/**
|
|
345
|
+
* @example
|
|
346
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
347
|
+
*/
|
|
182
348
|
requestId?: string;
|
|
349
|
+
/**
|
|
350
|
+
* @example
|
|
351
|
+
* true
|
|
352
|
+
*/
|
|
183
353
|
success?: boolean;
|
|
184
354
|
static names(): {
|
|
185
355
|
[key: string]: string;
|
|
@@ -209,23 +379,79 @@ export declare class CompareFacesResponse extends $tea.Model {
|
|
|
209
379
|
}
|
|
210
380
|
export declare class ContrastFaceVerifyRequest extends $tea.Model {
|
|
211
381
|
certName?: string;
|
|
382
|
+
/**
|
|
383
|
+
* @example
|
|
384
|
+
* 330103xxxxxxxxxxxx
|
|
385
|
+
*/
|
|
212
386
|
certNo?: string;
|
|
387
|
+
/**
|
|
388
|
+
* @example
|
|
389
|
+
* IDENTITY_CARD
|
|
390
|
+
*/
|
|
213
391
|
certType?: string;
|
|
392
|
+
/**
|
|
393
|
+
* @example
|
|
394
|
+
* 0bfa7c493f850e5178b9f8613634c9xx
|
|
395
|
+
*/
|
|
214
396
|
certifyId?: string;
|
|
215
397
|
crop?: string;
|
|
398
|
+
/**
|
|
399
|
+
* @example
|
|
400
|
+
* McozS1ZWRcRZStlERcZZo_QOytx5jcgZoZJEoRLOxxxxxxx
|
|
401
|
+
*/
|
|
216
402
|
deviceToken?: string;
|
|
217
403
|
encryptType?: string;
|
|
218
404
|
faceContrastFile?: string;
|
|
405
|
+
/**
|
|
406
|
+
* @example
|
|
407
|
+
* /9j/4AAQSkZJRgABAQAASxxxxxxx
|
|
408
|
+
*/
|
|
219
409
|
faceContrastPicture?: string;
|
|
410
|
+
/**
|
|
411
|
+
* @example
|
|
412
|
+
* https://cn-shanghai-aliyun-cloudauth-xxxxxx.oss-cn-shanghai.aliyuncs.com/verify/xxxxx/xxxxx.jpeg
|
|
413
|
+
*/
|
|
220
414
|
faceContrastPictureUrl?: string;
|
|
415
|
+
/**
|
|
416
|
+
* @example
|
|
417
|
+
* 114.xxx.xxx.xxx
|
|
418
|
+
*/
|
|
221
419
|
ip?: string;
|
|
420
|
+
/**
|
|
421
|
+
* @example
|
|
422
|
+
* 130xxxxxxxx
|
|
423
|
+
*/
|
|
222
424
|
mobile?: string;
|
|
223
425
|
model?: string;
|
|
426
|
+
/**
|
|
427
|
+
* @example
|
|
428
|
+
* cn-shanghai-aliyun-cloudauth-xxxxx
|
|
429
|
+
*/
|
|
224
430
|
ossBucketName?: string;
|
|
431
|
+
/**
|
|
432
|
+
* @example
|
|
433
|
+
* verify/xxxxx/xxxxxx.jpeg
|
|
434
|
+
*/
|
|
225
435
|
ossObjectName?: string;
|
|
436
|
+
/**
|
|
437
|
+
* @example
|
|
438
|
+
* e0c34a77f5ac40a5aa5e6ed20c353888
|
|
439
|
+
*/
|
|
226
440
|
outerOrderNo?: string;
|
|
441
|
+
/**
|
|
442
|
+
* @example
|
|
443
|
+
* ID_MIN
|
|
444
|
+
*/
|
|
227
445
|
productCode?: string;
|
|
446
|
+
/**
|
|
447
|
+
* @example
|
|
448
|
+
* 1000000006
|
|
449
|
+
*/
|
|
228
450
|
sceneId?: number;
|
|
451
|
+
/**
|
|
452
|
+
* @example
|
|
453
|
+
* 123456789
|
|
454
|
+
*/
|
|
229
455
|
userId?: string;
|
|
230
456
|
static names(): {
|
|
231
457
|
[key: string]: string;
|
|
@@ -239,23 +465,79 @@ export declare class ContrastFaceVerifyRequest extends $tea.Model {
|
|
|
239
465
|
}
|
|
240
466
|
export declare class ContrastFaceVerifyAdvanceRequest extends $tea.Model {
|
|
241
467
|
certName?: string;
|
|
468
|
+
/**
|
|
469
|
+
* @example
|
|
470
|
+
* 330103xxxxxxxxxxxx
|
|
471
|
+
*/
|
|
242
472
|
certNo?: string;
|
|
473
|
+
/**
|
|
474
|
+
* @example
|
|
475
|
+
* IDENTITY_CARD
|
|
476
|
+
*/
|
|
243
477
|
certType?: string;
|
|
478
|
+
/**
|
|
479
|
+
* @example
|
|
480
|
+
* 0bfa7c493f850e5178b9f8613634c9xx
|
|
481
|
+
*/
|
|
244
482
|
certifyId?: string;
|
|
245
483
|
crop?: string;
|
|
484
|
+
/**
|
|
485
|
+
* @example
|
|
486
|
+
* McozS1ZWRcRZStlERcZZo_QOytx5jcgZoZJEoRLOxxxxxxx
|
|
487
|
+
*/
|
|
246
488
|
deviceToken?: string;
|
|
247
489
|
encryptType?: string;
|
|
248
490
|
faceContrastFileObject?: Readable;
|
|
491
|
+
/**
|
|
492
|
+
* @example
|
|
493
|
+
* /9j/4AAQSkZJRgABAQAASxxxxxxx
|
|
494
|
+
*/
|
|
249
495
|
faceContrastPicture?: string;
|
|
496
|
+
/**
|
|
497
|
+
* @example
|
|
498
|
+
* https://cn-shanghai-aliyun-cloudauth-xxxxxx.oss-cn-shanghai.aliyuncs.com/verify/xxxxx/xxxxx.jpeg
|
|
499
|
+
*/
|
|
250
500
|
faceContrastPictureUrl?: string;
|
|
501
|
+
/**
|
|
502
|
+
* @example
|
|
503
|
+
* 114.xxx.xxx.xxx
|
|
504
|
+
*/
|
|
251
505
|
ip?: string;
|
|
506
|
+
/**
|
|
507
|
+
* @example
|
|
508
|
+
* 130xxxxxxxx
|
|
509
|
+
*/
|
|
252
510
|
mobile?: string;
|
|
253
511
|
model?: string;
|
|
512
|
+
/**
|
|
513
|
+
* @example
|
|
514
|
+
* cn-shanghai-aliyun-cloudauth-xxxxx
|
|
515
|
+
*/
|
|
254
516
|
ossBucketName?: string;
|
|
517
|
+
/**
|
|
518
|
+
* @example
|
|
519
|
+
* verify/xxxxx/xxxxxx.jpeg
|
|
520
|
+
*/
|
|
255
521
|
ossObjectName?: string;
|
|
522
|
+
/**
|
|
523
|
+
* @example
|
|
524
|
+
* e0c34a77f5ac40a5aa5e6ed20c353888
|
|
525
|
+
*/
|
|
256
526
|
outerOrderNo?: string;
|
|
527
|
+
/**
|
|
528
|
+
* @example
|
|
529
|
+
* ID_MIN
|
|
530
|
+
*/
|
|
257
531
|
productCode?: string;
|
|
532
|
+
/**
|
|
533
|
+
* @example
|
|
534
|
+
* 1000000006
|
|
535
|
+
*/
|
|
258
536
|
sceneId?: number;
|
|
537
|
+
/**
|
|
538
|
+
* @example
|
|
539
|
+
* 123456789
|
|
540
|
+
*/
|
|
259
541
|
userId?: string;
|
|
260
542
|
static names(): {
|
|
261
543
|
[key: string]: string;
|
|
@@ -268,8 +550,20 @@ export declare class ContrastFaceVerifyAdvanceRequest extends $tea.Model {
|
|
|
268
550
|
});
|
|
269
551
|
}
|
|
270
552
|
export declare class ContrastFaceVerifyResponseBody extends $tea.Model {
|
|
553
|
+
/**
|
|
554
|
+
* @example
|
|
555
|
+
* 200
|
|
556
|
+
*/
|
|
271
557
|
code?: string;
|
|
558
|
+
/**
|
|
559
|
+
* @example
|
|
560
|
+
* success
|
|
561
|
+
*/
|
|
272
562
|
message?: string;
|
|
563
|
+
/**
|
|
564
|
+
* @example
|
|
565
|
+
* 130A2C10-B9EE-4D84-88E3-5384FF039795
|
|
566
|
+
*/
|
|
273
567
|
requestId?: string;
|
|
274
568
|
resultObject?: ContrastFaceVerifyResponseBodyResultObject;
|
|
275
569
|
static names(): {
|
|
@@ -299,9 +593,25 @@ export declare class ContrastFaceVerifyResponse extends $tea.Model {
|
|
|
299
593
|
});
|
|
300
594
|
}
|
|
301
595
|
export declare class CreateAuthKeyRequest extends $tea.Model {
|
|
596
|
+
/**
|
|
597
|
+
* @example
|
|
598
|
+
* 1
|
|
599
|
+
*/
|
|
302
600
|
authYears?: number;
|
|
601
|
+
/**
|
|
602
|
+
* @example
|
|
603
|
+
* FACE_TEST
|
|
604
|
+
*/
|
|
303
605
|
bizType?: string;
|
|
606
|
+
/**
|
|
607
|
+
* @example
|
|
608
|
+
* false
|
|
609
|
+
*/
|
|
304
610
|
test?: boolean;
|
|
611
|
+
/**
|
|
612
|
+
* @example
|
|
613
|
+
* 3iJ1AY$oHcu7mC69
|
|
614
|
+
*/
|
|
305
615
|
userDeviceId?: string;
|
|
306
616
|
static names(): {
|
|
307
617
|
[key: string]: string;
|
|
@@ -314,7 +624,15 @@ export declare class CreateAuthKeyRequest extends $tea.Model {
|
|
|
314
624
|
});
|
|
315
625
|
}
|
|
316
626
|
export declare class CreateAuthKeyResponseBody extends $tea.Model {
|
|
627
|
+
/**
|
|
628
|
+
* @example
|
|
629
|
+
* auth.1KQMcnLd4m37LN2D0F0WCD-1qtQI$
|
|
630
|
+
*/
|
|
317
631
|
authKey?: string;
|
|
632
|
+
/**
|
|
633
|
+
* @example
|
|
634
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
635
|
+
*/
|
|
318
636
|
requestId?: string;
|
|
319
637
|
static names(): {
|
|
320
638
|
[key: string]: string;
|
|
@@ -343,11 +661,41 @@ export declare class CreateAuthKeyResponse extends $tea.Model {
|
|
|
343
661
|
});
|
|
344
662
|
}
|
|
345
663
|
export declare class CreateVerifySettingRequest extends $tea.Model {
|
|
664
|
+
/**
|
|
665
|
+
* @remarks
|
|
666
|
+
* This parameter is required.
|
|
667
|
+
*/
|
|
346
668
|
bizName?: string;
|
|
669
|
+
/**
|
|
670
|
+
* @remarks
|
|
671
|
+
* This parameter is required.
|
|
672
|
+
*
|
|
673
|
+
* @example
|
|
674
|
+
* UserRegister
|
|
675
|
+
*/
|
|
347
676
|
bizType?: string;
|
|
677
|
+
/**
|
|
678
|
+
* @example
|
|
679
|
+
* false
|
|
680
|
+
*/
|
|
348
681
|
guideStep?: boolean;
|
|
682
|
+
/**
|
|
683
|
+
* @example
|
|
684
|
+
* true
|
|
685
|
+
*/
|
|
349
686
|
privacyStep?: boolean;
|
|
687
|
+
/**
|
|
688
|
+
* @example
|
|
689
|
+
* false
|
|
690
|
+
*/
|
|
350
691
|
resultStep?: boolean;
|
|
692
|
+
/**
|
|
693
|
+
* @remarks
|
|
694
|
+
* This parameter is required.
|
|
695
|
+
*
|
|
696
|
+
* @example
|
|
697
|
+
* RPBasic
|
|
698
|
+
*/
|
|
351
699
|
solution?: string;
|
|
352
700
|
static names(): {
|
|
353
701
|
[key: string]: string;
|
|
@@ -361,8 +709,20 @@ export declare class CreateVerifySettingRequest extends $tea.Model {
|
|
|
361
709
|
}
|
|
362
710
|
export declare class CreateVerifySettingResponseBody extends $tea.Model {
|
|
363
711
|
bizName?: string;
|
|
712
|
+
/**
|
|
713
|
+
* @example
|
|
714
|
+
* UserRegister
|
|
715
|
+
*/
|
|
364
716
|
bizType?: string;
|
|
717
|
+
/**
|
|
718
|
+
* @example
|
|
719
|
+
* D6163397-15C5-419C-9ACC-B7C83E0B4C10
|
|
720
|
+
*/
|
|
365
721
|
requestId?: string;
|
|
722
|
+
/**
|
|
723
|
+
* @example
|
|
724
|
+
* RPBasic
|
|
725
|
+
*/
|
|
366
726
|
solution?: string;
|
|
367
727
|
stepList?: string[];
|
|
368
728
|
static names(): {
|
|
@@ -392,13 +752,45 @@ export declare class CreateVerifySettingResponse extends $tea.Model {
|
|
|
392
752
|
});
|
|
393
753
|
}
|
|
394
754
|
export declare class CredentialVerifyRequest extends $tea.Model {
|
|
755
|
+
/**
|
|
756
|
+
* @example
|
|
757
|
+
* 4601*****
|
|
758
|
+
*/
|
|
395
759
|
certNum?: string;
|
|
760
|
+
/**
|
|
761
|
+
* @example
|
|
762
|
+
* 0104
|
|
763
|
+
*/
|
|
396
764
|
credName?: string;
|
|
765
|
+
/**
|
|
766
|
+
* @example
|
|
767
|
+
* 01
|
|
768
|
+
*/
|
|
397
769
|
credType?: string;
|
|
770
|
+
/**
|
|
771
|
+
* @example
|
|
772
|
+
* 429001********8211
|
|
773
|
+
*/
|
|
398
774
|
identifyNum?: string;
|
|
775
|
+
/**
|
|
776
|
+
* @example
|
|
777
|
+
* base64
|
|
778
|
+
*/
|
|
399
779
|
imageContext?: string;
|
|
780
|
+
/**
|
|
781
|
+
* @example
|
|
782
|
+
* http://marry.momocdn.com/avatar/3B/B6/3BB6527E-7467-926E-1048-B43614F20CC420230803_L.jpg
|
|
783
|
+
*/
|
|
400
784
|
imageUrl?: string;
|
|
785
|
+
/**
|
|
786
|
+
* @example
|
|
787
|
+
* 0
|
|
788
|
+
*/
|
|
401
789
|
isCheck?: string;
|
|
790
|
+
/**
|
|
791
|
+
* @example
|
|
792
|
+
* 1
|
|
793
|
+
*/
|
|
402
794
|
isOCR?: string;
|
|
403
795
|
merchantId?: string;
|
|
404
796
|
userName?: string;
|
|
@@ -413,8 +805,20 @@ export declare class CredentialVerifyRequest extends $tea.Model {
|
|
|
413
805
|
});
|
|
414
806
|
}
|
|
415
807
|
export declare class CredentialVerifyResponseBody extends $tea.Model {
|
|
808
|
+
/**
|
|
809
|
+
* @example
|
|
810
|
+
* 200
|
|
811
|
+
*/
|
|
416
812
|
code?: string;
|
|
813
|
+
/**
|
|
814
|
+
* @example
|
|
815
|
+
* success
|
|
816
|
+
*/
|
|
417
817
|
message?: string;
|
|
818
|
+
/**
|
|
819
|
+
* @example
|
|
820
|
+
* D6163397-15C5-419C-9ACC-B7C83E0B4C10
|
|
821
|
+
*/
|
|
418
822
|
requestId?: string;
|
|
419
823
|
resultObject?: CredentialVerifyResponseBodyResultObject;
|
|
420
824
|
static names(): {
|
|
@@ -444,9 +848,25 @@ export declare class CredentialVerifyResponse extends $tea.Model {
|
|
|
444
848
|
});
|
|
445
849
|
}
|
|
446
850
|
export declare class DeepfakeDetectRequest extends $tea.Model {
|
|
851
|
+
/**
|
|
852
|
+
* @example
|
|
853
|
+
* /9j/4AAQSkZJRgABAQAASxxxxxxx
|
|
854
|
+
*/
|
|
447
855
|
faceBase64?: string;
|
|
856
|
+
/**
|
|
857
|
+
* @example
|
|
858
|
+
* IMAGE
|
|
859
|
+
*/
|
|
448
860
|
faceInputType?: string;
|
|
861
|
+
/**
|
|
862
|
+
* @example
|
|
863
|
+
* https://cn-shanghai-aliyun-cloudauth-xxxxxx.oss-cn-shanghai.aliyuncs.com/verify/xxxxx/xxxxx.jpeg
|
|
864
|
+
*/
|
|
449
865
|
faceUrl?: string;
|
|
866
|
+
/**
|
|
867
|
+
* @example
|
|
868
|
+
* e0c34a77f5ac40a5aa5e6ed20c******
|
|
869
|
+
*/
|
|
450
870
|
outerOrderNo?: string;
|
|
451
871
|
static names(): {
|
|
452
872
|
[key: string]: string;
|
|
@@ -459,8 +879,23 @@ export declare class DeepfakeDetectRequest extends $tea.Model {
|
|
|
459
879
|
});
|
|
460
880
|
}
|
|
461
881
|
export declare class DeepfakeDetectResponseBody extends $tea.Model {
|
|
882
|
+
/**
|
|
883
|
+
* @example
|
|
884
|
+
* 200
|
|
885
|
+
*/
|
|
462
886
|
code?: string;
|
|
887
|
+
/**
|
|
888
|
+
* @example
|
|
889
|
+
* success
|
|
890
|
+
*/
|
|
463
891
|
message?: string;
|
|
892
|
+
/**
|
|
893
|
+
* @remarks
|
|
894
|
+
* Id of the request
|
|
895
|
+
*
|
|
896
|
+
* @example
|
|
897
|
+
* 8FC3D6AC-9FED-4311-8DA7-C4BF47D9F260
|
|
898
|
+
*/
|
|
464
899
|
requestId?: string;
|
|
465
900
|
resultObject?: DeepfakeDetectResponseBodyResultObject;
|
|
466
901
|
static names(): {
|
|
@@ -490,12 +925,40 @@ export declare class DeepfakeDetectResponse extends $tea.Model {
|
|
|
490
925
|
});
|
|
491
926
|
}
|
|
492
927
|
export declare class DescribeDeviceInfoRequest extends $tea.Model {
|
|
928
|
+
/**
|
|
929
|
+
* @example
|
|
930
|
+
* FACE_TEST
|
|
931
|
+
*/
|
|
493
932
|
bizType?: string;
|
|
933
|
+
/**
|
|
934
|
+
* @example
|
|
935
|
+
* 1
|
|
936
|
+
*/
|
|
494
937
|
currentPage?: number;
|
|
938
|
+
/**
|
|
939
|
+
* @example
|
|
940
|
+
* wd.6ziUffspAeW5FVYbaqmexR-1qwNjM
|
|
941
|
+
*/
|
|
495
942
|
deviceId?: string;
|
|
943
|
+
/**
|
|
944
|
+
* @example
|
|
945
|
+
* 20200330
|
|
946
|
+
*/
|
|
496
947
|
expiredEndDay?: string;
|
|
948
|
+
/**
|
|
949
|
+
* @example
|
|
950
|
+
* 20190401
|
|
951
|
+
*/
|
|
497
952
|
expiredStartDay?: string;
|
|
953
|
+
/**
|
|
954
|
+
* @example
|
|
955
|
+
* 20
|
|
956
|
+
*/
|
|
498
957
|
pageSize?: number;
|
|
958
|
+
/**
|
|
959
|
+
* @example
|
|
960
|
+
* 3iJ1AY$oHcu7mC69
|
|
961
|
+
*/
|
|
499
962
|
userDeviceId?: string;
|
|
500
963
|
static names(): {
|
|
501
964
|
[key: string]: string;
|
|
@@ -508,10 +971,26 @@ export declare class DescribeDeviceInfoRequest extends $tea.Model {
|
|
|
508
971
|
});
|
|
509
972
|
}
|
|
510
973
|
export declare class DescribeDeviceInfoResponseBody extends $tea.Model {
|
|
974
|
+
/**
|
|
975
|
+
* @example
|
|
976
|
+
* 1
|
|
977
|
+
*/
|
|
511
978
|
currentPage?: number;
|
|
512
979
|
deviceInfoList?: DescribeDeviceInfoResponseBodyDeviceInfoList;
|
|
980
|
+
/**
|
|
981
|
+
* @example
|
|
982
|
+
* 20
|
|
983
|
+
*/
|
|
513
984
|
pageSize?: number;
|
|
985
|
+
/**
|
|
986
|
+
* @example
|
|
987
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
988
|
+
*/
|
|
514
989
|
requestId?: string;
|
|
990
|
+
/**
|
|
991
|
+
* @example
|
|
992
|
+
* 1
|
|
993
|
+
*/
|
|
515
994
|
totalCount?: number;
|
|
516
995
|
static names(): {
|
|
517
996
|
[key: string]: string;
|
|
@@ -540,8 +1019,20 @@ export declare class DescribeDeviceInfoResponse extends $tea.Model {
|
|
|
540
1019
|
});
|
|
541
1020
|
}
|
|
542
1021
|
export declare class DescribeFaceVerifyRequest extends $tea.Model {
|
|
1022
|
+
/**
|
|
1023
|
+
* @example
|
|
1024
|
+
* 91707dc296d469ad38e4c5efa6a0f24b
|
|
1025
|
+
*/
|
|
543
1026
|
certifyId?: string;
|
|
1027
|
+
/**
|
|
1028
|
+
* @example
|
|
1029
|
+
* JPG
|
|
1030
|
+
*/
|
|
544
1031
|
pictureReturnType?: string;
|
|
1032
|
+
/**
|
|
1033
|
+
* @example
|
|
1034
|
+
* 1000000006
|
|
1035
|
+
*/
|
|
545
1036
|
sceneId?: number;
|
|
546
1037
|
static names(): {
|
|
547
1038
|
[key: string]: string;
|
|
@@ -554,8 +1045,20 @@ export declare class DescribeFaceVerifyRequest extends $tea.Model {
|
|
|
554
1045
|
});
|
|
555
1046
|
}
|
|
556
1047
|
export declare class DescribeFaceVerifyResponseBody extends $tea.Model {
|
|
1048
|
+
/**
|
|
1049
|
+
* @example
|
|
1050
|
+
* 200
|
|
1051
|
+
*/
|
|
557
1052
|
code?: string;
|
|
1053
|
+
/**
|
|
1054
|
+
* @example
|
|
1055
|
+
* success
|
|
1056
|
+
*/
|
|
558
1057
|
message?: string;
|
|
1058
|
+
/**
|
|
1059
|
+
* @example
|
|
1060
|
+
* 130A2C10-B9EE-4D84-88E3-5384FF039795
|
|
1061
|
+
*/
|
|
559
1062
|
requestId?: string;
|
|
560
1063
|
resultObject?: DescribeFaceVerifyResponseBodyResultObject;
|
|
561
1064
|
static names(): {
|
|
@@ -586,6 +1089,10 @@ export declare class DescribeFaceVerifyResponse extends $tea.Model {
|
|
|
586
1089
|
}
|
|
587
1090
|
export declare class DescribeOssUploadTokenResponseBody extends $tea.Model {
|
|
588
1091
|
ossUploadToken?: DescribeOssUploadTokenResponseBodyOssUploadToken;
|
|
1092
|
+
/**
|
|
1093
|
+
* @example
|
|
1094
|
+
* 2FA2C773-47DB-4156-B1EE-5B047321A939
|
|
1095
|
+
*/
|
|
589
1096
|
requestId?: string;
|
|
590
1097
|
static names(): {
|
|
591
1098
|
[key: string]: string;
|
|
@@ -614,11 +1121,35 @@ export declare class DescribeOssUploadTokenResponse extends $tea.Model {
|
|
|
614
1121
|
});
|
|
615
1122
|
}
|
|
616
1123
|
export declare class DescribePageFaceVerifyDataRequest extends $tea.Model {
|
|
1124
|
+
/**
|
|
1125
|
+
* @example
|
|
1126
|
+
* 1
|
|
1127
|
+
*/
|
|
617
1128
|
currentPage?: number;
|
|
618
|
-
|
|
1129
|
+
/**
|
|
1130
|
+
* @example
|
|
1131
|
+
* 2023-04-30
|
|
1132
|
+
*/
|
|
1133
|
+
endDate?: string;
|
|
1134
|
+
/**
|
|
1135
|
+
* @example
|
|
1136
|
+
* 10
|
|
1137
|
+
*/
|
|
619
1138
|
pageSize?: number;
|
|
1139
|
+
/**
|
|
1140
|
+
* @example
|
|
1141
|
+
* ID_PLUS
|
|
1142
|
+
*/
|
|
620
1143
|
productCode?: string;
|
|
1144
|
+
/**
|
|
1145
|
+
* @example
|
|
1146
|
+
* 36**01
|
|
1147
|
+
*/
|
|
621
1148
|
sceneId?: number;
|
|
1149
|
+
/**
|
|
1150
|
+
* @example
|
|
1151
|
+
* 2023-04-10
|
|
1152
|
+
*/
|
|
622
1153
|
startDate?: string;
|
|
623
1154
|
static names(): {
|
|
624
1155
|
[key: string]: string;
|
|
@@ -631,14 +1162,46 @@ export declare class DescribePageFaceVerifyDataRequest extends $tea.Model {
|
|
|
631
1162
|
});
|
|
632
1163
|
}
|
|
633
1164
|
export declare class DescribePageFaceVerifyDataResponseBody extends $tea.Model {
|
|
1165
|
+
/**
|
|
1166
|
+
* @example
|
|
1167
|
+
* 200
|
|
1168
|
+
*/
|
|
634
1169
|
code?: string;
|
|
1170
|
+
/**
|
|
1171
|
+
* @example
|
|
1172
|
+
* 1
|
|
1173
|
+
*/
|
|
635
1174
|
currentPage?: string;
|
|
636
1175
|
items?: DescribePageFaceVerifyDataResponseBodyItems[];
|
|
1176
|
+
/**
|
|
1177
|
+
* @example
|
|
1178
|
+
* OK
|
|
1179
|
+
*/
|
|
637
1180
|
message?: string;
|
|
1181
|
+
/**
|
|
1182
|
+
* @example
|
|
1183
|
+
* 10
|
|
1184
|
+
*/
|
|
638
1185
|
pageSize?: string;
|
|
1186
|
+
/**
|
|
1187
|
+
* @example
|
|
1188
|
+
* 473469C7-A***B-A3DC0DE3C83E
|
|
1189
|
+
*/
|
|
639
1190
|
requestId?: string;
|
|
1191
|
+
/**
|
|
1192
|
+
* @example
|
|
1193
|
+
* true
|
|
1194
|
+
*/
|
|
640
1195
|
success?: string;
|
|
1196
|
+
/**
|
|
1197
|
+
* @example
|
|
1198
|
+
* 100
|
|
1199
|
+
*/
|
|
641
1200
|
totalCount?: string;
|
|
1201
|
+
/**
|
|
1202
|
+
* @example
|
|
1203
|
+
* 5
|
|
1204
|
+
*/
|
|
642
1205
|
totalPage?: string;
|
|
643
1206
|
static names(): {
|
|
644
1207
|
[key: string]: string;
|
|
@@ -667,11 +1230,50 @@ export declare class DescribePageFaceVerifyDataResponse extends $tea.Model {
|
|
|
667
1230
|
});
|
|
668
1231
|
}
|
|
669
1232
|
export declare class DescribeSmartStatisticsPageListRequest extends $tea.Model {
|
|
1233
|
+
/**
|
|
1234
|
+
* @remarks
|
|
1235
|
+
* This parameter is required.
|
|
1236
|
+
*
|
|
1237
|
+
* @example
|
|
1238
|
+
* 1
|
|
1239
|
+
*/
|
|
670
1240
|
currentPage?: string;
|
|
1241
|
+
/**
|
|
1242
|
+
* @remarks
|
|
1243
|
+
* This parameter is required.
|
|
1244
|
+
*
|
|
1245
|
+
* @example
|
|
1246
|
+
* 2022-11-16 23:59:59 +0800
|
|
1247
|
+
*/
|
|
671
1248
|
endDate?: string;
|
|
1249
|
+
/**
|
|
1250
|
+
* @remarks
|
|
1251
|
+
* This parameter is required.
|
|
1252
|
+
*
|
|
1253
|
+
* @example
|
|
1254
|
+
* 10
|
|
1255
|
+
*/
|
|
672
1256
|
pageSize?: string;
|
|
1257
|
+
/**
|
|
1258
|
+
* @remarks
|
|
1259
|
+
* This parameter is required.
|
|
1260
|
+
*
|
|
1261
|
+
* @example
|
|
1262
|
+
* 36**01
|
|
1263
|
+
*/
|
|
673
1264
|
sceneId?: string;
|
|
1265
|
+
/**
|
|
1266
|
+
* @example
|
|
1267
|
+
* cloudauthst
|
|
1268
|
+
*/
|
|
674
1269
|
serviceCode?: string;
|
|
1270
|
+
/**
|
|
1271
|
+
* @remarks
|
|
1272
|
+
* This parameter is required.
|
|
1273
|
+
*
|
|
1274
|
+
* @example
|
|
1275
|
+
* 2023-11-01 00:00:00 +0800
|
|
1276
|
+
*/
|
|
675
1277
|
startDate?: string;
|
|
676
1278
|
static names(): {
|
|
677
1279
|
[key: string]: string;
|
|
@@ -684,11 +1286,31 @@ export declare class DescribeSmartStatisticsPageListRequest extends $tea.Model {
|
|
|
684
1286
|
});
|
|
685
1287
|
}
|
|
686
1288
|
export declare class DescribeSmartStatisticsPageListResponseBody extends $tea.Model {
|
|
1289
|
+
/**
|
|
1290
|
+
* @example
|
|
1291
|
+
* 1
|
|
1292
|
+
*/
|
|
687
1293
|
currentPage?: number;
|
|
688
1294
|
items?: DescribeSmartStatisticsPageListResponseBodyItems[];
|
|
1295
|
+
/**
|
|
1296
|
+
* @example
|
|
1297
|
+
* 10
|
|
1298
|
+
*/
|
|
689
1299
|
pageSize?: number;
|
|
1300
|
+
/**
|
|
1301
|
+
* @example
|
|
1302
|
+
* 96943***4E39F805
|
|
1303
|
+
*/
|
|
690
1304
|
requestId?: string;
|
|
1305
|
+
/**
|
|
1306
|
+
* @example
|
|
1307
|
+
* 29
|
|
1308
|
+
*/
|
|
691
1309
|
totalCount?: number;
|
|
1310
|
+
/**
|
|
1311
|
+
* @example
|
|
1312
|
+
* 3
|
|
1313
|
+
*/
|
|
692
1314
|
totalPage?: number;
|
|
693
1315
|
static names(): {
|
|
694
1316
|
[key: string]: string;
|
|
@@ -717,7 +1339,21 @@ export declare class DescribeSmartStatisticsPageListResponse extends $tea.Model
|
|
|
717
1339
|
});
|
|
718
1340
|
}
|
|
719
1341
|
export declare class DescribeVerifyResultRequest extends $tea.Model {
|
|
1342
|
+
/**
|
|
1343
|
+
* @remarks
|
|
1344
|
+
* This parameter is required.
|
|
1345
|
+
*
|
|
1346
|
+
* @example
|
|
1347
|
+
* 39ecf51e-2f81-4dc5-90ee-ff86125b****
|
|
1348
|
+
*/
|
|
720
1349
|
bizId?: string;
|
|
1350
|
+
/**
|
|
1351
|
+
* @remarks
|
|
1352
|
+
* This parameter is required.
|
|
1353
|
+
*
|
|
1354
|
+
* @example
|
|
1355
|
+
* FVBioOnlyTest
|
|
1356
|
+
*/
|
|
721
1357
|
bizType?: string;
|
|
722
1358
|
static names(): {
|
|
723
1359
|
[key: string]: string;
|
|
@@ -730,11 +1366,31 @@ export declare class DescribeVerifyResultRequest extends $tea.Model {
|
|
|
730
1366
|
});
|
|
731
1367
|
}
|
|
732
1368
|
export declare class DescribeVerifyResultResponseBody extends $tea.Model {
|
|
1369
|
+
/**
|
|
1370
|
+
* @example
|
|
1371
|
+
* 97
|
|
1372
|
+
*/
|
|
733
1373
|
authorityComparisionScore?: number;
|
|
1374
|
+
/**
|
|
1375
|
+
* @example
|
|
1376
|
+
* 97
|
|
1377
|
+
*/
|
|
734
1378
|
faceComparisonScore?: number;
|
|
1379
|
+
/**
|
|
1380
|
+
* @example
|
|
1381
|
+
* 97
|
|
1382
|
+
*/
|
|
735
1383
|
idCardFaceComparisonScore?: number;
|
|
736
1384
|
material?: DescribeVerifyResultResponseBodyMaterial;
|
|
1385
|
+
/**
|
|
1386
|
+
* @example
|
|
1387
|
+
* 04F0F334-1335-436C-A1D7-6C044FE73368
|
|
1388
|
+
*/
|
|
737
1389
|
requestId?: string;
|
|
1390
|
+
/**
|
|
1391
|
+
* @example
|
|
1392
|
+
* 1
|
|
1393
|
+
*/
|
|
738
1394
|
verifyStatus?: number;
|
|
739
1395
|
static names(): {
|
|
740
1396
|
[key: string]: string;
|
|
@@ -763,6 +1419,13 @@ export declare class DescribeVerifyResultResponse extends $tea.Model {
|
|
|
763
1419
|
});
|
|
764
1420
|
}
|
|
765
1421
|
export declare class DescribeVerifySDKRequest extends $tea.Model {
|
|
1422
|
+
/**
|
|
1423
|
+
* @remarks
|
|
1424
|
+
* This parameter is required.
|
|
1425
|
+
*
|
|
1426
|
+
* @example
|
|
1427
|
+
* 1KQMcnLd4m37LN2D0F0WCD
|
|
1428
|
+
*/
|
|
766
1429
|
taskId?: string;
|
|
767
1430
|
static names(): {
|
|
768
1431
|
[key: string]: string;
|
|
@@ -775,7 +1438,15 @@ export declare class DescribeVerifySDKRequest extends $tea.Model {
|
|
|
775
1438
|
});
|
|
776
1439
|
}
|
|
777
1440
|
export declare class DescribeVerifySDKResponseBody extends $tea.Model {
|
|
1441
|
+
/**
|
|
1442
|
+
* @example
|
|
1443
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
1444
|
+
*/
|
|
778
1445
|
requestId?: string;
|
|
1446
|
+
/**
|
|
1447
|
+
* @example
|
|
1448
|
+
* https://www.xxx.com
|
|
1449
|
+
*/
|
|
779
1450
|
sdkUrl?: string;
|
|
780
1451
|
static names(): {
|
|
781
1452
|
[key: string]: string;
|
|
@@ -804,20 +1475,82 @@ export declare class DescribeVerifySDKResponse extends $tea.Model {
|
|
|
804
1475
|
});
|
|
805
1476
|
}
|
|
806
1477
|
export declare class DescribeVerifyTokenRequest extends $tea.Model {
|
|
1478
|
+
/**
|
|
1479
|
+
* @remarks
|
|
1480
|
+
* This parameter is required.
|
|
1481
|
+
*
|
|
1482
|
+
* @example
|
|
1483
|
+
* 39ecf51e-2f81-4dc5-90ee-ff86125be683
|
|
1484
|
+
*/
|
|
807
1485
|
bizId?: string;
|
|
1486
|
+
/**
|
|
1487
|
+
* @remarks
|
|
1488
|
+
* This parameter is required.
|
|
1489
|
+
*
|
|
1490
|
+
* @example
|
|
1491
|
+
* RPBasicTest
|
|
1492
|
+
*/
|
|
808
1493
|
bizType?: string;
|
|
1494
|
+
/**
|
|
1495
|
+
* @example
|
|
1496
|
+
* -
|
|
1497
|
+
*/
|
|
809
1498
|
callbackSeed?: string;
|
|
1499
|
+
/**
|
|
1500
|
+
* @example
|
|
1501
|
+
* -
|
|
1502
|
+
*/
|
|
810
1503
|
callbackUrl?: string;
|
|
1504
|
+
/**
|
|
1505
|
+
* @example
|
|
1506
|
+
* http%3A%2F%2Fjiangsu.china.com.cn%2Fuploadfile%2F2015%2F0114%2F1421221304095989.jpg
|
|
1507
|
+
*/
|
|
811
1508
|
faceRetainedImageUrl?: string;
|
|
1509
|
+
/**
|
|
1510
|
+
* @example
|
|
1511
|
+
* -
|
|
1512
|
+
*/
|
|
812
1513
|
failedRedirectUrl?: string;
|
|
1514
|
+
/**
|
|
1515
|
+
* @example
|
|
1516
|
+
* http%3A%2F%2Fjiangsu.china.com.cn%2Fuploadfile%2F2015%2F0114%2F1421221304095989.jpg
|
|
1517
|
+
*/
|
|
813
1518
|
idCardBackImageUrl?: string;
|
|
1519
|
+
/**
|
|
1520
|
+
* @example
|
|
1521
|
+
* http%3A%2F%2Fjiangsu.china.com.cn%2Fuploadfile%2F2015%2F0114%2F1421221304095989.jpg
|
|
1522
|
+
*/
|
|
814
1523
|
idCardFrontImageUrl?: string;
|
|
1524
|
+
/**
|
|
1525
|
+
* @example
|
|
1526
|
+
* 330100xxxxxxxxxxxx
|
|
1527
|
+
*/
|
|
815
1528
|
idCardNumber?: string;
|
|
816
1529
|
name?: string;
|
|
1530
|
+
/**
|
|
1531
|
+
* @example
|
|
1532
|
+
* -
|
|
1533
|
+
*/
|
|
817
1534
|
passedRedirectUrl?: string;
|
|
1535
|
+
/**
|
|
1536
|
+
* @example
|
|
1537
|
+
* user111
|
|
1538
|
+
*/
|
|
818
1539
|
userId?: string;
|
|
1540
|
+
/**
|
|
1541
|
+
* @example
|
|
1542
|
+
* 192.168.***.***
|
|
1543
|
+
*/
|
|
819
1544
|
userIp?: string;
|
|
1545
|
+
/**
|
|
1546
|
+
* @example
|
|
1547
|
+
* 187********
|
|
1548
|
+
*/
|
|
820
1549
|
userPhoneNumber?: string;
|
|
1550
|
+
/**
|
|
1551
|
+
* @example
|
|
1552
|
+
* 1577808000000
|
|
1553
|
+
*/
|
|
821
1554
|
userRegistTime?: number;
|
|
822
1555
|
static names(): {
|
|
823
1556
|
[key: string]: string;
|
|
@@ -831,8 +1564,20 @@ export declare class DescribeVerifyTokenRequest extends $tea.Model {
|
|
|
831
1564
|
}
|
|
832
1565
|
export declare class DescribeVerifyTokenResponseBody extends $tea.Model {
|
|
833
1566
|
ossUploadToken?: DescribeVerifyTokenResponseBodyOssUploadToken;
|
|
1567
|
+
/**
|
|
1568
|
+
* @example
|
|
1569
|
+
* 04F0F334-1335-436C-A1D7-6C044FE73368
|
|
1570
|
+
*/
|
|
834
1571
|
requestId?: string;
|
|
1572
|
+
/**
|
|
1573
|
+
* @example
|
|
1574
|
+
* http%3A%2F%2Fjiangsu.china.com.cn%2Fuploadfile%2F2015%2F0114%2F1421221304095989.jpg
|
|
1575
|
+
*/
|
|
835
1576
|
verifyPageUrl?: string;
|
|
1577
|
+
/**
|
|
1578
|
+
* @example
|
|
1579
|
+
* c302c0797679457685410ee51a5ba375
|
|
1580
|
+
*/
|
|
836
1581
|
verifyToken?: string;
|
|
837
1582
|
static names(): {
|
|
838
1583
|
[key: string]: string;
|
|
@@ -861,7 +1606,18 @@ export declare class DescribeVerifyTokenResponse extends $tea.Model {
|
|
|
861
1606
|
});
|
|
862
1607
|
}
|
|
863
1608
|
export declare class DetectFaceAttributesRequest extends $tea.Model {
|
|
1609
|
+
/**
|
|
1610
|
+
* @example
|
|
1611
|
+
* RPBasicTest
|
|
1612
|
+
*/
|
|
864
1613
|
bizType?: string;
|
|
1614
|
+
/**
|
|
1615
|
+
* @remarks
|
|
1616
|
+
* This parameter is required.
|
|
1617
|
+
*
|
|
1618
|
+
* @example
|
|
1619
|
+
* http://image-demo.img-cn-hangzhou.aliyuncs.com/example.jpg
|
|
1620
|
+
*/
|
|
865
1621
|
materialValue?: string;
|
|
866
1622
|
static names(): {
|
|
867
1623
|
[key: string]: string;
|
|
@@ -874,10 +1630,26 @@ export declare class DetectFaceAttributesRequest extends $tea.Model {
|
|
|
874
1630
|
});
|
|
875
1631
|
}
|
|
876
1632
|
export declare class DetectFaceAttributesResponseBody extends $tea.Model {
|
|
1633
|
+
/**
|
|
1634
|
+
* @example
|
|
1635
|
+
* 200
|
|
1636
|
+
*/
|
|
877
1637
|
code?: string;
|
|
878
1638
|
data?: DetectFaceAttributesResponseBodyData;
|
|
1639
|
+
/**
|
|
1640
|
+
* @example
|
|
1641
|
+
* Error.InternalError
|
|
1642
|
+
*/
|
|
879
1643
|
message?: string;
|
|
1644
|
+
/**
|
|
1645
|
+
* @example
|
|
1646
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
1647
|
+
*/
|
|
880
1648
|
requestId?: string;
|
|
1649
|
+
/**
|
|
1650
|
+
* @example
|
|
1651
|
+
* true
|
|
1652
|
+
*/
|
|
881
1653
|
success?: boolean;
|
|
882
1654
|
static names(): {
|
|
883
1655
|
[key: string]: string;
|
|
@@ -906,7 +1678,15 @@ export declare class DetectFaceAttributesResponse extends $tea.Model {
|
|
|
906
1678
|
});
|
|
907
1679
|
}
|
|
908
1680
|
export declare class Id2MetaVerifyRequest extends $tea.Model {
|
|
1681
|
+
/**
|
|
1682
|
+
* @example
|
|
1683
|
+
* 412722198610274919
|
|
1684
|
+
*/
|
|
909
1685
|
identifyNum?: string;
|
|
1686
|
+
/**
|
|
1687
|
+
* @example
|
|
1688
|
+
* normal
|
|
1689
|
+
*/
|
|
910
1690
|
paramType?: string;
|
|
911
1691
|
userName?: string;
|
|
912
1692
|
static names(): {
|
|
@@ -920,8 +1700,20 @@ export declare class Id2MetaVerifyRequest extends $tea.Model {
|
|
|
920
1700
|
});
|
|
921
1701
|
}
|
|
922
1702
|
export declare class Id2MetaVerifyResponseBody extends $tea.Model {
|
|
1703
|
+
/**
|
|
1704
|
+
* @example
|
|
1705
|
+
* 200
|
|
1706
|
+
*/
|
|
923
1707
|
code?: string;
|
|
1708
|
+
/**
|
|
1709
|
+
* @example
|
|
1710
|
+
* success
|
|
1711
|
+
*/
|
|
924
1712
|
message?: string;
|
|
1713
|
+
/**
|
|
1714
|
+
* @example
|
|
1715
|
+
* D6163397-15C5-419C-9ACC-B7C83E0B4C10
|
|
1716
|
+
*/
|
|
925
1717
|
requestId?: string;
|
|
926
1718
|
resultObject?: Id2MetaVerifyResponseBodyResultObject;
|
|
927
1719
|
static names(): {
|
|
@@ -951,39 +1743,101 @@ export declare class Id2MetaVerifyResponse extends $tea.Model {
|
|
|
951
1743
|
});
|
|
952
1744
|
}
|
|
953
1745
|
export declare class InitFaceVerifyRequest extends $tea.Model {
|
|
1746
|
+
appQualityCheck?: string;
|
|
954
1747
|
authId?: string;
|
|
955
1748
|
birthday?: string;
|
|
956
1749
|
callbackToken?: string;
|
|
957
1750
|
callbackUrl?: string;
|
|
958
1751
|
certName?: string;
|
|
1752
|
+
/**
|
|
1753
|
+
* @example
|
|
1754
|
+
* 330103xxxxxxxxxxxx
|
|
1755
|
+
*/
|
|
959
1756
|
certNo?: string;
|
|
1757
|
+
/**
|
|
1758
|
+
* @example
|
|
1759
|
+
* IDENTITY_CARD
|
|
1760
|
+
*/
|
|
960
1761
|
certType?: string;
|
|
1762
|
+
/**
|
|
1763
|
+
* @example
|
|
1764
|
+
* 0bfa7c493f850e5178b9f8613634c9xx
|
|
1765
|
+
*/
|
|
961
1766
|
certifyId?: string;
|
|
962
1767
|
certifyUrlStyle?: string;
|
|
963
1768
|
certifyUrlType?: string;
|
|
964
1769
|
crop?: string;
|
|
965
1770
|
encryptType?: string;
|
|
1771
|
+
/**
|
|
1772
|
+
* @example
|
|
1773
|
+
* /9j/4AAQSkZJRgABAQAASxxxxxxx
|
|
1774
|
+
*/
|
|
966
1775
|
faceContrastPicture?: string;
|
|
1776
|
+
/**
|
|
1777
|
+
* @example
|
|
1778
|
+
* https://cn-shanghai-aliyun-cloudauth-xxxxxx.oss-cn-shanghai.aliyuncs.com/verify/xxxxx/xxxxx.jpeg
|
|
1779
|
+
*/
|
|
967
1780
|
faceContrastPictureUrl?: string;
|
|
968
1781
|
faceGuardOutput?: string;
|
|
1782
|
+
/**
|
|
1783
|
+
* @example
|
|
1784
|
+
* 114.xxx.xxx.xxx
|
|
1785
|
+
*/
|
|
969
1786
|
ip?: string;
|
|
1787
|
+
/**
|
|
1788
|
+
* @example
|
|
1789
|
+
* {"zimVer":"3.0.0","appVersion": "1","bioMetaInfo": "4.1.0:11501568,0","appName": "com.aliyun.antcloudauth","deviceType": "ios","osVersion": "iOS 10.3.2","apdidToken": "","deviceModel": "iPhone9,1"}
|
|
1790
|
+
*/
|
|
970
1791
|
metaInfo?: string;
|
|
1792
|
+
/**
|
|
1793
|
+
* @example
|
|
1794
|
+
* 130xxxxxxxx
|
|
1795
|
+
*/
|
|
971
1796
|
mobile?: string;
|
|
972
1797
|
mode?: string;
|
|
973
1798
|
model?: string;
|
|
1799
|
+
/**
|
|
1800
|
+
* @example
|
|
1801
|
+
* cn-shanghai-aliyun-cloudauth-xxxxx
|
|
1802
|
+
*/
|
|
974
1803
|
ossBucketName?: string;
|
|
1804
|
+
/**
|
|
1805
|
+
* @example
|
|
1806
|
+
* verify/xxxxx/xxxxxx.jpeg
|
|
1807
|
+
*/
|
|
975
1808
|
ossObjectName?: string;
|
|
1809
|
+
/**
|
|
1810
|
+
* @example
|
|
1811
|
+
* e0c34a77f5ac40a5aa5e6ed20c353888
|
|
1812
|
+
*/
|
|
976
1813
|
outerOrderNo?: string;
|
|
977
1814
|
procedurePriority?: string;
|
|
1815
|
+
/**
|
|
1816
|
+
* @example
|
|
1817
|
+
* ID_PRO
|
|
1818
|
+
*/
|
|
978
1819
|
productCode?: string;
|
|
979
1820
|
rarelyCharacters?: string;
|
|
980
1821
|
readImg?: string;
|
|
1822
|
+
/**
|
|
1823
|
+
* @example
|
|
1824
|
+
* www.aliyun.com
|
|
1825
|
+
*/
|
|
981
1826
|
returnUrl?: string;
|
|
1827
|
+
/**
|
|
1828
|
+
* @example
|
|
1829
|
+
* 1000000006
|
|
1830
|
+
*/
|
|
982
1831
|
sceneId?: number;
|
|
983
1832
|
suitableType?: string;
|
|
984
1833
|
uiCustomUrl?: string;
|
|
1834
|
+
/**
|
|
1835
|
+
* @example
|
|
1836
|
+
* 123456789
|
|
1837
|
+
*/
|
|
985
1838
|
userId?: string;
|
|
986
1839
|
validityDate?: string;
|
|
1840
|
+
videoEvidence?: string;
|
|
987
1841
|
voluntaryCustomizedContent?: string;
|
|
988
1842
|
static names(): {
|
|
989
1843
|
[key: string]: string;
|
|
@@ -996,8 +1850,20 @@ export declare class InitFaceVerifyRequest extends $tea.Model {
|
|
|
996
1850
|
});
|
|
997
1851
|
}
|
|
998
1852
|
export declare class InitFaceVerifyResponseBody extends $tea.Model {
|
|
1853
|
+
/**
|
|
1854
|
+
* @example
|
|
1855
|
+
* 200
|
|
1856
|
+
*/
|
|
999
1857
|
code?: string;
|
|
1858
|
+
/**
|
|
1859
|
+
* @example
|
|
1860
|
+
* success
|
|
1861
|
+
*/
|
|
1000
1862
|
message?: string;
|
|
1863
|
+
/**
|
|
1864
|
+
* @example
|
|
1865
|
+
* 130A2C10-B9EE-4D84-88E3-5384FF039795
|
|
1866
|
+
*/
|
|
1001
1867
|
requestId?: string;
|
|
1002
1868
|
resultObject?: InitFaceVerifyResponseBodyResultObject;
|
|
1003
1869
|
static names(): {
|
|
@@ -1083,8 +1949,20 @@ export declare class LivenessFaceVerifyResponse extends $tea.Model {
|
|
|
1083
1949
|
});
|
|
1084
1950
|
}
|
|
1085
1951
|
export declare class Mobile3MetaDetailVerifyRequest extends $tea.Model {
|
|
1952
|
+
/**
|
|
1953
|
+
* @example
|
|
1954
|
+
* 520181199902104631
|
|
1955
|
+
*/
|
|
1086
1956
|
identifyNum?: string;
|
|
1957
|
+
/**
|
|
1958
|
+
* @example
|
|
1959
|
+
* 150000xxxx
|
|
1960
|
+
*/
|
|
1087
1961
|
mobile?: string;
|
|
1962
|
+
/**
|
|
1963
|
+
* @example
|
|
1964
|
+
* normal
|
|
1965
|
+
*/
|
|
1088
1966
|
paramType?: string;
|
|
1089
1967
|
userName?: string;
|
|
1090
1968
|
static names(): {
|
|
@@ -1098,8 +1976,20 @@ export declare class Mobile3MetaDetailVerifyRequest extends $tea.Model {
|
|
|
1098
1976
|
});
|
|
1099
1977
|
}
|
|
1100
1978
|
export declare class Mobile3MetaDetailVerifyResponseBody extends $tea.Model {
|
|
1979
|
+
/**
|
|
1980
|
+
* @example
|
|
1981
|
+
* 200
|
|
1982
|
+
*/
|
|
1101
1983
|
code?: string;
|
|
1984
|
+
/**
|
|
1985
|
+
* @example
|
|
1986
|
+
* success
|
|
1987
|
+
*/
|
|
1102
1988
|
message?: string;
|
|
1989
|
+
/**
|
|
1990
|
+
* @example
|
|
1991
|
+
* 5A6229C0-E156-48E4-B6EC-0F528BDF60D2
|
|
1992
|
+
*/
|
|
1103
1993
|
requestId?: string;
|
|
1104
1994
|
resultObject?: Mobile3MetaDetailVerifyResponseBodyResultObject;
|
|
1105
1995
|
static names(): {
|
|
@@ -1129,8 +2019,20 @@ export declare class Mobile3MetaDetailVerifyResponse extends $tea.Model {
|
|
|
1129
2019
|
});
|
|
1130
2020
|
}
|
|
1131
2021
|
export declare class Mobile3MetaSimpleVerifyRequest extends $tea.Model {
|
|
2022
|
+
/**
|
|
2023
|
+
* @example
|
|
2024
|
+
* 429001********8211
|
|
2025
|
+
*/
|
|
1132
2026
|
identifyNum?: string;
|
|
2027
|
+
/**
|
|
2028
|
+
* @example
|
|
2029
|
+
* 150000****
|
|
2030
|
+
*/
|
|
1133
2031
|
mobile?: string;
|
|
2032
|
+
/**
|
|
2033
|
+
* @example
|
|
2034
|
+
* normal
|
|
2035
|
+
*/
|
|
1134
2036
|
paramType?: string;
|
|
1135
2037
|
userName?: string;
|
|
1136
2038
|
static names(): {
|
|
@@ -1144,8 +2046,20 @@ export declare class Mobile3MetaSimpleVerifyRequest extends $tea.Model {
|
|
|
1144
2046
|
});
|
|
1145
2047
|
}
|
|
1146
2048
|
export declare class Mobile3MetaSimpleVerifyResponseBody extends $tea.Model {
|
|
2049
|
+
/**
|
|
2050
|
+
* @example
|
|
2051
|
+
* 200
|
|
2052
|
+
*/
|
|
1147
2053
|
code?: string;
|
|
2054
|
+
/**
|
|
2055
|
+
* @example
|
|
2056
|
+
* success
|
|
2057
|
+
*/
|
|
1148
2058
|
message?: string;
|
|
2059
|
+
/**
|
|
2060
|
+
* @example
|
|
2061
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
2062
|
+
*/
|
|
1149
2063
|
requestId?: string;
|
|
1150
2064
|
resultObject?: Mobile3MetaSimpleVerifyResponseBodyResultObject;
|
|
1151
2065
|
static names(): {
|
|
@@ -1175,7 +2089,15 @@ export declare class Mobile3MetaSimpleVerifyResponse extends $tea.Model {
|
|
|
1175
2089
|
});
|
|
1176
2090
|
}
|
|
1177
2091
|
export declare class MobileDetectRequest extends $tea.Model {
|
|
2092
|
+
/**
|
|
2093
|
+
* @example
|
|
2094
|
+
* 138********,156********
|
|
2095
|
+
*/
|
|
1178
2096
|
mobiles?: string;
|
|
2097
|
+
/**
|
|
2098
|
+
* @example
|
|
2099
|
+
* normal
|
|
2100
|
+
*/
|
|
1179
2101
|
paramType?: string;
|
|
1180
2102
|
static names(): {
|
|
1181
2103
|
[key: string]: string;
|
|
@@ -1188,8 +2110,20 @@ export declare class MobileDetectRequest extends $tea.Model {
|
|
|
1188
2110
|
});
|
|
1189
2111
|
}
|
|
1190
2112
|
export declare class MobileDetectResponseBody extends $tea.Model {
|
|
2113
|
+
/**
|
|
2114
|
+
* @example
|
|
2115
|
+
* 200
|
|
2116
|
+
*/
|
|
1191
2117
|
code?: string;
|
|
2118
|
+
/**
|
|
2119
|
+
* @example
|
|
2120
|
+
* success
|
|
2121
|
+
*/
|
|
1192
2122
|
message?: string;
|
|
2123
|
+
/**
|
|
2124
|
+
* @example
|
|
2125
|
+
* 969434DF-926B-4997-9881-4DE94E39F805
|
|
2126
|
+
*/
|
|
1193
2127
|
requestId?: string;
|
|
1194
2128
|
resultObject?: MobileDetectResponseBodyResultObject;
|
|
1195
2129
|
static names(): {
|
|
@@ -1219,7 +2153,15 @@ export declare class MobileDetectResponse extends $tea.Model {
|
|
|
1219
2153
|
});
|
|
1220
2154
|
}
|
|
1221
2155
|
export declare class MobileOnlineStatusRequest extends $tea.Model {
|
|
2156
|
+
/**
|
|
2157
|
+
* @example
|
|
2158
|
+
* 130********
|
|
2159
|
+
*/
|
|
1222
2160
|
mobile?: string;
|
|
2161
|
+
/**
|
|
2162
|
+
* @example
|
|
2163
|
+
* normal
|
|
2164
|
+
*/
|
|
1223
2165
|
paramType?: string;
|
|
1224
2166
|
static names(): {
|
|
1225
2167
|
[key: string]: string;
|
|
@@ -1232,8 +2174,20 @@ export declare class MobileOnlineStatusRequest extends $tea.Model {
|
|
|
1232
2174
|
});
|
|
1233
2175
|
}
|
|
1234
2176
|
export declare class MobileOnlineStatusResponseBody extends $tea.Model {
|
|
2177
|
+
/**
|
|
2178
|
+
* @example
|
|
2179
|
+
* 200
|
|
2180
|
+
*/
|
|
1235
2181
|
code?: string;
|
|
2182
|
+
/**
|
|
2183
|
+
* @example
|
|
2184
|
+
* success
|
|
2185
|
+
*/
|
|
1236
2186
|
message?: string;
|
|
2187
|
+
/**
|
|
2188
|
+
* @example
|
|
2189
|
+
* B506328A-D84B-4750-82C7-6A207C585CF1
|
|
2190
|
+
*/
|
|
1237
2191
|
requestId?: string;
|
|
1238
2192
|
resultObject?: MobileOnlineStatusResponseBodyResultObject;
|
|
1239
2193
|
static names(): {
|
|
@@ -1263,7 +2217,15 @@ export declare class MobileOnlineStatusResponse extends $tea.Model {
|
|
|
1263
2217
|
});
|
|
1264
2218
|
}
|
|
1265
2219
|
export declare class MobileOnlineTimeRequest extends $tea.Model {
|
|
2220
|
+
/**
|
|
2221
|
+
* @example
|
|
2222
|
+
* 130********
|
|
2223
|
+
*/
|
|
1266
2224
|
mobile?: string;
|
|
2225
|
+
/**
|
|
2226
|
+
* @example
|
|
2227
|
+
* normal
|
|
2228
|
+
*/
|
|
1267
2229
|
paramType?: string;
|
|
1268
2230
|
static names(): {
|
|
1269
2231
|
[key: string]: string;
|
|
@@ -1276,8 +2238,20 @@ export declare class MobileOnlineTimeRequest extends $tea.Model {
|
|
|
1276
2238
|
});
|
|
1277
2239
|
}
|
|
1278
2240
|
export declare class MobileOnlineTimeResponseBody extends $tea.Model {
|
|
2241
|
+
/**
|
|
2242
|
+
* @example
|
|
2243
|
+
* 200
|
|
2244
|
+
*/
|
|
1279
2245
|
code?: string;
|
|
2246
|
+
/**
|
|
2247
|
+
* @example
|
|
2248
|
+
* success
|
|
2249
|
+
*/
|
|
1280
2250
|
message?: string;
|
|
2251
|
+
/**
|
|
2252
|
+
* @example
|
|
2253
|
+
* B506328A-D84B-4750-82C7-6A207C585CF1
|
|
2254
|
+
*/
|
|
1281
2255
|
requestId?: string;
|
|
1282
2256
|
resultObject?: MobileOnlineTimeResponseBodyResultObject;
|
|
1283
2257
|
static names(): {
|
|
@@ -1307,10 +2281,33 @@ export declare class MobileOnlineTimeResponse extends $tea.Model {
|
|
|
1307
2281
|
});
|
|
1308
2282
|
}
|
|
1309
2283
|
export declare class ModifyDeviceInfoRequest extends $tea.Model {
|
|
2284
|
+
/**
|
|
2285
|
+
* @example
|
|
2286
|
+
* FACE_TEST
|
|
2287
|
+
*/
|
|
1310
2288
|
bizType?: string;
|
|
2289
|
+
/**
|
|
2290
|
+
* @remarks
|
|
2291
|
+
* This parameter is required.
|
|
2292
|
+
*
|
|
2293
|
+
* @example
|
|
2294
|
+
* wd.6ziUffspAeW5FVYbaqmexR-1qwNjM
|
|
2295
|
+
*/
|
|
1311
2296
|
deviceId?: string;
|
|
2297
|
+
/**
|
|
2298
|
+
* @example
|
|
2299
|
+
* 1
|
|
2300
|
+
*/
|
|
1312
2301
|
duration?: string;
|
|
2302
|
+
/**
|
|
2303
|
+
* @example
|
|
2304
|
+
* 20190401
|
|
2305
|
+
*/
|
|
1313
2306
|
expiredDay?: string;
|
|
2307
|
+
/**
|
|
2308
|
+
* @example
|
|
2309
|
+
* 3iJ1AY$oHcu7mC69
|
|
2310
|
+
*/
|
|
1314
2311
|
userDeviceId?: string;
|
|
1315
2312
|
static names(): {
|
|
1316
2313
|
[key: string]: string;
|
|
@@ -1323,11 +2320,35 @@ export declare class ModifyDeviceInfoRequest extends $tea.Model {
|
|
|
1323
2320
|
});
|
|
1324
2321
|
}
|
|
1325
2322
|
export declare class ModifyDeviceInfoResponseBody extends $tea.Model {
|
|
2323
|
+
/**
|
|
2324
|
+
* @example
|
|
2325
|
+
* 20190401
|
|
2326
|
+
*/
|
|
1326
2327
|
beginDay?: string;
|
|
2328
|
+
/**
|
|
2329
|
+
* @example
|
|
2330
|
+
* FACE_TEST
|
|
2331
|
+
*/
|
|
1327
2332
|
bizType?: string;
|
|
2333
|
+
/**
|
|
2334
|
+
* @example
|
|
2335
|
+
* wd.6ziUffspAeW5FVYbaqmexR-1qwNjM
|
|
2336
|
+
*/
|
|
1328
2337
|
deviceId?: string;
|
|
2338
|
+
/**
|
|
2339
|
+
* @example
|
|
2340
|
+
* 20200330
|
|
2341
|
+
*/
|
|
1329
2342
|
expiredDay?: string;
|
|
2343
|
+
/**
|
|
2344
|
+
* @example
|
|
2345
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
2346
|
+
*/
|
|
1330
2347
|
requestId?: string;
|
|
2348
|
+
/**
|
|
2349
|
+
* @example
|
|
2350
|
+
* 3iJ1AY$oHcu7mC69
|
|
2351
|
+
*/
|
|
1331
2352
|
userDeviceId?: string;
|
|
1332
2353
|
static names(): {
|
|
1333
2354
|
[key: string]: string;
|
|
@@ -1356,13 +2377,57 @@ export declare class ModifyDeviceInfoResponse extends $tea.Model {
|
|
|
1356
2377
|
});
|
|
1357
2378
|
}
|
|
1358
2379
|
export declare class VerifyMaterialRequest extends $tea.Model {
|
|
2380
|
+
/**
|
|
2381
|
+
* @remarks
|
|
2382
|
+
* This parameter is required.
|
|
2383
|
+
*
|
|
2384
|
+
* @example
|
|
2385
|
+
* 39ecf51e-2f81-4dc5-90ee-ff86125b****
|
|
2386
|
+
*/
|
|
1359
2387
|
bizId?: string;
|
|
2388
|
+
/**
|
|
2389
|
+
* @remarks
|
|
2390
|
+
* This parameter is required.
|
|
2391
|
+
*
|
|
2392
|
+
* @example
|
|
2393
|
+
* RPMinTest
|
|
2394
|
+
*/
|
|
1360
2395
|
bizType?: string;
|
|
2396
|
+
/**
|
|
2397
|
+
* @remarks
|
|
2398
|
+
* This parameter is required.
|
|
2399
|
+
*
|
|
2400
|
+
* @example
|
|
2401
|
+
* http://image-demo.img-cn-hangzhou.aliyuncs.com/example.jpg
|
|
2402
|
+
*/
|
|
1361
2403
|
faceImageUrl?: string;
|
|
2404
|
+
/**
|
|
2405
|
+
* @example
|
|
2406
|
+
* http://image-demo.img-cn-hangzhou.aliyuncs.com/example3.jpg
|
|
2407
|
+
*/
|
|
1362
2408
|
idCardBackImageUrl?: string;
|
|
2409
|
+
/**
|
|
2410
|
+
* @example
|
|
2411
|
+
* http://image-demo.img-cn-hangzhou.aliyuncs.com/example2.jpg
|
|
2412
|
+
*/
|
|
1363
2413
|
idCardFrontImageUrl?: string;
|
|
2414
|
+
/**
|
|
2415
|
+
* @remarks
|
|
2416
|
+
* This parameter is required.
|
|
2417
|
+
*
|
|
2418
|
+
* @example
|
|
2419
|
+
* 02343218901123****
|
|
2420
|
+
*/
|
|
1364
2421
|
idCardNumber?: string;
|
|
2422
|
+
/**
|
|
2423
|
+
* @remarks
|
|
2424
|
+
* This parameter is required.
|
|
2425
|
+
*/
|
|
1365
2426
|
name?: string;
|
|
2427
|
+
/**
|
|
2428
|
+
* @example
|
|
2429
|
+
* 54sdj
|
|
2430
|
+
*/
|
|
1366
2431
|
userId?: string;
|
|
1367
2432
|
static names(): {
|
|
1368
2433
|
[key: string]: string;
|
|
@@ -1375,11 +2440,31 @@ export declare class VerifyMaterialRequest extends $tea.Model {
|
|
|
1375
2440
|
});
|
|
1376
2441
|
}
|
|
1377
2442
|
export declare class VerifyMaterialResponseBody extends $tea.Model {
|
|
2443
|
+
/**
|
|
2444
|
+
* @example
|
|
2445
|
+
* 97
|
|
2446
|
+
*/
|
|
1378
2447
|
authorityComparisionScore?: number;
|
|
2448
|
+
/**
|
|
2449
|
+
* @example
|
|
2450
|
+
* 97
|
|
2451
|
+
*/
|
|
1379
2452
|
idCardFaceComparisonScore?: number;
|
|
1380
2453
|
material?: VerifyMaterialResponseBodyMaterial;
|
|
2454
|
+
/**
|
|
2455
|
+
* @example
|
|
2456
|
+
* 04F0F334-1335-436C-A1D7-6C044FE73368
|
|
2457
|
+
*/
|
|
1381
2458
|
requestId?: string;
|
|
2459
|
+
/**
|
|
2460
|
+
* @example
|
|
2461
|
+
* 1
|
|
2462
|
+
*/
|
|
1382
2463
|
verifyStatus?: number;
|
|
2464
|
+
/**
|
|
2465
|
+
* @example
|
|
2466
|
+
* c302c0797679457685410ee51a5ba375
|
|
2467
|
+
*/
|
|
1383
2468
|
verifyToken?: string;
|
|
1384
2469
|
static names(): {
|
|
1385
2470
|
[key: string]: string;
|
|
@@ -1409,7 +2494,15 @@ export declare class VerifyMaterialResponse extends $tea.Model {
|
|
|
1409
2494
|
}
|
|
1410
2495
|
export declare class AIGCFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
1411
2496
|
certifyId?: string;
|
|
2497
|
+
/**
|
|
2498
|
+
* @example
|
|
2499
|
+
* Y
|
|
2500
|
+
*/
|
|
1412
2501
|
result?: string;
|
|
2502
|
+
/**
|
|
2503
|
+
* @example
|
|
2504
|
+
* 1.0000
|
|
2505
|
+
*/
|
|
1413
2506
|
score?: string;
|
|
1414
2507
|
static names(): {
|
|
1415
2508
|
[key: string]: string;
|
|
@@ -1422,7 +2515,15 @@ export declare class AIGCFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
|
1422
2515
|
});
|
|
1423
2516
|
}
|
|
1424
2517
|
export declare class BankMetaVerifyResponseBodyResultObject extends $tea.Model {
|
|
2518
|
+
/**
|
|
2519
|
+
* @example
|
|
2520
|
+
* 1
|
|
2521
|
+
*/
|
|
1425
2522
|
bizCode?: string;
|
|
2523
|
+
/**
|
|
2524
|
+
* @example
|
|
2525
|
+
* 101
|
|
2526
|
+
*/
|
|
1426
2527
|
subCode?: string;
|
|
1427
2528
|
static names(): {
|
|
1428
2529
|
[key: string]: string;
|
|
@@ -1436,7 +2537,15 @@ export declare class BankMetaVerifyResponseBodyResultObject extends $tea.Model {
|
|
|
1436
2537
|
}
|
|
1437
2538
|
export declare class CompareFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
1438
2539
|
certifyId?: string;
|
|
2540
|
+
/**
|
|
2541
|
+
* @example
|
|
2542
|
+
* T
|
|
2543
|
+
*/
|
|
1439
2544
|
passed?: string;
|
|
2545
|
+
/**
|
|
2546
|
+
* @example
|
|
2547
|
+
* 99.60875
|
|
2548
|
+
*/
|
|
1440
2549
|
verifyScore?: number;
|
|
1441
2550
|
static names(): {
|
|
1442
2551
|
[key: string]: string;
|
|
@@ -1449,7 +2558,15 @@ export declare class CompareFaceVerifyResponseBodyResultObject extends $tea.Mode
|
|
|
1449
2558
|
});
|
|
1450
2559
|
}
|
|
1451
2560
|
export declare class CompareFacesResponseBodyData extends $tea.Model {
|
|
2561
|
+
/**
|
|
2562
|
+
* @example
|
|
2563
|
+
* {"0.0001":"90.07","0.001":"80.01","0.01":"70.02"}
|
|
2564
|
+
*/
|
|
1452
2565
|
confidenceThresholds?: string;
|
|
2566
|
+
/**
|
|
2567
|
+
* @example
|
|
2568
|
+
* 98.7913
|
|
2569
|
+
*/
|
|
1453
2570
|
similarityScore?: number;
|
|
1454
2571
|
static names(): {
|
|
1455
2572
|
[key: string]: string;
|
|
@@ -1463,9 +2580,25 @@ export declare class CompareFacesResponseBodyData extends $tea.Model {
|
|
|
1463
2580
|
}
|
|
1464
2581
|
export declare class ContrastFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
1465
2582
|
certifyId?: string;
|
|
2583
|
+
/**
|
|
2584
|
+
* @example
|
|
2585
|
+
* null
|
|
2586
|
+
*/
|
|
1466
2587
|
identityInfo?: string;
|
|
2588
|
+
/**
|
|
2589
|
+
* @example
|
|
2590
|
+
* {"faceAttack": "F","facialPictureFront": {"qualityScore": 88.3615493774414,"verifyScore": 50.28594166529785}}
|
|
2591
|
+
*/
|
|
1467
2592
|
materialInfo?: string;
|
|
2593
|
+
/**
|
|
2594
|
+
* @example
|
|
2595
|
+
* T
|
|
2596
|
+
*/
|
|
1468
2597
|
passed?: string;
|
|
2598
|
+
/**
|
|
2599
|
+
* @example
|
|
2600
|
+
* 200
|
|
2601
|
+
*/
|
|
1469
2602
|
subCode?: string;
|
|
1470
2603
|
static names(): {
|
|
1471
2604
|
[key: string]: string;
|
|
@@ -1480,12 +2613,28 @@ export declare class ContrastFaceVerifyResponseBodyResultObject extends $tea.Mod
|
|
|
1480
2613
|
export declare class CredentialVerifyResponseBodyResultObject extends $tea.Model {
|
|
1481
2614
|
materialInfo?: string;
|
|
1482
2615
|
ocrInfo?: string;
|
|
2616
|
+
/**
|
|
2617
|
+
* @example
|
|
2618
|
+
* 1
|
|
2619
|
+
*/
|
|
1483
2620
|
result?: string;
|
|
1484
2621
|
riskScore?: {
|
|
1485
2622
|
[key: string]: string;
|
|
1486
2623
|
};
|
|
2624
|
+
/**
|
|
2625
|
+
* @example
|
|
2626
|
+
* PS,SCREEN_PHOTO
|
|
2627
|
+
*/
|
|
1487
2628
|
riskTag?: string;
|
|
2629
|
+
/**
|
|
2630
|
+
* @example
|
|
2631
|
+
* **
|
|
2632
|
+
*/
|
|
1488
2633
|
verifyDetail?: string;
|
|
2634
|
+
/**
|
|
2635
|
+
* @example
|
|
2636
|
+
* *
|
|
2637
|
+
*/
|
|
1489
2638
|
verifyResult?: string;
|
|
1490
2639
|
static names(): {
|
|
1491
2640
|
[key: string]: string;
|
|
@@ -1498,10 +2647,18 @@ export declare class CredentialVerifyResponseBodyResultObject extends $tea.Model
|
|
|
1498
2647
|
});
|
|
1499
2648
|
}
|
|
1500
2649
|
export declare class DeepfakeDetectResponseBodyResultObject extends $tea.Model {
|
|
2650
|
+
/**
|
|
2651
|
+
* @example
|
|
2652
|
+
* 1
|
|
2653
|
+
*/
|
|
1501
2654
|
result?: string;
|
|
1502
2655
|
riskScore?: {
|
|
1503
2656
|
[key: string]: string;
|
|
1504
2657
|
};
|
|
2658
|
+
/**
|
|
2659
|
+
* @example
|
|
2660
|
+
* SuspectDeepForgery,SuspectWarterMark
|
|
2661
|
+
*/
|
|
1505
2662
|
riskTag?: string;
|
|
1506
2663
|
static names(): {
|
|
1507
2664
|
[key: string]: string;
|
|
@@ -1514,10 +2671,30 @@ export declare class DeepfakeDetectResponseBodyResultObject extends $tea.Model {
|
|
|
1514
2671
|
});
|
|
1515
2672
|
}
|
|
1516
2673
|
export declare class DescribeDeviceInfoResponseBodyDeviceInfoListDeviceInfo extends $tea.Model {
|
|
2674
|
+
/**
|
|
2675
|
+
* @example
|
|
2676
|
+
* 20180101
|
|
2677
|
+
*/
|
|
1517
2678
|
beginDay?: string;
|
|
2679
|
+
/**
|
|
2680
|
+
* @example
|
|
2681
|
+
* FACE_TEST
|
|
2682
|
+
*/
|
|
1518
2683
|
bizType?: string;
|
|
2684
|
+
/**
|
|
2685
|
+
* @example
|
|
2686
|
+
* wd.6ziUffspAeW5FVYbaqmexR-1qwNjM
|
|
2687
|
+
*/
|
|
1519
2688
|
deviceId?: string;
|
|
2689
|
+
/**
|
|
2690
|
+
* @example
|
|
2691
|
+
* 20180101
|
|
2692
|
+
*/
|
|
1520
2693
|
expiredDay?: string;
|
|
2694
|
+
/**
|
|
2695
|
+
* @example
|
|
2696
|
+
* 3iJ1AY$oHcu7mC69
|
|
2697
|
+
*/
|
|
1521
2698
|
userDeviceId?: string;
|
|
1522
2699
|
static names(): {
|
|
1523
2700
|
[key: string]: string;
|
|
@@ -1543,10 +2720,30 @@ export declare class DescribeDeviceInfoResponseBodyDeviceInfoList extends $tea.M
|
|
|
1543
2720
|
}
|
|
1544
2721
|
export declare class DescribeFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
1545
2722
|
deviceRisk?: string;
|
|
2723
|
+
/**
|
|
2724
|
+
* @example
|
|
2725
|
+
* McozS1ZWRcRZStlERcZZo_QOytx5jcgZoZJEoRLOxxxxxxx
|
|
2726
|
+
*/
|
|
1546
2727
|
deviceToken?: string;
|
|
2728
|
+
/**
|
|
2729
|
+
* @example
|
|
2730
|
+
* null
|
|
2731
|
+
*/
|
|
1547
2732
|
identityInfo?: string;
|
|
2733
|
+
/**
|
|
2734
|
+
* @example
|
|
2735
|
+
* {"faceAttack": "F","facialPictureFront": {"qualityScore": 88.3615493774414,"pictureUrl": "https://cn-shanghai-aliyun-cloudauth-xxxxxx.oss-cn-shanghai.aliyuncs.com/verify/xxxxx/xxxxx.jpeg","ossBucketName": "cn-shanghai-aliyun-cloudauth-1260051251634779","ossObjectName": "verify/1260051251634779/6ba7bcfccf33f56cdb44ed086f36ce3e0.jpeg"}}
|
|
2736
|
+
*/
|
|
1548
2737
|
materialInfo?: string;
|
|
2738
|
+
/**
|
|
2739
|
+
* @example
|
|
2740
|
+
* T
|
|
2741
|
+
*/
|
|
1549
2742
|
passed?: string;
|
|
2743
|
+
/**
|
|
2744
|
+
* @example
|
|
2745
|
+
* 200
|
|
2746
|
+
*/
|
|
1550
2747
|
subCode?: string;
|
|
1551
2748
|
success?: string;
|
|
1552
2749
|
userInfo?: string;
|
|
@@ -1561,12 +2758,40 @@ export declare class DescribeFaceVerifyResponseBodyResultObject extends $tea.Mod
|
|
|
1561
2758
|
});
|
|
1562
2759
|
}
|
|
1563
2760
|
export declare class DescribeOssUploadTokenResponseBodyOssUploadToken extends $tea.Model {
|
|
2761
|
+
/**
|
|
2762
|
+
* @example
|
|
2763
|
+
* cloudauth-zhangjiakou-external
|
|
2764
|
+
*/
|
|
1564
2765
|
bucket?: string;
|
|
2766
|
+
/**
|
|
2767
|
+
* @example
|
|
2768
|
+
* https://oss-cn-zhangjiakou.aliyuncs.com
|
|
2769
|
+
*/
|
|
1565
2770
|
endPoint?: string;
|
|
2771
|
+
/**
|
|
2772
|
+
* @example
|
|
2773
|
+
* 1582636610000
|
|
2774
|
+
*/
|
|
1566
2775
|
expired?: number;
|
|
2776
|
+
/**
|
|
2777
|
+
* @example
|
|
2778
|
+
* STS.NU8rUBj****
|
|
2779
|
+
*/
|
|
1567
2780
|
key?: string;
|
|
2781
|
+
/**
|
|
2782
|
+
* @example
|
|
2783
|
+
* prod/RdNLC@Ox2n-1s7NMt
|
|
2784
|
+
*/
|
|
1568
2785
|
path?: string;
|
|
2786
|
+
/**
|
|
2787
|
+
* @example
|
|
2788
|
+
* FwmnyoqT8dHj7nJLuM67T****
|
|
2789
|
+
*/
|
|
1569
2790
|
secret?: string;
|
|
2791
|
+
/**
|
|
2792
|
+
* @example
|
|
2793
|
+
* uWia500nTS5knZaDzq4/KqpvhcLnO****
|
|
2794
|
+
*/
|
|
1570
2795
|
token?: string;
|
|
1571
2796
|
static names(): {
|
|
1572
2797
|
[key: string]: string;
|
|
@@ -1579,11 +2804,31 @@ export declare class DescribeOssUploadTokenResponseBodyOssUploadToken extends $t
|
|
|
1579
2804
|
});
|
|
1580
2805
|
}
|
|
1581
2806
|
export declare class DescribePageFaceVerifyDataResponseBodyItems extends $tea.Model {
|
|
2807
|
+
/**
|
|
2808
|
+
* @example
|
|
2809
|
+
* 2024-03-24T00:00:00.000Z
|
|
2810
|
+
*/
|
|
1582
2811
|
date?: string;
|
|
2812
|
+
/**
|
|
2813
|
+
* @example
|
|
2814
|
+
* ID_PLUS
|
|
2815
|
+
*/
|
|
1583
2816
|
productCode?: string;
|
|
2817
|
+
/**
|
|
2818
|
+
* @example
|
|
2819
|
+
* 20**40
|
|
2820
|
+
*/
|
|
1584
2821
|
sceneId?: string;
|
|
1585
2822
|
sceneName?: string;
|
|
2823
|
+
/**
|
|
2824
|
+
* @example
|
|
2825
|
+
* 1
|
|
2826
|
+
*/
|
|
1586
2827
|
successCount?: string;
|
|
2828
|
+
/**
|
|
2829
|
+
* @example
|
|
2830
|
+
* 19
|
|
2831
|
+
*/
|
|
1587
2832
|
totalCount?: string;
|
|
1588
2833
|
static names(): {
|
|
1589
2834
|
[key: string]: string;
|
|
@@ -1596,12 +2841,36 @@ export declare class DescribePageFaceVerifyDataResponseBodyItems extends $tea.Mo
|
|
|
1596
2841
|
});
|
|
1597
2842
|
}
|
|
1598
2843
|
export declare class DescribeSmartStatisticsPageListResponseBodyItems extends $tea.Model {
|
|
2844
|
+
/**
|
|
2845
|
+
* @example
|
|
2846
|
+
* 11/8
|
|
2847
|
+
*/
|
|
1599
2848
|
date?: string;
|
|
2849
|
+
/**
|
|
2850
|
+
* @example
|
|
2851
|
+
* 25
|
|
2852
|
+
*/
|
|
1600
2853
|
passRate?: string;
|
|
2854
|
+
/**
|
|
2855
|
+
* @example
|
|
2856
|
+
* SMART_VERIFY
|
|
2857
|
+
*/
|
|
1601
2858
|
productCode?: string;
|
|
2859
|
+
/**
|
|
2860
|
+
* @example
|
|
2861
|
+
* 20**40
|
|
2862
|
+
*/
|
|
1602
2863
|
sceneId?: number;
|
|
1603
2864
|
sceneName?: string;
|
|
2865
|
+
/**
|
|
2866
|
+
* @example
|
|
2867
|
+
* 1
|
|
2868
|
+
*/
|
|
1604
2869
|
successCount?: number;
|
|
2870
|
+
/**
|
|
2871
|
+
* @example
|
|
2872
|
+
* 4
|
|
2873
|
+
*/
|
|
1605
2874
|
totalCount?: number;
|
|
1606
2875
|
static names(): {
|
|
1607
2876
|
[key: string]: string;
|
|
@@ -1616,13 +2885,37 @@ export declare class DescribeSmartStatisticsPageListResponseBodyItems extends $t
|
|
|
1616
2885
|
export declare class DescribeVerifyResultResponseBodyMaterialIdCardInfo extends $tea.Model {
|
|
1617
2886
|
address?: string;
|
|
1618
2887
|
authority?: string;
|
|
2888
|
+
/**
|
|
2889
|
+
* @example
|
|
2890
|
+
* http://image-demo.img-cn-hangzhou.aliyuncs.com/example3.jpg
|
|
2891
|
+
*/
|
|
1619
2892
|
backImageUrl?: string;
|
|
2893
|
+
/**
|
|
2894
|
+
* @example
|
|
2895
|
+
* 19900101
|
|
2896
|
+
*/
|
|
1620
2897
|
birth?: string;
|
|
2898
|
+
/**
|
|
2899
|
+
* @example
|
|
2900
|
+
* 20201101
|
|
2901
|
+
*/
|
|
1621
2902
|
endDate?: string;
|
|
2903
|
+
/**
|
|
2904
|
+
* @example
|
|
2905
|
+
* http://image-demo.img-cn-hangzhou.aliyuncs.com/example2.jpg
|
|
2906
|
+
*/
|
|
1622
2907
|
frontImageUrl?: string;
|
|
1623
2908
|
name?: string;
|
|
1624
2909
|
nationality?: string;
|
|
2910
|
+
/**
|
|
2911
|
+
* @example
|
|
2912
|
+
* 02343218901123****
|
|
2913
|
+
*/
|
|
1625
2914
|
number?: string;
|
|
2915
|
+
/**
|
|
2916
|
+
* @example
|
|
2917
|
+
* 20201101
|
|
2918
|
+
*/
|
|
1626
2919
|
startDate?: string;
|
|
1627
2920
|
static names(): {
|
|
1628
2921
|
[key: string]: string;
|
|
@@ -1635,12 +2928,32 @@ export declare class DescribeVerifyResultResponseBodyMaterialIdCardInfo extends
|
|
|
1635
2928
|
});
|
|
1636
2929
|
}
|
|
1637
2930
|
export declare class DescribeVerifyResultResponseBodyMaterial extends $tea.Model {
|
|
2931
|
+
/**
|
|
2932
|
+
* @example
|
|
2933
|
+
* http://image-demo.img-cn-hangzhou.aliyuncs.com/face-global-example.jpg
|
|
2934
|
+
*/
|
|
1638
2935
|
faceGlobalUrl?: string;
|
|
2936
|
+
/**
|
|
2937
|
+
* @example
|
|
2938
|
+
* http://image-demo.img-cn-hangzhou.aliyuncs.com/face-image-example.jpg
|
|
2939
|
+
*/
|
|
1639
2940
|
faceImageUrl?: string;
|
|
2941
|
+
/**
|
|
2942
|
+
* @example
|
|
2943
|
+
* false
|
|
2944
|
+
*/
|
|
1640
2945
|
faceMask?: boolean;
|
|
2946
|
+
/**
|
|
2947
|
+
* @example
|
|
2948
|
+
* NORMAL
|
|
2949
|
+
*/
|
|
1641
2950
|
faceQuality?: string;
|
|
1642
2951
|
idCardInfo?: DescribeVerifyResultResponseBodyMaterialIdCardInfo;
|
|
1643
2952
|
idCardName?: string;
|
|
2953
|
+
/**
|
|
2954
|
+
* @example
|
|
2955
|
+
* 02343218901123****
|
|
2956
|
+
*/
|
|
1644
2957
|
idCardNumber?: string;
|
|
1645
2958
|
videoUrls?: string[];
|
|
1646
2959
|
static names(): {
|
|
@@ -1654,12 +2967,40 @@ export declare class DescribeVerifyResultResponseBodyMaterial extends $tea.Model
|
|
|
1654
2967
|
});
|
|
1655
2968
|
}
|
|
1656
2969
|
export declare class DescribeVerifyTokenResponseBodyOssUploadToken extends $tea.Model {
|
|
2970
|
+
/**
|
|
2971
|
+
* @example
|
|
2972
|
+
* cloudauth-zhangjiakou-external
|
|
2973
|
+
*/
|
|
1657
2974
|
bucket?: string;
|
|
2975
|
+
/**
|
|
2976
|
+
* @example
|
|
2977
|
+
* https://oss-cn-zhangjiakou.aliyuncs.com
|
|
2978
|
+
*/
|
|
1658
2979
|
endPoint?: string;
|
|
2980
|
+
/**
|
|
2981
|
+
* @example
|
|
2982
|
+
* 1582636610000
|
|
2983
|
+
*/
|
|
1659
2984
|
expired?: number;
|
|
2985
|
+
/**
|
|
2986
|
+
* @example
|
|
2987
|
+
* STS.NU8rUBj****
|
|
2988
|
+
*/
|
|
1660
2989
|
key?: string;
|
|
2990
|
+
/**
|
|
2991
|
+
* @example
|
|
2992
|
+
* prod/RdNLC@Ox2n-1s7NMt
|
|
2993
|
+
*/
|
|
1661
2994
|
path?: string;
|
|
2995
|
+
/**
|
|
2996
|
+
* @example
|
|
2997
|
+
* FwmnyoqT8dHj7nJLuM67T****
|
|
2998
|
+
*/
|
|
1662
2999
|
secret?: string;
|
|
3000
|
+
/**
|
|
3001
|
+
* @example
|
|
3002
|
+
* uWia500nTS5knZaDzq4/KqpvhcLnO****
|
|
3003
|
+
*/
|
|
1663
3004
|
token?: string;
|
|
1664
3005
|
static names(): {
|
|
1665
3006
|
[key: string]: string;
|
|
@@ -1672,8 +3013,20 @@ export declare class DescribeVerifyTokenResponseBodyOssUploadToken extends $tea.
|
|
|
1672
3013
|
});
|
|
1673
3014
|
}
|
|
1674
3015
|
export declare class DetectFaceAttributesResponseBodyDataFaceInfosFaceAttributesDetectInfoFaceAttributesHeadpose extends $tea.Model {
|
|
3016
|
+
/**
|
|
3017
|
+
* @example
|
|
3018
|
+
* -1.5683923959732056
|
|
3019
|
+
*/
|
|
1675
3020
|
pitchAngle?: number;
|
|
3021
|
+
/**
|
|
3022
|
+
* @example
|
|
3023
|
+
* 7.163370132446289
|
|
3024
|
+
*/
|
|
1676
3025
|
rollAngle?: number;
|
|
3026
|
+
/**
|
|
3027
|
+
* @example
|
|
3028
|
+
* -6.925303936004639
|
|
3029
|
+
*/
|
|
1677
3030
|
yawAngle?: number;
|
|
1678
3031
|
static names(): {
|
|
1679
3032
|
[key: string]: string;
|
|
@@ -1686,7 +3039,15 @@ export declare class DetectFaceAttributesResponseBodyDataFaceInfosFaceAttributes
|
|
|
1686
3039
|
});
|
|
1687
3040
|
}
|
|
1688
3041
|
export declare class DetectFaceAttributesResponseBodyDataFaceInfosFaceAttributesDetectInfoFaceAttributesSmiling extends $tea.Model {
|
|
3042
|
+
/**
|
|
3043
|
+
* @example
|
|
3044
|
+
* 95
|
|
3045
|
+
*/
|
|
1689
3046
|
threshold?: number;
|
|
3047
|
+
/**
|
|
3048
|
+
* @example
|
|
3049
|
+
* 97
|
|
3050
|
+
*/
|
|
1690
3051
|
value?: number;
|
|
1691
3052
|
static names(): {
|
|
1692
3053
|
[key: string]: string;
|
|
@@ -1699,12 +3060,36 @@ export declare class DetectFaceAttributesResponseBodyDataFaceInfosFaceAttributes
|
|
|
1699
3060
|
});
|
|
1700
3061
|
}
|
|
1701
3062
|
export declare class DetectFaceAttributesResponseBodyDataFaceInfosFaceAttributesDetectInfoFaceAttributes extends $tea.Model {
|
|
3063
|
+
/**
|
|
3064
|
+
* @example
|
|
3065
|
+
* 0.1419367790222168
|
|
3066
|
+
*/
|
|
1702
3067
|
blur?: number;
|
|
3068
|
+
/**
|
|
3069
|
+
* @example
|
|
3070
|
+
* 60
|
|
3071
|
+
*/
|
|
1703
3072
|
facequal?: number;
|
|
3073
|
+
/**
|
|
3074
|
+
* @example
|
|
3075
|
+
* Face
|
|
3076
|
+
*/
|
|
1704
3077
|
facetype?: string;
|
|
3078
|
+
/**
|
|
3079
|
+
* @example
|
|
3080
|
+
* None
|
|
3081
|
+
*/
|
|
1705
3082
|
glasses?: string;
|
|
1706
3083
|
headpose?: DetectFaceAttributesResponseBodyDataFaceInfosFaceAttributesDetectInfoFaceAttributesHeadpose;
|
|
3084
|
+
/**
|
|
3085
|
+
* @example
|
|
3086
|
+
* 70
|
|
3087
|
+
*/
|
|
1707
3088
|
integrity?: number;
|
|
3089
|
+
/**
|
|
3090
|
+
* @example
|
|
3091
|
+
* Wear
|
|
3092
|
+
*/
|
|
1708
3093
|
respirator?: string;
|
|
1709
3094
|
smiling?: DetectFaceAttributesResponseBodyDataFaceInfosFaceAttributesDetectInfoFaceAttributesSmiling;
|
|
1710
3095
|
static names(): {
|
|
@@ -1718,9 +3103,25 @@ export declare class DetectFaceAttributesResponseBodyDataFaceInfosFaceAttributes
|
|
|
1718
3103
|
});
|
|
1719
3104
|
}
|
|
1720
3105
|
export declare class DetectFaceAttributesResponseBodyDataFaceInfosFaceAttributesDetectInfoFaceRect extends $tea.Model {
|
|
3106
|
+
/**
|
|
3107
|
+
* @example
|
|
3108
|
+
* 473
|
|
3109
|
+
*/
|
|
1721
3110
|
height?: number;
|
|
3111
|
+
/**
|
|
3112
|
+
* @example
|
|
3113
|
+
* 354
|
|
3114
|
+
*/
|
|
1722
3115
|
left?: number;
|
|
3116
|
+
/**
|
|
3117
|
+
* @example
|
|
3118
|
+
* 453
|
|
3119
|
+
*/
|
|
1723
3120
|
top?: number;
|
|
3121
|
+
/**
|
|
3122
|
+
* @example
|
|
3123
|
+
* 473
|
|
3124
|
+
*/
|
|
1724
3125
|
width?: number;
|
|
1725
3126
|
static names(): {
|
|
1726
3127
|
[key: string]: string;
|
|
@@ -1759,7 +3160,15 @@ export declare class DetectFaceAttributesResponseBodyDataFaceInfos extends $tea.
|
|
|
1759
3160
|
}
|
|
1760
3161
|
export declare class DetectFaceAttributesResponseBodyData extends $tea.Model {
|
|
1761
3162
|
faceInfos?: DetectFaceAttributesResponseBodyDataFaceInfos;
|
|
3163
|
+
/**
|
|
3164
|
+
* @example
|
|
3165
|
+
* 1920
|
|
3166
|
+
*/
|
|
1762
3167
|
imgHeight?: number;
|
|
3168
|
+
/**
|
|
3169
|
+
* @example
|
|
3170
|
+
* 1080
|
|
3171
|
+
*/
|
|
1763
3172
|
imgWidth?: number;
|
|
1764
3173
|
static names(): {
|
|
1765
3174
|
[key: string]: string;
|
|
@@ -1772,6 +3181,10 @@ export declare class DetectFaceAttributesResponseBodyData extends $tea.Model {
|
|
|
1772
3181
|
});
|
|
1773
3182
|
}
|
|
1774
3183
|
export declare class Id2MetaVerifyResponseBodyResultObject extends $tea.Model {
|
|
3184
|
+
/**
|
|
3185
|
+
* @example
|
|
3186
|
+
* 1
|
|
3187
|
+
*/
|
|
1775
3188
|
bizCode?: string;
|
|
1776
3189
|
static names(): {
|
|
1777
3190
|
[key: string]: string;
|
|
@@ -1784,6 +3197,10 @@ export declare class Id2MetaVerifyResponseBodyResultObject extends $tea.Model {
|
|
|
1784
3197
|
});
|
|
1785
3198
|
}
|
|
1786
3199
|
export declare class InitFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
3200
|
+
/**
|
|
3201
|
+
* @example
|
|
3202
|
+
* 91707dc296d469ad38e4c5efa6a0f24b
|
|
3203
|
+
*/
|
|
1787
3204
|
certifyId?: string;
|
|
1788
3205
|
certifyUrl?: string;
|
|
1789
3206
|
static names(): {
|
|
@@ -1812,8 +3229,20 @@ export declare class LivenessFaceVerifyResponseBodyResultObject extends $tea.Mod
|
|
|
1812
3229
|
});
|
|
1813
3230
|
}
|
|
1814
3231
|
export declare class Mobile3MetaDetailVerifyResponseBodyResultObject extends $tea.Model {
|
|
3232
|
+
/**
|
|
3233
|
+
* @example
|
|
3234
|
+
* 1
|
|
3235
|
+
*/
|
|
1815
3236
|
bizCode?: string;
|
|
3237
|
+
/**
|
|
3238
|
+
* @example
|
|
3239
|
+
* CMCC
|
|
3240
|
+
*/
|
|
1816
3241
|
ispName?: string;
|
|
3242
|
+
/**
|
|
3243
|
+
* @example
|
|
3244
|
+
* 101
|
|
3245
|
+
*/
|
|
1817
3246
|
subCode?: string;
|
|
1818
3247
|
static names(): {
|
|
1819
3248
|
[key: string]: string;
|
|
@@ -1826,7 +3255,15 @@ export declare class Mobile3MetaDetailVerifyResponseBodyResultObject extends $te
|
|
|
1826
3255
|
});
|
|
1827
3256
|
}
|
|
1828
3257
|
export declare class Mobile3MetaSimpleVerifyResponseBodyResultObject extends $tea.Model {
|
|
3258
|
+
/**
|
|
3259
|
+
* @example
|
|
3260
|
+
* 1
|
|
3261
|
+
*/
|
|
1829
3262
|
bizCode?: string;
|
|
3263
|
+
/**
|
|
3264
|
+
* @example
|
|
3265
|
+
* CMCC
|
|
3266
|
+
*/
|
|
1830
3267
|
ispName?: string;
|
|
1831
3268
|
static names(): {
|
|
1832
3269
|
[key: string]: string;
|
|
@@ -1840,9 +3277,25 @@ export declare class Mobile3MetaSimpleVerifyResponseBodyResultObject extends $te
|
|
|
1840
3277
|
}
|
|
1841
3278
|
export declare class MobileDetectResponseBodyResultObjectItems extends $tea.Model {
|
|
1842
3279
|
area?: string;
|
|
3280
|
+
/**
|
|
3281
|
+
* @example
|
|
3282
|
+
* 1
|
|
3283
|
+
*/
|
|
1843
3284
|
bizCode?: string;
|
|
3285
|
+
/**
|
|
3286
|
+
* @example
|
|
3287
|
+
* CMCC
|
|
3288
|
+
*/
|
|
1844
3289
|
ispName?: string;
|
|
3290
|
+
/**
|
|
3291
|
+
* @example
|
|
3292
|
+
* 131********
|
|
3293
|
+
*/
|
|
1845
3294
|
mobile?: string;
|
|
3295
|
+
/**
|
|
3296
|
+
* @example
|
|
3297
|
+
* 101
|
|
3298
|
+
*/
|
|
1846
3299
|
subCode?: string;
|
|
1847
3300
|
static names(): {
|
|
1848
3301
|
[key: string]: string;
|
|
@@ -1855,6 +3308,10 @@ export declare class MobileDetectResponseBodyResultObjectItems extends $tea.Mode
|
|
|
1855
3308
|
});
|
|
1856
3309
|
}
|
|
1857
3310
|
export declare class MobileDetectResponseBodyResultObject extends $tea.Model {
|
|
3311
|
+
/**
|
|
3312
|
+
* @example
|
|
3313
|
+
* 2
|
|
3314
|
+
*/
|
|
1858
3315
|
chargeCount?: string;
|
|
1859
3316
|
items?: MobileDetectResponseBodyResultObjectItems[];
|
|
1860
3317
|
static names(): {
|
|
@@ -1868,8 +3325,20 @@ export declare class MobileDetectResponseBodyResultObject extends $tea.Model {
|
|
|
1868
3325
|
});
|
|
1869
3326
|
}
|
|
1870
3327
|
export declare class MobileOnlineStatusResponseBodyResultObject extends $tea.Model {
|
|
3328
|
+
/**
|
|
3329
|
+
* @example
|
|
3330
|
+
* 1
|
|
3331
|
+
*/
|
|
1871
3332
|
bizCode?: string;
|
|
3333
|
+
/**
|
|
3334
|
+
* @example
|
|
3335
|
+
* CMCC
|
|
3336
|
+
*/
|
|
1872
3337
|
ispName?: string;
|
|
3338
|
+
/**
|
|
3339
|
+
* @example
|
|
3340
|
+
* 101
|
|
3341
|
+
*/
|
|
1873
3342
|
subCode?: string;
|
|
1874
3343
|
static names(): {
|
|
1875
3344
|
[key: string]: string;
|
|
@@ -1882,8 +3351,20 @@ export declare class MobileOnlineStatusResponseBodyResultObject extends $tea.Mod
|
|
|
1882
3351
|
});
|
|
1883
3352
|
}
|
|
1884
3353
|
export declare class MobileOnlineTimeResponseBodyResultObject extends $tea.Model {
|
|
3354
|
+
/**
|
|
3355
|
+
* @example
|
|
3356
|
+
* 1
|
|
3357
|
+
*/
|
|
1885
3358
|
bizCode?: string;
|
|
3359
|
+
/**
|
|
3360
|
+
* @example
|
|
3361
|
+
* CMCC
|
|
3362
|
+
*/
|
|
1886
3363
|
ispName?: string;
|
|
3364
|
+
/**
|
|
3365
|
+
* @example
|
|
3366
|
+
* 5
|
|
3367
|
+
*/
|
|
1887
3368
|
timeCode?: string;
|
|
1888
3369
|
static names(): {
|
|
1889
3370
|
[key: string]: string;
|
|
@@ -1898,13 +3379,37 @@ export declare class MobileOnlineTimeResponseBodyResultObject extends $tea.Model
|
|
|
1898
3379
|
export declare class VerifyMaterialResponseBodyMaterialIdCardInfo extends $tea.Model {
|
|
1899
3380
|
address?: string;
|
|
1900
3381
|
authority?: string;
|
|
3382
|
+
/**
|
|
3383
|
+
* @example
|
|
3384
|
+
* http://image-demo.img-cn-hangzhou.aliyuncs.com/example3.jpg
|
|
3385
|
+
*/
|
|
1901
3386
|
backImageUrl?: string;
|
|
3387
|
+
/**
|
|
3388
|
+
* @example
|
|
3389
|
+
* 19900101
|
|
3390
|
+
*/
|
|
1902
3391
|
birth?: string;
|
|
3392
|
+
/**
|
|
3393
|
+
* @example
|
|
3394
|
+
* 20201101
|
|
3395
|
+
*/
|
|
1903
3396
|
endDate?: string;
|
|
3397
|
+
/**
|
|
3398
|
+
* @example
|
|
3399
|
+
* http://image-demo.img-cn-hangzhou.aliyuncs.com/example2.jpg
|
|
3400
|
+
*/
|
|
1904
3401
|
frontImageUrl?: string;
|
|
1905
3402
|
name?: string;
|
|
1906
3403
|
nationality?: string;
|
|
3404
|
+
/**
|
|
3405
|
+
* @example
|
|
3406
|
+
* 02343218901123****
|
|
3407
|
+
*/
|
|
1907
3408
|
number?: string;
|
|
3409
|
+
/**
|
|
3410
|
+
* @example
|
|
3411
|
+
* 20201101
|
|
3412
|
+
*/
|
|
1908
3413
|
startDate?: string;
|
|
1909
3414
|
static names(): {
|
|
1910
3415
|
[key: string]: string;
|
|
@@ -1917,12 +3422,32 @@ export declare class VerifyMaterialResponseBodyMaterialIdCardInfo extends $tea.M
|
|
|
1917
3422
|
});
|
|
1918
3423
|
}
|
|
1919
3424
|
export declare class VerifyMaterialResponseBodyMaterial extends $tea.Model {
|
|
3425
|
+
/**
|
|
3426
|
+
* @example
|
|
3427
|
+
* http://image-demo.img-cn-hangzhou.aliyuncs.com/face-global-example.jpg
|
|
3428
|
+
*/
|
|
1920
3429
|
faceGlobalUrl?: string;
|
|
3430
|
+
/**
|
|
3431
|
+
* @example
|
|
3432
|
+
* http://image-demo.img-cn-hangzhou.aliyuncs.com/example.jpg
|
|
3433
|
+
*/
|
|
1921
3434
|
faceImageUrl?: string;
|
|
3435
|
+
/**
|
|
3436
|
+
* @example
|
|
3437
|
+
* false
|
|
3438
|
+
*/
|
|
1922
3439
|
faceMask?: string;
|
|
3440
|
+
/**
|
|
3441
|
+
* @example
|
|
3442
|
+
* NORMAL
|
|
3443
|
+
*/
|
|
1923
3444
|
faceQuality?: string;
|
|
1924
3445
|
idCardInfo?: VerifyMaterialResponseBodyMaterialIdCardInfo;
|
|
1925
3446
|
idCardName?: string;
|
|
3447
|
+
/**
|
|
3448
|
+
* @example
|
|
3449
|
+
* 02343218901123****
|
|
3450
|
+
*/
|
|
1926
3451
|
idCardNumber?: string;
|
|
1927
3452
|
static names(): {
|
|
1928
3453
|
[key: string]: string;
|
|
@@ -1940,355 +3465,355 @@ export default class Client extends OpenApi {
|
|
|
1940
3465
|
[key: string]: string;
|
|
1941
3466
|
}, endpoint: string): string;
|
|
1942
3467
|
/**
|
|
1943
|
-
*
|
|
3468
|
+
* 新增AIGC人脸检测能力
|
|
1944
3469
|
*
|
|
1945
|
-
* @param request AIGCFaceVerifyRequest
|
|
1946
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1947
|
-
* @
|
|
3470
|
+
* @param request - AIGCFaceVerifyRequest
|
|
3471
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3472
|
+
* @returns AIGCFaceVerifyResponse
|
|
1948
3473
|
*/
|
|
1949
3474
|
aIGCFaceVerifyWithOptions(request: AIGCFaceVerifyRequest, runtime: $Util.RuntimeOptions): Promise<AIGCFaceVerifyResponse>;
|
|
1950
3475
|
/**
|
|
1951
|
-
*
|
|
3476
|
+
* 新增AIGC人脸检测能力
|
|
1952
3477
|
*
|
|
1953
|
-
* @param request AIGCFaceVerifyRequest
|
|
1954
|
-
* @
|
|
3478
|
+
* @param request - AIGCFaceVerifyRequest
|
|
3479
|
+
* @returns AIGCFaceVerifyResponse
|
|
1955
3480
|
*/
|
|
1956
3481
|
aIGCFaceVerify(request: AIGCFaceVerifyRequest): Promise<AIGCFaceVerifyResponse>;
|
|
1957
3482
|
/**
|
|
1958
|
-
*
|
|
3483
|
+
* 银行卡要素核验接口
|
|
1959
3484
|
*
|
|
1960
|
-
* @param request BankMetaVerifyRequest
|
|
1961
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1962
|
-
* @
|
|
3485
|
+
* @param request - BankMetaVerifyRequest
|
|
3486
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3487
|
+
* @returns BankMetaVerifyResponse
|
|
1963
3488
|
*/
|
|
1964
3489
|
bankMetaVerifyWithOptions(request: BankMetaVerifyRequest, runtime: $Util.RuntimeOptions): Promise<BankMetaVerifyResponse>;
|
|
1965
3490
|
/**
|
|
1966
|
-
*
|
|
3491
|
+
* 银行卡要素核验接口
|
|
1967
3492
|
*
|
|
1968
|
-
* @param request BankMetaVerifyRequest
|
|
1969
|
-
* @
|
|
3493
|
+
* @param request - BankMetaVerifyRequest
|
|
3494
|
+
* @returns BankMetaVerifyResponse
|
|
1970
3495
|
*/
|
|
1971
3496
|
bankMetaVerify(request: BankMetaVerifyRequest): Promise<BankMetaVerifyResponse>;
|
|
1972
3497
|
/**
|
|
1973
|
-
* @param request CompareFaceVerifyRequest
|
|
1974
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1975
|
-
* @
|
|
3498
|
+
* @param request - CompareFaceVerifyRequest
|
|
3499
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3500
|
+
* @returns CompareFaceVerifyResponse
|
|
1976
3501
|
*/
|
|
1977
3502
|
compareFaceVerifyWithOptions(request: CompareFaceVerifyRequest, runtime: $Util.RuntimeOptions): Promise<CompareFaceVerifyResponse>;
|
|
1978
3503
|
/**
|
|
1979
|
-
* @param request CompareFaceVerifyRequest
|
|
1980
|
-
* @
|
|
3504
|
+
* @param request - CompareFaceVerifyRequest
|
|
3505
|
+
* @returns CompareFaceVerifyResponse
|
|
1981
3506
|
*/
|
|
1982
3507
|
compareFaceVerify(request: CompareFaceVerifyRequest): Promise<CompareFaceVerifyResponse>;
|
|
1983
3508
|
/**
|
|
1984
|
-
* @param request CompareFacesRequest
|
|
1985
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1986
|
-
* @
|
|
3509
|
+
* @param request - CompareFacesRequest
|
|
3510
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3511
|
+
* @returns CompareFacesResponse
|
|
1987
3512
|
*/
|
|
1988
3513
|
compareFacesWithOptions(request: CompareFacesRequest, runtime: $Util.RuntimeOptions): Promise<CompareFacesResponse>;
|
|
1989
3514
|
/**
|
|
1990
|
-
* @param request CompareFacesRequest
|
|
1991
|
-
* @
|
|
3515
|
+
* @param request - CompareFacesRequest
|
|
3516
|
+
* @returns CompareFacesResponse
|
|
1992
3517
|
*/
|
|
1993
3518
|
compareFaces(request: CompareFacesRequest): Promise<CompareFacesResponse>;
|
|
1994
3519
|
/**
|
|
1995
|
-
* @param request ContrastFaceVerifyRequest
|
|
1996
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1997
|
-
* @
|
|
3520
|
+
* @param request - ContrastFaceVerifyRequest
|
|
3521
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3522
|
+
* @returns ContrastFaceVerifyResponse
|
|
1998
3523
|
*/
|
|
1999
3524
|
contrastFaceVerifyWithOptions(request: ContrastFaceVerifyRequest, runtime: $Util.RuntimeOptions): Promise<ContrastFaceVerifyResponse>;
|
|
2000
3525
|
/**
|
|
2001
|
-
* @param request ContrastFaceVerifyRequest
|
|
2002
|
-
* @
|
|
3526
|
+
* @param request - ContrastFaceVerifyRequest
|
|
3527
|
+
* @returns ContrastFaceVerifyResponse
|
|
2003
3528
|
*/
|
|
2004
3529
|
contrastFaceVerify(request: ContrastFaceVerifyRequest): Promise<ContrastFaceVerifyResponse>;
|
|
2005
3530
|
contrastFaceVerifyAdvance(request: ContrastFaceVerifyAdvanceRequest, runtime: $Util.RuntimeOptions): Promise<ContrastFaceVerifyResponse>;
|
|
2006
3531
|
/**
|
|
2007
|
-
* @param request CreateAuthKeyRequest
|
|
2008
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2009
|
-
* @
|
|
3532
|
+
* @param request - CreateAuthKeyRequest
|
|
3533
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3534
|
+
* @returns CreateAuthKeyResponse
|
|
2010
3535
|
*/
|
|
2011
3536
|
createAuthKeyWithOptions(request: CreateAuthKeyRequest, runtime: $Util.RuntimeOptions): Promise<CreateAuthKeyResponse>;
|
|
2012
3537
|
/**
|
|
2013
|
-
* @param request CreateAuthKeyRequest
|
|
2014
|
-
* @
|
|
3538
|
+
* @param request - CreateAuthKeyRequest
|
|
3539
|
+
* @returns CreateAuthKeyResponse
|
|
2015
3540
|
*/
|
|
2016
3541
|
createAuthKey(request: CreateAuthKeyRequest): Promise<CreateAuthKeyResponse>;
|
|
2017
3542
|
/**
|
|
2018
|
-
* @param request CreateVerifySettingRequest
|
|
2019
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2020
|
-
* @
|
|
3543
|
+
* @param request - CreateVerifySettingRequest
|
|
3544
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3545
|
+
* @returns CreateVerifySettingResponse
|
|
2021
3546
|
*/
|
|
2022
3547
|
createVerifySettingWithOptions(request: CreateVerifySettingRequest, runtime: $Util.RuntimeOptions): Promise<CreateVerifySettingResponse>;
|
|
2023
3548
|
/**
|
|
2024
|
-
* @param request CreateVerifySettingRequest
|
|
2025
|
-
* @
|
|
3549
|
+
* @param request - CreateVerifySettingRequest
|
|
3550
|
+
* @returns CreateVerifySettingResponse
|
|
2026
3551
|
*/
|
|
2027
3552
|
createVerifySetting(request: CreateVerifySettingRequest): Promise<CreateVerifySettingResponse>;
|
|
2028
3553
|
/**
|
|
2029
|
-
*
|
|
3554
|
+
* 凭证核验
|
|
2030
3555
|
*
|
|
2031
|
-
* @param request CredentialVerifyRequest
|
|
2032
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2033
|
-
* @
|
|
3556
|
+
* @param request - CredentialVerifyRequest
|
|
3557
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3558
|
+
* @returns CredentialVerifyResponse
|
|
2034
3559
|
*/
|
|
2035
3560
|
credentialVerifyWithOptions(request: CredentialVerifyRequest, runtime: $Util.RuntimeOptions): Promise<CredentialVerifyResponse>;
|
|
2036
3561
|
/**
|
|
2037
|
-
*
|
|
3562
|
+
* 凭证核验
|
|
2038
3563
|
*
|
|
2039
|
-
* @param request CredentialVerifyRequest
|
|
2040
|
-
* @
|
|
3564
|
+
* @param request - CredentialVerifyRequest
|
|
3565
|
+
* @returns CredentialVerifyResponse
|
|
2041
3566
|
*/
|
|
2042
3567
|
credentialVerify(request: CredentialVerifyRequest): Promise<CredentialVerifyResponse>;
|
|
2043
3568
|
/**
|
|
2044
|
-
*
|
|
3569
|
+
* 人脸凭证核验服务
|
|
2045
3570
|
*
|
|
2046
|
-
* @param request DeepfakeDetectRequest
|
|
2047
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2048
|
-
* @
|
|
3571
|
+
* @param request - DeepfakeDetectRequest
|
|
3572
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3573
|
+
* @returns DeepfakeDetectResponse
|
|
2049
3574
|
*/
|
|
2050
3575
|
deepfakeDetectWithOptions(request: DeepfakeDetectRequest, runtime: $Util.RuntimeOptions): Promise<DeepfakeDetectResponse>;
|
|
2051
3576
|
/**
|
|
2052
|
-
*
|
|
3577
|
+
* 人脸凭证核验服务
|
|
2053
3578
|
*
|
|
2054
|
-
* @param request DeepfakeDetectRequest
|
|
2055
|
-
* @
|
|
3579
|
+
* @param request - DeepfakeDetectRequest
|
|
3580
|
+
* @returns DeepfakeDetectResponse
|
|
2056
3581
|
*/
|
|
2057
3582
|
deepfakeDetect(request: DeepfakeDetectRequest): Promise<DeepfakeDetectResponse>;
|
|
2058
3583
|
/**
|
|
2059
|
-
* @param request DescribeDeviceInfoRequest
|
|
2060
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2061
|
-
* @
|
|
3584
|
+
* @param request - DescribeDeviceInfoRequest
|
|
3585
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3586
|
+
* @returns DescribeDeviceInfoResponse
|
|
2062
3587
|
*/
|
|
2063
3588
|
describeDeviceInfoWithOptions(request: DescribeDeviceInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDeviceInfoResponse>;
|
|
2064
3589
|
/**
|
|
2065
|
-
* @param request DescribeDeviceInfoRequest
|
|
2066
|
-
* @
|
|
3590
|
+
* @param request - DescribeDeviceInfoRequest
|
|
3591
|
+
* @returns DescribeDeviceInfoResponse
|
|
2067
3592
|
*/
|
|
2068
3593
|
describeDeviceInfo(request: DescribeDeviceInfoRequest): Promise<DescribeDeviceInfoResponse>;
|
|
2069
3594
|
/**
|
|
2070
|
-
* @param request DescribeFaceVerifyRequest
|
|
2071
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2072
|
-
* @
|
|
3595
|
+
* @param request - DescribeFaceVerifyRequest
|
|
3596
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3597
|
+
* @returns DescribeFaceVerifyResponse
|
|
2073
3598
|
*/
|
|
2074
3599
|
describeFaceVerifyWithOptions(request: DescribeFaceVerifyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeFaceVerifyResponse>;
|
|
2075
3600
|
/**
|
|
2076
|
-
* @param request DescribeFaceVerifyRequest
|
|
2077
|
-
* @
|
|
3601
|
+
* @param request - DescribeFaceVerifyRequest
|
|
3602
|
+
* @returns DescribeFaceVerifyResponse
|
|
2078
3603
|
*/
|
|
2079
3604
|
describeFaceVerify(request: DescribeFaceVerifyRequest): Promise<DescribeFaceVerifyResponse>;
|
|
2080
3605
|
/**
|
|
2081
|
-
* @param request DescribeOssUploadTokenRequest
|
|
2082
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2083
|
-
* @
|
|
3606
|
+
* @param request - DescribeOssUploadTokenRequest
|
|
3607
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3608
|
+
* @returns DescribeOssUploadTokenResponse
|
|
2084
3609
|
*/
|
|
2085
3610
|
describeOssUploadTokenWithOptions(runtime: $Util.RuntimeOptions): Promise<DescribeOssUploadTokenResponse>;
|
|
2086
3611
|
/**
|
|
2087
|
-
* @
|
|
3612
|
+
* @returns DescribeOssUploadTokenResponse
|
|
2088
3613
|
*/
|
|
2089
3614
|
describeOssUploadToken(): Promise<DescribeOssUploadTokenResponse>;
|
|
2090
3615
|
/**
|
|
2091
|
-
*
|
|
3616
|
+
* Open API新增金融级数据统计API
|
|
2092
3617
|
*
|
|
2093
|
-
* @param request DescribePageFaceVerifyDataRequest
|
|
2094
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2095
|
-
* @
|
|
3618
|
+
* @param request - DescribePageFaceVerifyDataRequest
|
|
3619
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3620
|
+
* @returns DescribePageFaceVerifyDataResponse
|
|
2096
3621
|
*/
|
|
2097
3622
|
describePageFaceVerifyDataWithOptions(request: DescribePageFaceVerifyDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribePageFaceVerifyDataResponse>;
|
|
2098
3623
|
/**
|
|
2099
|
-
*
|
|
3624
|
+
* Open API新增金融级数据统计API
|
|
2100
3625
|
*
|
|
2101
|
-
* @param request DescribePageFaceVerifyDataRequest
|
|
2102
|
-
* @
|
|
3626
|
+
* @param request - DescribePageFaceVerifyDataRequest
|
|
3627
|
+
* @returns DescribePageFaceVerifyDataResponse
|
|
2103
3628
|
*/
|
|
2104
3629
|
describePageFaceVerifyData(request: DescribePageFaceVerifyDataRequest): Promise<DescribePageFaceVerifyDataResponse>;
|
|
2105
3630
|
/**
|
|
2106
|
-
* @param request DescribeSmartStatisticsPageListRequest
|
|
2107
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2108
|
-
* @
|
|
3631
|
+
* @param request - DescribeSmartStatisticsPageListRequest
|
|
3632
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3633
|
+
* @returns DescribeSmartStatisticsPageListResponse
|
|
2109
3634
|
*/
|
|
2110
3635
|
describeSmartStatisticsPageListWithOptions(request: DescribeSmartStatisticsPageListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSmartStatisticsPageListResponse>;
|
|
2111
3636
|
/**
|
|
2112
|
-
* @param request DescribeSmartStatisticsPageListRequest
|
|
2113
|
-
* @
|
|
3637
|
+
* @param request - DescribeSmartStatisticsPageListRequest
|
|
3638
|
+
* @returns DescribeSmartStatisticsPageListResponse
|
|
2114
3639
|
*/
|
|
2115
3640
|
describeSmartStatisticsPageList(request: DescribeSmartStatisticsPageListRequest): Promise<DescribeSmartStatisticsPageListResponse>;
|
|
2116
3641
|
/**
|
|
2117
|
-
* @param request DescribeVerifyResultRequest
|
|
2118
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2119
|
-
* @
|
|
3642
|
+
* @param request - DescribeVerifyResultRequest
|
|
3643
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3644
|
+
* @returns DescribeVerifyResultResponse
|
|
2120
3645
|
*/
|
|
2121
3646
|
describeVerifyResultWithOptions(request: DescribeVerifyResultRequest, runtime: $Util.RuntimeOptions): Promise<DescribeVerifyResultResponse>;
|
|
2122
3647
|
/**
|
|
2123
|
-
* @param request DescribeVerifyResultRequest
|
|
2124
|
-
* @
|
|
3648
|
+
* @param request - DescribeVerifyResultRequest
|
|
3649
|
+
* @returns DescribeVerifyResultResponse
|
|
2125
3650
|
*/
|
|
2126
3651
|
describeVerifyResult(request: DescribeVerifyResultRequest): Promise<DescribeVerifyResultResponse>;
|
|
2127
3652
|
/**
|
|
2128
|
-
* @param request DescribeVerifySDKRequest
|
|
2129
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2130
|
-
* @
|
|
3653
|
+
* @param request - DescribeVerifySDKRequest
|
|
3654
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3655
|
+
* @returns DescribeVerifySDKResponse
|
|
2131
3656
|
*/
|
|
2132
3657
|
describeVerifySDKWithOptions(request: DescribeVerifySDKRequest, runtime: $Util.RuntimeOptions): Promise<DescribeVerifySDKResponse>;
|
|
2133
3658
|
/**
|
|
2134
|
-
* @param request DescribeVerifySDKRequest
|
|
2135
|
-
* @
|
|
3659
|
+
* @param request - DescribeVerifySDKRequest
|
|
3660
|
+
* @returns DescribeVerifySDKResponse
|
|
2136
3661
|
*/
|
|
2137
3662
|
describeVerifySDK(request: DescribeVerifySDKRequest): Promise<DescribeVerifySDKResponse>;
|
|
2138
3663
|
/**
|
|
2139
|
-
* @param request DescribeVerifyTokenRequest
|
|
2140
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2141
|
-
* @
|
|
3664
|
+
* @param request - DescribeVerifyTokenRequest
|
|
3665
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3666
|
+
* @returns DescribeVerifyTokenResponse
|
|
2142
3667
|
*/
|
|
2143
3668
|
describeVerifyTokenWithOptions(request: DescribeVerifyTokenRequest, runtime: $Util.RuntimeOptions): Promise<DescribeVerifyTokenResponse>;
|
|
2144
3669
|
/**
|
|
2145
|
-
* @param request DescribeVerifyTokenRequest
|
|
2146
|
-
* @
|
|
3670
|
+
* @param request - DescribeVerifyTokenRequest
|
|
3671
|
+
* @returns DescribeVerifyTokenResponse
|
|
2147
3672
|
*/
|
|
2148
3673
|
describeVerifyToken(request: DescribeVerifyTokenRequest): Promise<DescribeVerifyTokenResponse>;
|
|
2149
3674
|
/**
|
|
2150
|
-
* @param request DetectFaceAttributesRequest
|
|
2151
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2152
|
-
* @
|
|
3675
|
+
* @param request - DetectFaceAttributesRequest
|
|
3676
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3677
|
+
* @returns DetectFaceAttributesResponse
|
|
2153
3678
|
*/
|
|
2154
3679
|
detectFaceAttributesWithOptions(request: DetectFaceAttributesRequest, runtime: $Util.RuntimeOptions): Promise<DetectFaceAttributesResponse>;
|
|
2155
3680
|
/**
|
|
2156
|
-
* @param request DetectFaceAttributesRequest
|
|
2157
|
-
* @
|
|
3681
|
+
* @param request - DetectFaceAttributesRequest
|
|
3682
|
+
* @returns DetectFaceAttributesResponse
|
|
2158
3683
|
*/
|
|
2159
3684
|
detectFaceAttributes(request: DetectFaceAttributesRequest): Promise<DetectFaceAttributesResponse>;
|
|
2160
3685
|
/**
|
|
2161
|
-
*
|
|
3686
|
+
* 身份二要素接口
|
|
2162
3687
|
*
|
|
2163
|
-
* @param request Id2MetaVerifyRequest
|
|
2164
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2165
|
-
* @
|
|
3688
|
+
* @param request - Id2MetaVerifyRequest
|
|
3689
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3690
|
+
* @returns Id2MetaVerifyResponse
|
|
2166
3691
|
*/
|
|
2167
3692
|
id2MetaVerifyWithOptions(request: Id2MetaVerifyRequest, runtime: $Util.RuntimeOptions): Promise<Id2MetaVerifyResponse>;
|
|
2168
3693
|
/**
|
|
2169
|
-
*
|
|
3694
|
+
* 身份二要素接口
|
|
2170
3695
|
*
|
|
2171
|
-
* @param request Id2MetaVerifyRequest
|
|
2172
|
-
* @
|
|
3696
|
+
* @param request - Id2MetaVerifyRequest
|
|
3697
|
+
* @returns Id2MetaVerifyResponse
|
|
2173
3698
|
*/
|
|
2174
3699
|
id2MetaVerify(request: Id2MetaVerifyRequest): Promise<Id2MetaVerifyResponse>;
|
|
2175
3700
|
/**
|
|
2176
|
-
* @param request InitFaceVerifyRequest
|
|
2177
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2178
|
-
* @
|
|
3701
|
+
* @param request - InitFaceVerifyRequest
|
|
3702
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3703
|
+
* @returns InitFaceVerifyResponse
|
|
2179
3704
|
*/
|
|
2180
3705
|
initFaceVerifyWithOptions(request: InitFaceVerifyRequest, runtime: $Util.RuntimeOptions): Promise<InitFaceVerifyResponse>;
|
|
2181
3706
|
/**
|
|
2182
|
-
* @param request InitFaceVerifyRequest
|
|
2183
|
-
* @
|
|
3707
|
+
* @param request - InitFaceVerifyRequest
|
|
3708
|
+
* @returns InitFaceVerifyResponse
|
|
2184
3709
|
*/
|
|
2185
3710
|
initFaceVerify(request: InitFaceVerifyRequest): Promise<InitFaceVerifyResponse>;
|
|
2186
3711
|
/**
|
|
2187
|
-
* @param request LivenessFaceVerifyRequest
|
|
2188
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2189
|
-
* @
|
|
3712
|
+
* @param request - LivenessFaceVerifyRequest
|
|
3713
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3714
|
+
* @returns LivenessFaceVerifyResponse
|
|
2190
3715
|
*/
|
|
2191
3716
|
livenessFaceVerifyWithOptions(request: LivenessFaceVerifyRequest, runtime: $Util.RuntimeOptions): Promise<LivenessFaceVerifyResponse>;
|
|
2192
3717
|
/**
|
|
2193
|
-
* @param request LivenessFaceVerifyRequest
|
|
2194
|
-
* @
|
|
3718
|
+
* @param request - LivenessFaceVerifyRequest
|
|
3719
|
+
* @returns LivenessFaceVerifyResponse
|
|
2195
3720
|
*/
|
|
2196
3721
|
livenessFaceVerify(request: LivenessFaceVerifyRequest): Promise<LivenessFaceVerifyResponse>;
|
|
2197
3722
|
/**
|
|
2198
|
-
*
|
|
3723
|
+
* 手机三要素详版接口
|
|
2199
3724
|
*
|
|
2200
|
-
* @param request Mobile3MetaDetailVerifyRequest
|
|
2201
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2202
|
-
* @
|
|
3725
|
+
* @param request - Mobile3MetaDetailVerifyRequest
|
|
3726
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3727
|
+
* @returns Mobile3MetaDetailVerifyResponse
|
|
2203
3728
|
*/
|
|
2204
3729
|
mobile3MetaDetailVerifyWithOptions(request: Mobile3MetaDetailVerifyRequest, runtime: $Util.RuntimeOptions): Promise<Mobile3MetaDetailVerifyResponse>;
|
|
2205
3730
|
/**
|
|
2206
|
-
*
|
|
3731
|
+
* 手机三要素详版接口
|
|
2207
3732
|
*
|
|
2208
|
-
* @param request Mobile3MetaDetailVerifyRequest
|
|
2209
|
-
* @
|
|
3733
|
+
* @param request - Mobile3MetaDetailVerifyRequest
|
|
3734
|
+
* @returns Mobile3MetaDetailVerifyResponse
|
|
2210
3735
|
*/
|
|
2211
3736
|
mobile3MetaDetailVerify(request: Mobile3MetaDetailVerifyRequest): Promise<Mobile3MetaDetailVerifyResponse>;
|
|
2212
3737
|
/**
|
|
2213
|
-
*
|
|
3738
|
+
* 手机号三要素简版接口
|
|
2214
3739
|
*
|
|
2215
|
-
* @param request Mobile3MetaSimpleVerifyRequest
|
|
2216
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2217
|
-
* @
|
|
3740
|
+
* @param request - Mobile3MetaSimpleVerifyRequest
|
|
3741
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3742
|
+
* @returns Mobile3MetaSimpleVerifyResponse
|
|
2218
3743
|
*/
|
|
2219
3744
|
mobile3MetaSimpleVerifyWithOptions(request: Mobile3MetaSimpleVerifyRequest, runtime: $Util.RuntimeOptions): Promise<Mobile3MetaSimpleVerifyResponse>;
|
|
2220
3745
|
/**
|
|
2221
|
-
*
|
|
3746
|
+
* 手机号三要素简版接口
|
|
2222
3747
|
*
|
|
2223
|
-
* @param request Mobile3MetaSimpleVerifyRequest
|
|
2224
|
-
* @
|
|
3748
|
+
* @param request - Mobile3MetaSimpleVerifyRequest
|
|
3749
|
+
* @returns Mobile3MetaSimpleVerifyResponse
|
|
2225
3750
|
*/
|
|
2226
3751
|
mobile3MetaSimpleVerify(request: Mobile3MetaSimpleVerifyRequest): Promise<Mobile3MetaSimpleVerifyResponse>;
|
|
2227
3752
|
/**
|
|
2228
|
-
*
|
|
3753
|
+
* 号码检测
|
|
2229
3754
|
*
|
|
2230
|
-
* @param request MobileDetectRequest
|
|
2231
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2232
|
-
* @
|
|
3755
|
+
* @param request - MobileDetectRequest
|
|
3756
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3757
|
+
* @returns MobileDetectResponse
|
|
2233
3758
|
*/
|
|
2234
3759
|
mobileDetectWithOptions(request: MobileDetectRequest, runtime: $Util.RuntimeOptions): Promise<MobileDetectResponse>;
|
|
2235
3760
|
/**
|
|
2236
|
-
*
|
|
3761
|
+
* 号码检测
|
|
2237
3762
|
*
|
|
2238
|
-
* @param request MobileDetectRequest
|
|
2239
|
-
* @
|
|
3763
|
+
* @param request - MobileDetectRequest
|
|
3764
|
+
* @returns MobileDetectResponse
|
|
2240
3765
|
*/
|
|
2241
3766
|
mobileDetect(request: MobileDetectRequest): Promise<MobileDetectResponse>;
|
|
2242
3767
|
/**
|
|
2243
|
-
*
|
|
3768
|
+
* 查询手机号在网状态
|
|
2244
3769
|
*
|
|
2245
|
-
* @param request MobileOnlineStatusRequest
|
|
2246
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2247
|
-
* @
|
|
3770
|
+
* @param request - MobileOnlineStatusRequest
|
|
3771
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3772
|
+
* @returns MobileOnlineStatusResponse
|
|
2248
3773
|
*/
|
|
2249
3774
|
mobileOnlineStatusWithOptions(request: MobileOnlineStatusRequest, runtime: $Util.RuntimeOptions): Promise<MobileOnlineStatusResponse>;
|
|
2250
3775
|
/**
|
|
2251
|
-
*
|
|
3776
|
+
* 查询手机号在网状态
|
|
2252
3777
|
*
|
|
2253
|
-
* @param request MobileOnlineStatusRequest
|
|
2254
|
-
* @
|
|
3778
|
+
* @param request - MobileOnlineStatusRequest
|
|
3779
|
+
* @returns MobileOnlineStatusResponse
|
|
2255
3780
|
*/
|
|
2256
3781
|
mobileOnlineStatus(request: MobileOnlineStatusRequest): Promise<MobileOnlineStatusResponse>;
|
|
2257
3782
|
/**
|
|
2258
|
-
*
|
|
3783
|
+
* 查询手机号在网时长
|
|
2259
3784
|
*
|
|
2260
|
-
* @param request MobileOnlineTimeRequest
|
|
2261
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2262
|
-
* @
|
|
3785
|
+
* @param request - MobileOnlineTimeRequest
|
|
3786
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3787
|
+
* @returns MobileOnlineTimeResponse
|
|
2263
3788
|
*/
|
|
2264
3789
|
mobileOnlineTimeWithOptions(request: MobileOnlineTimeRequest, runtime: $Util.RuntimeOptions): Promise<MobileOnlineTimeResponse>;
|
|
2265
3790
|
/**
|
|
2266
|
-
*
|
|
3791
|
+
* 查询手机号在网时长
|
|
2267
3792
|
*
|
|
2268
|
-
* @param request MobileOnlineTimeRequest
|
|
2269
|
-
* @
|
|
3793
|
+
* @param request - MobileOnlineTimeRequest
|
|
3794
|
+
* @returns MobileOnlineTimeResponse
|
|
2270
3795
|
*/
|
|
2271
3796
|
mobileOnlineTime(request: MobileOnlineTimeRequest): Promise<MobileOnlineTimeResponse>;
|
|
2272
3797
|
/**
|
|
2273
|
-
* @param request ModifyDeviceInfoRequest
|
|
2274
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2275
|
-
* @
|
|
3798
|
+
* @param request - ModifyDeviceInfoRequest
|
|
3799
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3800
|
+
* @returns ModifyDeviceInfoResponse
|
|
2276
3801
|
*/
|
|
2277
3802
|
modifyDeviceInfoWithOptions(request: ModifyDeviceInfoRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDeviceInfoResponse>;
|
|
2278
3803
|
/**
|
|
2279
|
-
* @param request ModifyDeviceInfoRequest
|
|
2280
|
-
* @
|
|
3804
|
+
* @param request - ModifyDeviceInfoRequest
|
|
3805
|
+
* @returns ModifyDeviceInfoResponse
|
|
2281
3806
|
*/
|
|
2282
3807
|
modifyDeviceInfo(request: ModifyDeviceInfoRequest): Promise<ModifyDeviceInfoResponse>;
|
|
2283
3808
|
/**
|
|
2284
|
-
* @param request VerifyMaterialRequest
|
|
2285
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2286
|
-
* @
|
|
3809
|
+
* @param request - VerifyMaterialRequest
|
|
3810
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3811
|
+
* @returns VerifyMaterialResponse
|
|
2287
3812
|
*/
|
|
2288
3813
|
verifyMaterialWithOptions(request: VerifyMaterialRequest, runtime: $Util.RuntimeOptions): Promise<VerifyMaterialResponse>;
|
|
2289
3814
|
/**
|
|
2290
|
-
* @param request VerifyMaterialRequest
|
|
2291
|
-
* @
|
|
3815
|
+
* @param request - VerifyMaterialRequest
|
|
3816
|
+
* @returns VerifyMaterialResponse
|
|
2292
3817
|
*/
|
|
2293
3818
|
verifyMaterial(request: VerifyMaterialRequest): Promise<VerifyMaterialResponse>;
|
|
2294
3819
|
}
|