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