@antchain/realperson 1.21.21 → 1.22.5
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 +713 -0
- package/dist/client.js +1269 -170
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1774 -114
package/dist/client.d.ts
CHANGED
|
@@ -98,6 +98,32 @@ export declare class AudioMeta extends $tea.Model {
|
|
|
98
98
|
[key: string]: any;
|
|
99
99
|
});
|
|
100
100
|
}
|
|
101
|
+
export declare class ShareRefundInfo extends $tea.Model {
|
|
102
|
+
merchantId?: string;
|
|
103
|
+
amount?: string;
|
|
104
|
+
static names(): {
|
|
105
|
+
[key: string]: string;
|
|
106
|
+
};
|
|
107
|
+
static types(): {
|
|
108
|
+
[key: string]: any;
|
|
109
|
+
};
|
|
110
|
+
constructor(map?: {
|
|
111
|
+
[key: string]: any;
|
|
112
|
+
});
|
|
113
|
+
}
|
|
114
|
+
export declare class ShareInfo extends $tea.Model {
|
|
115
|
+
merchantId?: string;
|
|
116
|
+
amount?: string;
|
|
117
|
+
static names(): {
|
|
118
|
+
[key: string]: string;
|
|
119
|
+
};
|
|
120
|
+
static types(): {
|
|
121
|
+
[key: string]: any;
|
|
122
|
+
};
|
|
123
|
+
constructor(map?: {
|
|
124
|
+
[key: string]: any;
|
|
125
|
+
});
|
|
126
|
+
}
|
|
101
127
|
export declare class Audio extends $tea.Model {
|
|
102
128
|
token?: string;
|
|
103
129
|
rawData?: string;
|
|
@@ -168,6 +194,70 @@ export declare class OcrInfo extends $tea.Model {
|
|
|
168
194
|
[key: string]: any;
|
|
169
195
|
});
|
|
170
196
|
}
|
|
197
|
+
export declare class CarInfoDetail extends $tea.Model {
|
|
198
|
+
clxh?: string;
|
|
199
|
+
engineCode?: string;
|
|
200
|
+
engineModel?: string;
|
|
201
|
+
productionTime?: string;
|
|
202
|
+
brandName?: string;
|
|
203
|
+
seriesName?: string;
|
|
204
|
+
modelYear?: string;
|
|
205
|
+
vehicleName?: string;
|
|
206
|
+
guidePrice?: string;
|
|
207
|
+
color?: string;
|
|
208
|
+
vehicleLevel?: string;
|
|
209
|
+
vehicleType?: string;
|
|
210
|
+
bodyStruct?: string;
|
|
211
|
+
fuelType?: string;
|
|
212
|
+
driveWay?: string;
|
|
213
|
+
chassisModel?: string;
|
|
214
|
+
emissionStandard?: string;
|
|
215
|
+
displacement?: string;
|
|
216
|
+
length?: string;
|
|
217
|
+
width?: string;
|
|
218
|
+
height?: string;
|
|
219
|
+
totalMass?: string;
|
|
220
|
+
curbWeight?: string;
|
|
221
|
+
tireDistanceBefore?: string;
|
|
222
|
+
tireDistanceAfter?: string;
|
|
223
|
+
axesNumber?: string;
|
|
224
|
+
wheelBase?: string;
|
|
225
|
+
seatingCapacity?: string;
|
|
226
|
+
approvedLoad?: string;
|
|
227
|
+
quasiTraction?: string;
|
|
228
|
+
tireSize?: string;
|
|
229
|
+
tireNumber?: string;
|
|
230
|
+
transmission?: string;
|
|
231
|
+
power?: string;
|
|
232
|
+
fuelConsumption?: string;
|
|
233
|
+
environmentalStandards?: string;
|
|
234
|
+
static names(): {
|
|
235
|
+
[key: string]: string;
|
|
236
|
+
};
|
|
237
|
+
static types(): {
|
|
238
|
+
[key: string]: any;
|
|
239
|
+
};
|
|
240
|
+
constructor(map?: {
|
|
241
|
+
[key: string]: any;
|
|
242
|
+
});
|
|
243
|
+
}
|
|
244
|
+
export declare class CarInfoBrief extends $tea.Model {
|
|
245
|
+
productionTime?: string;
|
|
246
|
+
brandName?: string;
|
|
247
|
+
seriesName?: string;
|
|
248
|
+
fuelType?: string;
|
|
249
|
+
axesNumber?: string;
|
|
250
|
+
wheelBase?: string;
|
|
251
|
+
static names(): {
|
|
252
|
+
[key: string]: string;
|
|
253
|
+
};
|
|
254
|
+
static types(): {
|
|
255
|
+
[key: string]: any;
|
|
256
|
+
};
|
|
257
|
+
constructor(map?: {
|
|
258
|
+
[key: string]: any;
|
|
259
|
+
});
|
|
260
|
+
}
|
|
171
261
|
export declare class XNameValuePair extends $tea.Model {
|
|
172
262
|
name: string;
|
|
173
263
|
value: string;
|
|
@@ -2161,6 +2251,473 @@ export declare class RecognizeOcrIndividualcardResponse extends $tea.Model {
|
|
|
2161
2251
|
[key: string]: any;
|
|
2162
2252
|
});
|
|
2163
2253
|
}
|
|
2254
|
+
export declare class CheckIdcardFourmetaRequest extends $tea.Model {
|
|
2255
|
+
authToken?: string;
|
|
2256
|
+
productInstanceId?: string;
|
|
2257
|
+
outerOrderNo: string;
|
|
2258
|
+
certName: string;
|
|
2259
|
+
certNo: string;
|
|
2260
|
+
beginDate: string;
|
|
2261
|
+
expiryDate: string;
|
|
2262
|
+
externParam?: string;
|
|
2263
|
+
static names(): {
|
|
2264
|
+
[key: string]: string;
|
|
2265
|
+
};
|
|
2266
|
+
static types(): {
|
|
2267
|
+
[key: string]: any;
|
|
2268
|
+
};
|
|
2269
|
+
constructor(map?: {
|
|
2270
|
+
[key: string]: any;
|
|
2271
|
+
});
|
|
2272
|
+
}
|
|
2273
|
+
export declare class CheckIdcardFourmetaResponse extends $tea.Model {
|
|
2274
|
+
reqMsgId?: string;
|
|
2275
|
+
resultCode?: string;
|
|
2276
|
+
resultMsg?: string;
|
|
2277
|
+
match?: string;
|
|
2278
|
+
externInfo?: string;
|
|
2279
|
+
static names(): {
|
|
2280
|
+
[key: string]: string;
|
|
2281
|
+
};
|
|
2282
|
+
static types(): {
|
|
2283
|
+
[key: string]: any;
|
|
2284
|
+
};
|
|
2285
|
+
constructor(map?: {
|
|
2286
|
+
[key: string]: any;
|
|
2287
|
+
});
|
|
2288
|
+
}
|
|
2289
|
+
export declare class QueryCarinfoDetailRequest extends $tea.Model {
|
|
2290
|
+
authToken?: string;
|
|
2291
|
+
productInstanceId?: string;
|
|
2292
|
+
vin: string;
|
|
2293
|
+
externParam?: string;
|
|
2294
|
+
outerOrderNo: string;
|
|
2295
|
+
static names(): {
|
|
2296
|
+
[key: string]: string;
|
|
2297
|
+
};
|
|
2298
|
+
static types(): {
|
|
2299
|
+
[key: string]: any;
|
|
2300
|
+
};
|
|
2301
|
+
constructor(map?: {
|
|
2302
|
+
[key: string]: any;
|
|
2303
|
+
});
|
|
2304
|
+
}
|
|
2305
|
+
export declare class QueryCarinfoDetailResponse extends $tea.Model {
|
|
2306
|
+
reqMsgId?: string;
|
|
2307
|
+
resultCode?: string;
|
|
2308
|
+
resultMsg?: string;
|
|
2309
|
+
externInfo?: string;
|
|
2310
|
+
carInfo?: CarInfoDetail;
|
|
2311
|
+
static names(): {
|
|
2312
|
+
[key: string]: string;
|
|
2313
|
+
};
|
|
2314
|
+
static types(): {
|
|
2315
|
+
[key: string]: any;
|
|
2316
|
+
};
|
|
2317
|
+
constructor(map?: {
|
|
2318
|
+
[key: string]: any;
|
|
2319
|
+
});
|
|
2320
|
+
}
|
|
2321
|
+
export declare class QueryCarinfoBriefRequest extends $tea.Model {
|
|
2322
|
+
authToken?: string;
|
|
2323
|
+
productInstanceId?: string;
|
|
2324
|
+
vin: string;
|
|
2325
|
+
outerOrderNo: string;
|
|
2326
|
+
externParam?: string;
|
|
2327
|
+
static names(): {
|
|
2328
|
+
[key: string]: string;
|
|
2329
|
+
};
|
|
2330
|
+
static types(): {
|
|
2331
|
+
[key: string]: any;
|
|
2332
|
+
};
|
|
2333
|
+
constructor(map?: {
|
|
2334
|
+
[key: string]: any;
|
|
2335
|
+
});
|
|
2336
|
+
}
|
|
2337
|
+
export declare class QueryCarinfoBriefResponse extends $tea.Model {
|
|
2338
|
+
reqMsgId?: string;
|
|
2339
|
+
resultCode?: string;
|
|
2340
|
+
resultMsg?: string;
|
|
2341
|
+
externInfo?: string;
|
|
2342
|
+
carInfo?: CarInfoBrief;
|
|
2343
|
+
static names(): {
|
|
2344
|
+
[key: string]: string;
|
|
2345
|
+
};
|
|
2346
|
+
static types(): {
|
|
2347
|
+
[key: string]: any;
|
|
2348
|
+
};
|
|
2349
|
+
constructor(map?: {
|
|
2350
|
+
[key: string]: any;
|
|
2351
|
+
});
|
|
2352
|
+
}
|
|
2353
|
+
export declare class BindCutpaymentPreRequest extends $tea.Model {
|
|
2354
|
+
authToken?: string;
|
|
2355
|
+
productInstanceId?: string;
|
|
2356
|
+
outerOrderNo: string;
|
|
2357
|
+
encryptType?: string;
|
|
2358
|
+
encryptToken?: string;
|
|
2359
|
+
userId: string;
|
|
2360
|
+
cardType: string;
|
|
2361
|
+
cardPro?: string;
|
|
2362
|
+
cardNo: string;
|
|
2363
|
+
idCardType: string;
|
|
2364
|
+
certName: string;
|
|
2365
|
+
certNo: string;
|
|
2366
|
+
mobile: string;
|
|
2367
|
+
securityCode?: string;
|
|
2368
|
+
validDate?: string;
|
|
2369
|
+
static names(): {
|
|
2370
|
+
[key: string]: string;
|
|
2371
|
+
};
|
|
2372
|
+
static types(): {
|
|
2373
|
+
[key: string]: any;
|
|
2374
|
+
};
|
|
2375
|
+
constructor(map?: {
|
|
2376
|
+
[key: string]: any;
|
|
2377
|
+
});
|
|
2378
|
+
}
|
|
2379
|
+
export declare class BindCutpaymentPreResponse extends $tea.Model {
|
|
2380
|
+
reqMsgId?: string;
|
|
2381
|
+
resultCode?: string;
|
|
2382
|
+
resultMsg?: string;
|
|
2383
|
+
preBindSn?: string;
|
|
2384
|
+
static names(): {
|
|
2385
|
+
[key: string]: string;
|
|
2386
|
+
};
|
|
2387
|
+
static types(): {
|
|
2388
|
+
[key: string]: any;
|
|
2389
|
+
};
|
|
2390
|
+
constructor(map?: {
|
|
2391
|
+
[key: string]: any;
|
|
2392
|
+
});
|
|
2393
|
+
}
|
|
2394
|
+
export declare class BindCutpaymentSignRequest extends $tea.Model {
|
|
2395
|
+
authToken?: string;
|
|
2396
|
+
productInstanceId?: string;
|
|
2397
|
+
outerOrderNo: string;
|
|
2398
|
+
encryptType?: string;
|
|
2399
|
+
encryptToken?: string;
|
|
2400
|
+
userId: string;
|
|
2401
|
+
preBindSn: string;
|
|
2402
|
+
smsCode: string;
|
|
2403
|
+
static names(): {
|
|
2404
|
+
[key: string]: string;
|
|
2405
|
+
};
|
|
2406
|
+
static types(): {
|
|
2407
|
+
[key: string]: any;
|
|
2408
|
+
};
|
|
2409
|
+
constructor(map?: {
|
|
2410
|
+
[key: string]: any;
|
|
2411
|
+
});
|
|
2412
|
+
}
|
|
2413
|
+
export declare class BindCutpaymentSignResponse extends $tea.Model {
|
|
2414
|
+
reqMsgId?: string;
|
|
2415
|
+
resultCode?: string;
|
|
2416
|
+
resultMsg?: string;
|
|
2417
|
+
protocolNo?: string;
|
|
2418
|
+
signBindSn?: string;
|
|
2419
|
+
static names(): {
|
|
2420
|
+
[key: string]: string;
|
|
2421
|
+
};
|
|
2422
|
+
static types(): {
|
|
2423
|
+
[key: string]: any;
|
|
2424
|
+
};
|
|
2425
|
+
constructor(map?: {
|
|
2426
|
+
[key: string]: any;
|
|
2427
|
+
});
|
|
2428
|
+
}
|
|
2429
|
+
export declare class UnbindCutpaymentSignRequest extends $tea.Model {
|
|
2430
|
+
authToken?: string;
|
|
2431
|
+
productInstanceId?: string;
|
|
2432
|
+
outerOrderNo: string;
|
|
2433
|
+
encryptType?: string;
|
|
2434
|
+
encryptToken?: string;
|
|
2435
|
+
userId: string;
|
|
2436
|
+
protocolNo: string;
|
|
2437
|
+
static names(): {
|
|
2438
|
+
[key: string]: string;
|
|
2439
|
+
};
|
|
2440
|
+
static types(): {
|
|
2441
|
+
[key: string]: any;
|
|
2442
|
+
};
|
|
2443
|
+
constructor(map?: {
|
|
2444
|
+
[key: string]: any;
|
|
2445
|
+
});
|
|
2446
|
+
}
|
|
2447
|
+
export declare class UnbindCutpaymentSignResponse extends $tea.Model {
|
|
2448
|
+
reqMsgId?: string;
|
|
2449
|
+
resultCode?: string;
|
|
2450
|
+
resultMsg?: string;
|
|
2451
|
+
unbindSn?: string;
|
|
2452
|
+
static names(): {
|
|
2453
|
+
[key: string]: string;
|
|
2454
|
+
};
|
|
2455
|
+
static types(): {
|
|
2456
|
+
[key: string]: any;
|
|
2457
|
+
};
|
|
2458
|
+
constructor(map?: {
|
|
2459
|
+
[key: string]: any;
|
|
2460
|
+
});
|
|
2461
|
+
}
|
|
2462
|
+
export declare class QueryCutpaymentBindRequest extends $tea.Model {
|
|
2463
|
+
authToken?: string;
|
|
2464
|
+
productInstanceId?: string;
|
|
2465
|
+
outerOrderNo: string;
|
|
2466
|
+
encryptType?: string;
|
|
2467
|
+
encryptToken?: string;
|
|
2468
|
+
userId: string;
|
|
2469
|
+
cardNo: string;
|
|
2470
|
+
signBindSn: string;
|
|
2471
|
+
static names(): {
|
|
2472
|
+
[key: string]: string;
|
|
2473
|
+
};
|
|
2474
|
+
static types(): {
|
|
2475
|
+
[key: string]: any;
|
|
2476
|
+
};
|
|
2477
|
+
constructor(map?: {
|
|
2478
|
+
[key: string]: any;
|
|
2479
|
+
});
|
|
2480
|
+
}
|
|
2481
|
+
export declare class QueryCutpaymentBindResponse extends $tea.Model {
|
|
2482
|
+
reqMsgId?: string;
|
|
2483
|
+
resultCode?: string;
|
|
2484
|
+
resultMsg?: string;
|
|
2485
|
+
protocolNo?: string;
|
|
2486
|
+
bankCode?: string;
|
|
2487
|
+
bankCard?: string;
|
|
2488
|
+
userId?: string;
|
|
2489
|
+
static names(): {
|
|
2490
|
+
[key: string]: string;
|
|
2491
|
+
};
|
|
2492
|
+
static types(): {
|
|
2493
|
+
[key: string]: any;
|
|
2494
|
+
};
|
|
2495
|
+
constructor(map?: {
|
|
2496
|
+
[key: string]: any;
|
|
2497
|
+
});
|
|
2498
|
+
}
|
|
2499
|
+
export declare class ApplyCutpaymentPaymentRequest extends $tea.Model {
|
|
2500
|
+
authToken?: string;
|
|
2501
|
+
productInstanceId?: string;
|
|
2502
|
+
outerOrderNo: string;
|
|
2503
|
+
encryptType?: string;
|
|
2504
|
+
encryptToken?: string;
|
|
2505
|
+
transId: string;
|
|
2506
|
+
protocolNo: string;
|
|
2507
|
+
cardNo: string;
|
|
2508
|
+
certName: string;
|
|
2509
|
+
txnAmt: string;
|
|
2510
|
+
userId: string;
|
|
2511
|
+
securityCode?: string;
|
|
2512
|
+
validDate?: string;
|
|
2513
|
+
shareInfo?: ShareInfo[];
|
|
2514
|
+
static names(): {
|
|
2515
|
+
[key: string]: string;
|
|
2516
|
+
};
|
|
2517
|
+
static types(): {
|
|
2518
|
+
[key: string]: any;
|
|
2519
|
+
};
|
|
2520
|
+
constructor(map?: {
|
|
2521
|
+
[key: string]: any;
|
|
2522
|
+
});
|
|
2523
|
+
}
|
|
2524
|
+
export declare class ApplyCutpaymentPaymentResponse extends $tea.Model {
|
|
2525
|
+
reqMsgId?: string;
|
|
2526
|
+
resultCode?: string;
|
|
2527
|
+
resultMsg?: string;
|
|
2528
|
+
succAmt?: string;
|
|
2529
|
+
succTime?: string;
|
|
2530
|
+
orderId?: string;
|
|
2531
|
+
transId?: string;
|
|
2532
|
+
static names(): {
|
|
2533
|
+
[key: string]: string;
|
|
2534
|
+
};
|
|
2535
|
+
static types(): {
|
|
2536
|
+
[key: string]: any;
|
|
2537
|
+
};
|
|
2538
|
+
constructor(map?: {
|
|
2539
|
+
[key: string]: any;
|
|
2540
|
+
});
|
|
2541
|
+
}
|
|
2542
|
+
export declare class QueryCutpaymentPaymentRequest extends $tea.Model {
|
|
2543
|
+
authToken?: string;
|
|
2544
|
+
productInstanceId?: string;
|
|
2545
|
+
outerOrderNo: string;
|
|
2546
|
+
encryptType?: string;
|
|
2547
|
+
encryptToken?: string;
|
|
2548
|
+
protocolNo: string;
|
|
2549
|
+
transId: string;
|
|
2550
|
+
origTradeDate: string;
|
|
2551
|
+
userId: string;
|
|
2552
|
+
static names(): {
|
|
2553
|
+
[key: string]: string;
|
|
2554
|
+
};
|
|
2555
|
+
static types(): {
|
|
2556
|
+
[key: string]: any;
|
|
2557
|
+
};
|
|
2558
|
+
constructor(map?: {
|
|
2559
|
+
[key: string]: any;
|
|
2560
|
+
});
|
|
2561
|
+
}
|
|
2562
|
+
export declare class QueryCutpaymentPaymentResponse extends $tea.Model {
|
|
2563
|
+
reqMsgId?: string;
|
|
2564
|
+
resultCode?: string;
|
|
2565
|
+
resultMsg?: string;
|
|
2566
|
+
succAmt?: string;
|
|
2567
|
+
succTime?: string;
|
|
2568
|
+
orderId?: string;
|
|
2569
|
+
transId?: string;
|
|
2570
|
+
orderState?: string;
|
|
2571
|
+
shareState?: string;
|
|
2572
|
+
static names(): {
|
|
2573
|
+
[key: string]: string;
|
|
2574
|
+
};
|
|
2575
|
+
static types(): {
|
|
2576
|
+
[key: string]: any;
|
|
2577
|
+
};
|
|
2578
|
+
constructor(map?: {
|
|
2579
|
+
[key: string]: any;
|
|
2580
|
+
});
|
|
2581
|
+
}
|
|
2582
|
+
export declare class ApplyCutpaymentRefundRequest extends $tea.Model {
|
|
2583
|
+
authToken?: string;
|
|
2584
|
+
productInstanceId?: string;
|
|
2585
|
+
outerOrderNo: string;
|
|
2586
|
+
encryptType?: string;
|
|
2587
|
+
encryptToken?: string;
|
|
2588
|
+
paymentTransId: string;
|
|
2589
|
+
protocolNo: string;
|
|
2590
|
+
refundTransId: string;
|
|
2591
|
+
userId: string;
|
|
2592
|
+
refundSerialNo: string;
|
|
2593
|
+
refundReason: string;
|
|
2594
|
+
refundAmt: string;
|
|
2595
|
+
shareRefundInfo?: ShareRefundInfo[];
|
|
2596
|
+
static names(): {
|
|
2597
|
+
[key: string]: string;
|
|
2598
|
+
};
|
|
2599
|
+
static types(): {
|
|
2600
|
+
[key: string]: any;
|
|
2601
|
+
};
|
|
2602
|
+
constructor(map?: {
|
|
2603
|
+
[key: string]: any;
|
|
2604
|
+
});
|
|
2605
|
+
}
|
|
2606
|
+
export declare class ApplyCutpaymentRefundResponse extends $tea.Model {
|
|
2607
|
+
reqMsgId?: string;
|
|
2608
|
+
resultCode?: string;
|
|
2609
|
+
resultMsg?: string;
|
|
2610
|
+
refundTransId?: string;
|
|
2611
|
+
refundSerialNo?: string;
|
|
2612
|
+
refundAmt?: string;
|
|
2613
|
+
static names(): {
|
|
2614
|
+
[key: string]: string;
|
|
2615
|
+
};
|
|
2616
|
+
static types(): {
|
|
2617
|
+
[key: string]: any;
|
|
2618
|
+
};
|
|
2619
|
+
constructor(map?: {
|
|
2620
|
+
[key: string]: any;
|
|
2621
|
+
});
|
|
2622
|
+
}
|
|
2623
|
+
export declare class QueryCutpaymentRefundRequest extends $tea.Model {
|
|
2624
|
+
authToken?: string;
|
|
2625
|
+
productInstanceId?: string;
|
|
2626
|
+
outerOrderNo: string;
|
|
2627
|
+
encryptType?: string;
|
|
2628
|
+
encryptToken?: string;
|
|
2629
|
+
userId: string;
|
|
2630
|
+
protocolNo: string;
|
|
2631
|
+
refundTransId: string;
|
|
2632
|
+
refundSerialNo: string;
|
|
2633
|
+
static names(): {
|
|
2634
|
+
[key: string]: string;
|
|
2635
|
+
};
|
|
2636
|
+
static types(): {
|
|
2637
|
+
[key: string]: any;
|
|
2638
|
+
};
|
|
2639
|
+
constructor(map?: {
|
|
2640
|
+
[key: string]: any;
|
|
2641
|
+
});
|
|
2642
|
+
}
|
|
2643
|
+
export declare class QueryCutpaymentRefundResponse extends $tea.Model {
|
|
2644
|
+
reqMsgId?: string;
|
|
2645
|
+
resultCode?: string;
|
|
2646
|
+
resultMsg?: string;
|
|
2647
|
+
refundAmt?: string;
|
|
2648
|
+
static names(): {
|
|
2649
|
+
[key: string]: string;
|
|
2650
|
+
};
|
|
2651
|
+
static types(): {
|
|
2652
|
+
[key: string]: any;
|
|
2653
|
+
};
|
|
2654
|
+
constructor(map?: {
|
|
2655
|
+
[key: string]: any;
|
|
2656
|
+
});
|
|
2657
|
+
}
|
|
2658
|
+
export declare class QueryCutpaymentStatementRequest extends $tea.Model {
|
|
2659
|
+
authToken?: string;
|
|
2660
|
+
productInstanceId?: string;
|
|
2661
|
+
outerOrderNo: string;
|
|
2662
|
+
settleDate: string;
|
|
2663
|
+
static names(): {
|
|
2664
|
+
[key: string]: string;
|
|
2665
|
+
};
|
|
2666
|
+
static types(): {
|
|
2667
|
+
[key: string]: any;
|
|
2668
|
+
};
|
|
2669
|
+
constructor(map?: {
|
|
2670
|
+
[key: string]: any;
|
|
2671
|
+
});
|
|
2672
|
+
}
|
|
2673
|
+
export declare class QueryCutpaymentStatementResponse extends $tea.Model {
|
|
2674
|
+
reqMsgId?: string;
|
|
2675
|
+
resultCode?: string;
|
|
2676
|
+
resultMsg?: string;
|
|
2677
|
+
fileUrl?: string;
|
|
2678
|
+
static names(): {
|
|
2679
|
+
[key: string]: string;
|
|
2680
|
+
};
|
|
2681
|
+
static types(): {
|
|
2682
|
+
[key: string]: any;
|
|
2683
|
+
};
|
|
2684
|
+
constructor(map?: {
|
|
2685
|
+
[key: string]: any;
|
|
2686
|
+
});
|
|
2687
|
+
}
|
|
2688
|
+
export declare class ExecFaceThreemetaRequest extends $tea.Model {
|
|
2689
|
+
authToken?: string;
|
|
2690
|
+
productInstanceId?: string;
|
|
2691
|
+
certName: string;
|
|
2692
|
+
certNo: string;
|
|
2693
|
+
outerOrderNo: string;
|
|
2694
|
+
fileType: string;
|
|
2695
|
+
facialPictureAuth: string;
|
|
2696
|
+
static names(): {
|
|
2697
|
+
[key: string]: string;
|
|
2698
|
+
};
|
|
2699
|
+
static types(): {
|
|
2700
|
+
[key: string]: any;
|
|
2701
|
+
};
|
|
2702
|
+
constructor(map?: {
|
|
2703
|
+
[key: string]: any;
|
|
2704
|
+
});
|
|
2705
|
+
}
|
|
2706
|
+
export declare class ExecFaceThreemetaResponse extends $tea.Model {
|
|
2707
|
+
reqMsgId?: string;
|
|
2708
|
+
resultCode?: string;
|
|
2709
|
+
resultMsg?: string;
|
|
2710
|
+
score?: string;
|
|
2711
|
+
static names(): {
|
|
2712
|
+
[key: string]: string;
|
|
2713
|
+
};
|
|
2714
|
+
static types(): {
|
|
2715
|
+
[key: string]: any;
|
|
2716
|
+
};
|
|
2717
|
+
constructor(map?: {
|
|
2718
|
+
[key: string]: any;
|
|
2719
|
+
});
|
|
2720
|
+
}
|
|
2164
2721
|
export declare class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
2165
2722
|
authToken?: string;
|
|
2166
2723
|
apiCode: string;
|
|
@@ -2887,6 +3444,162 @@ export default class Client {
|
|
|
2887
3444
|
recognizeOcrIndividualcardEx(request: RecognizeOcrIndividualcardRequest, headers: {
|
|
2888
3445
|
[key: string]: string;
|
|
2889
3446
|
}, runtime: $Util.RuntimeOptions): Promise<RecognizeOcrIndividualcardResponse>;
|
|
3447
|
+
/**
|
|
3448
|
+
* Description: 个人四要素认证
|
|
3449
|
+
* Summary: 个人四要素认证
|
|
3450
|
+
*/
|
|
3451
|
+
checkIdcardFourmeta(request: CheckIdcardFourmetaRequest): Promise<CheckIdcardFourmetaResponse>;
|
|
3452
|
+
/**
|
|
3453
|
+
* Description: 个人四要素认证
|
|
3454
|
+
* Summary: 个人四要素认证
|
|
3455
|
+
*/
|
|
3456
|
+
checkIdcardFourmetaEx(request: CheckIdcardFourmetaRequest, headers: {
|
|
3457
|
+
[key: string]: string;
|
|
3458
|
+
}, runtime: $Util.RuntimeOptions): Promise<CheckIdcardFourmetaResponse>;
|
|
3459
|
+
/**
|
|
3460
|
+
* Description: 车辆资产验证详版
|
|
3461
|
+
* Summary: 车辆资产验证详版
|
|
3462
|
+
*/
|
|
3463
|
+
queryCarinfoDetail(request: QueryCarinfoDetailRequest): Promise<QueryCarinfoDetailResponse>;
|
|
3464
|
+
/**
|
|
3465
|
+
* Description: 车辆资产验证详版
|
|
3466
|
+
* Summary: 车辆资产验证详版
|
|
3467
|
+
*/
|
|
3468
|
+
queryCarinfoDetailEx(request: QueryCarinfoDetailRequest, headers: {
|
|
3469
|
+
[key: string]: string;
|
|
3470
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryCarinfoDetailResponse>;
|
|
3471
|
+
/**
|
|
3472
|
+
* Description: 车辆资产验证简版
|
|
3473
|
+
* Summary: 车辆资产验证简版
|
|
3474
|
+
*/
|
|
3475
|
+
queryCarinfoBrief(request: QueryCarinfoBriefRequest): Promise<QueryCarinfoBriefResponse>;
|
|
3476
|
+
/**
|
|
3477
|
+
* Description: 车辆资产验证简版
|
|
3478
|
+
* Summary: 车辆资产验证简版
|
|
3479
|
+
*/
|
|
3480
|
+
queryCarinfoBriefEx(request: QueryCarinfoBriefRequest, headers: {
|
|
3481
|
+
[key: string]: string;
|
|
3482
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryCarinfoBriefResponse>;
|
|
3483
|
+
/**
|
|
3484
|
+
* Description: 银行卡代扣预绑定
|
|
3485
|
+
* Summary: 银行卡代扣预绑定
|
|
3486
|
+
*/
|
|
3487
|
+
bindCutpaymentPre(request: BindCutpaymentPreRequest): Promise<BindCutpaymentPreResponse>;
|
|
3488
|
+
/**
|
|
3489
|
+
* Description: 银行卡代扣预绑定
|
|
3490
|
+
* Summary: 银行卡代扣预绑定
|
|
3491
|
+
*/
|
|
3492
|
+
bindCutpaymentPreEx(request: BindCutpaymentPreRequest, headers: {
|
|
3493
|
+
[key: string]: string;
|
|
3494
|
+
}, runtime: $Util.RuntimeOptions): Promise<BindCutpaymentPreResponse>;
|
|
3495
|
+
/**
|
|
3496
|
+
* Description: 银行卡代扣绑卡签约
|
|
3497
|
+
* Summary: 银行卡代扣绑卡签约
|
|
3498
|
+
*/
|
|
3499
|
+
bindCutpaymentSign(request: BindCutpaymentSignRequest): Promise<BindCutpaymentSignResponse>;
|
|
3500
|
+
/**
|
|
3501
|
+
* Description: 银行卡代扣绑卡签约
|
|
3502
|
+
* Summary: 银行卡代扣绑卡签约
|
|
3503
|
+
*/
|
|
3504
|
+
bindCutpaymentSignEx(request: BindCutpaymentSignRequest, headers: {
|
|
3505
|
+
[key: string]: string;
|
|
3506
|
+
}, runtime: $Util.RuntimeOptions): Promise<BindCutpaymentSignResponse>;
|
|
3507
|
+
/**
|
|
3508
|
+
* Description: 银行卡代扣解绑
|
|
3509
|
+
* Summary: 银行卡代扣解绑
|
|
3510
|
+
*/
|
|
3511
|
+
unbindCutpaymentSign(request: UnbindCutpaymentSignRequest): Promise<UnbindCutpaymentSignResponse>;
|
|
3512
|
+
/**
|
|
3513
|
+
* Description: 银行卡代扣解绑
|
|
3514
|
+
* Summary: 银行卡代扣解绑
|
|
3515
|
+
*/
|
|
3516
|
+
unbindCutpaymentSignEx(request: UnbindCutpaymentSignRequest, headers: {
|
|
3517
|
+
[key: string]: string;
|
|
3518
|
+
}, runtime: $Util.RuntimeOptions): Promise<UnbindCutpaymentSignResponse>;
|
|
3519
|
+
/**
|
|
3520
|
+
* Description: 银行卡代扣绑定结果查询
|
|
3521
|
+
* Summary: 银行卡代扣绑定结果查询
|
|
3522
|
+
*/
|
|
3523
|
+
queryCutpaymentBind(request: QueryCutpaymentBindRequest): Promise<QueryCutpaymentBindResponse>;
|
|
3524
|
+
/**
|
|
3525
|
+
* Description: 银行卡代扣绑定结果查询
|
|
3526
|
+
* Summary: 银行卡代扣绑定结果查询
|
|
3527
|
+
*/
|
|
3528
|
+
queryCutpaymentBindEx(request: QueryCutpaymentBindRequest, headers: {
|
|
3529
|
+
[key: string]: string;
|
|
3530
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryCutpaymentBindResponse>;
|
|
3531
|
+
/**
|
|
3532
|
+
* Description: 银行卡代扣支付分账扣款
|
|
3533
|
+
* Summary: 银行卡代扣支付分账扣款
|
|
3534
|
+
*/
|
|
3535
|
+
applyCutpaymentPayment(request: ApplyCutpaymentPaymentRequest): Promise<ApplyCutpaymentPaymentResponse>;
|
|
3536
|
+
/**
|
|
3537
|
+
* Description: 银行卡代扣支付分账扣款
|
|
3538
|
+
* Summary: 银行卡代扣支付分账扣款
|
|
3539
|
+
*/
|
|
3540
|
+
applyCutpaymentPaymentEx(request: ApplyCutpaymentPaymentRequest, headers: {
|
|
3541
|
+
[key: string]: string;
|
|
3542
|
+
}, runtime: $Util.RuntimeOptions): Promise<ApplyCutpaymentPaymentResponse>;
|
|
3543
|
+
/**
|
|
3544
|
+
* Description: 银行卡代扣支付分账查询
|
|
3545
|
+
* Summary: 银行卡代扣支付分账查询
|
|
3546
|
+
*/
|
|
3547
|
+
queryCutpaymentPayment(request: QueryCutpaymentPaymentRequest): Promise<QueryCutpaymentPaymentResponse>;
|
|
3548
|
+
/**
|
|
3549
|
+
* Description: 银行卡代扣支付分账查询
|
|
3550
|
+
* Summary: 银行卡代扣支付分账查询
|
|
3551
|
+
*/
|
|
3552
|
+
queryCutpaymentPaymentEx(request: QueryCutpaymentPaymentRequest, headers: {
|
|
3553
|
+
[key: string]: string;
|
|
3554
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryCutpaymentPaymentResponse>;
|
|
3555
|
+
/**
|
|
3556
|
+
* Description: 银行卡代扣退款申请
|
|
3557
|
+
* Summary: 银行卡代扣退款申请
|
|
3558
|
+
*/
|
|
3559
|
+
applyCutpaymentRefund(request: ApplyCutpaymentRefundRequest): Promise<ApplyCutpaymentRefundResponse>;
|
|
3560
|
+
/**
|
|
3561
|
+
* Description: 银行卡代扣退款申请
|
|
3562
|
+
* Summary: 银行卡代扣退款申请
|
|
3563
|
+
*/
|
|
3564
|
+
applyCutpaymentRefundEx(request: ApplyCutpaymentRefundRequest, headers: {
|
|
3565
|
+
[key: string]: string;
|
|
3566
|
+
}, runtime: $Util.RuntimeOptions): Promise<ApplyCutpaymentRefundResponse>;
|
|
3567
|
+
/**
|
|
3568
|
+
* Description: 银行卡代扣退款查询
|
|
3569
|
+
* Summary: 银行卡代扣退款查询
|
|
3570
|
+
*/
|
|
3571
|
+
queryCutpaymentRefund(request: QueryCutpaymentRefundRequest): Promise<QueryCutpaymentRefundResponse>;
|
|
3572
|
+
/**
|
|
3573
|
+
* Description: 银行卡代扣退款查询
|
|
3574
|
+
* Summary: 银行卡代扣退款查询
|
|
3575
|
+
*/
|
|
3576
|
+
queryCutpaymentRefundEx(request: QueryCutpaymentRefundRequest, headers: {
|
|
3577
|
+
[key: string]: string;
|
|
3578
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryCutpaymentRefundResponse>;
|
|
3579
|
+
/**
|
|
3580
|
+
* Description: 银行卡代扣对账
|
|
3581
|
+
* Summary: 银行卡代扣对账
|
|
3582
|
+
*/
|
|
3583
|
+
queryCutpaymentStatement(request: QueryCutpaymentStatementRequest): Promise<QueryCutpaymentStatementResponse>;
|
|
3584
|
+
/**
|
|
3585
|
+
* Description: 银行卡代扣对账
|
|
3586
|
+
* Summary: 银行卡代扣对账
|
|
3587
|
+
*/
|
|
3588
|
+
queryCutpaymentStatementEx(request: QueryCutpaymentStatementRequest, headers: {
|
|
3589
|
+
[key: string]: string;
|
|
3590
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryCutpaymentStatementResponse>;
|
|
3591
|
+
/**
|
|
3592
|
+
* Description: 人像、证件号、姓名比对接口
|
|
3593
|
+
* Summary: 人像、证件号、姓名比对
|
|
3594
|
+
*/
|
|
3595
|
+
execFaceThreemeta(request: ExecFaceThreemetaRequest): Promise<ExecFaceThreemetaResponse>;
|
|
3596
|
+
/**
|
|
3597
|
+
* Description: 人像、证件号、姓名比对接口
|
|
3598
|
+
* Summary: 人像、证件号、姓名比对
|
|
3599
|
+
*/
|
|
3600
|
+
execFaceThreemetaEx(request: ExecFaceThreemetaRequest, headers: {
|
|
3601
|
+
[key: string]: string;
|
|
3602
|
+
}, runtime: $Util.RuntimeOptions): Promise<ExecFaceThreemetaResponse>;
|
|
2890
3603
|
/**
|
|
2891
3604
|
* Description: 创建HTTP PUT提交的文件上传
|
|
2892
3605
|
* Summary: 文件上传创建
|