@antchain/ato 1.11.3 → 1.12.11
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 +774 -260
- package/dist/client.js +1315 -518
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1939 -750
package/dist/client.d.ts
CHANGED
|
@@ -47,6 +47,36 @@ export declare class FileInfo extends $tea.Model {
|
|
|
47
47
|
[key: string]: any;
|
|
48
48
|
});
|
|
49
49
|
}
|
|
50
|
+
export declare class ScalperQueryOrderItem extends $tea.Model {
|
|
51
|
+
orderItemsName?: string;
|
|
52
|
+
orderItemsQuantity?: number;
|
|
53
|
+
orderItemsPrice?: number;
|
|
54
|
+
static names(): {
|
|
55
|
+
[key: string]: string;
|
|
56
|
+
};
|
|
57
|
+
static types(): {
|
|
58
|
+
[key: string]: any;
|
|
59
|
+
};
|
|
60
|
+
constructor(map?: {
|
|
61
|
+
[key: string]: any;
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
export declare class OperationDivideTransInDetailInfo extends $tea.Model {
|
|
65
|
+
transInName?: string;
|
|
66
|
+
transInUserId?: string;
|
|
67
|
+
divideAmount?: number;
|
|
68
|
+
desc?: string;
|
|
69
|
+
divideStatus?: string;
|
|
70
|
+
static names(): {
|
|
71
|
+
[key: string]: string;
|
|
72
|
+
};
|
|
73
|
+
static types(): {
|
|
74
|
+
[key: string]: any;
|
|
75
|
+
};
|
|
76
|
+
constructor(map?: {
|
|
77
|
+
[key: string]: any;
|
|
78
|
+
});
|
|
79
|
+
}
|
|
50
80
|
export declare class SubRentRiskItem extends $tea.Model {
|
|
51
81
|
riskName: string;
|
|
52
82
|
riskRank: string;
|
|
@@ -78,6 +108,8 @@ export declare class OrderRepayStrategy extends $tea.Model {
|
|
|
78
108
|
export declare class StaticDataModuleDetail extends $tea.Model {
|
|
79
109
|
propertyText: string;
|
|
80
110
|
propertyValue: string;
|
|
111
|
+
icon?: string;
|
|
112
|
+
greyIcon?: string;
|
|
81
113
|
childrenDetailList?: string;
|
|
82
114
|
hasChildren?: boolean;
|
|
83
115
|
static names(): {
|
|
@@ -125,68 +157,6 @@ export declare class AppletRiskModel extends $tea.Model {
|
|
|
125
157
|
[key: string]: any;
|
|
126
158
|
});
|
|
127
159
|
}
|
|
128
|
-
export declare class UserSyncInfo extends $tea.Model {
|
|
129
|
-
static names(): {
|
|
130
|
-
[key: string]: string;
|
|
131
|
-
};
|
|
132
|
-
static types(): {
|
|
133
|
-
[key: string]: any;
|
|
134
|
-
};
|
|
135
|
-
constructor(map?: {
|
|
136
|
-
[key: string]: any;
|
|
137
|
-
});
|
|
138
|
-
}
|
|
139
|
-
export declare class CompanyInfo extends $tea.Model {
|
|
140
|
-
businessLicenseFile: FileInfo;
|
|
141
|
-
productMainClass: string;
|
|
142
|
-
companyName: string;
|
|
143
|
-
companyAliasName: string;
|
|
144
|
-
tenantId?: string;
|
|
145
|
-
merchantId: string;
|
|
146
|
-
merchantType?: string;
|
|
147
|
-
companyMobile: string;
|
|
148
|
-
companyAddress: string;
|
|
149
|
-
contactName: string;
|
|
150
|
-
contactMobile: string;
|
|
151
|
-
bindAlipayNo: string;
|
|
152
|
-
settleAlipayNo: string;
|
|
153
|
-
bindAlipayUid: string;
|
|
154
|
-
static names(): {
|
|
155
|
-
[key: string]: string;
|
|
156
|
-
};
|
|
157
|
-
static types(): {
|
|
158
|
-
[key: string]: any;
|
|
159
|
-
};
|
|
160
|
-
constructor(map?: {
|
|
161
|
-
[key: string]: any;
|
|
162
|
-
});
|
|
163
|
-
}
|
|
164
|
-
export declare class UserPerformanceInfo extends $tea.Model {
|
|
165
|
-
periodNum: number;
|
|
166
|
-
payDate: string;
|
|
167
|
-
payMoney: number;
|
|
168
|
-
static names(): {
|
|
169
|
-
[key: string]: string;
|
|
170
|
-
};
|
|
171
|
-
static types(): {
|
|
172
|
-
[key: string]: any;
|
|
173
|
-
};
|
|
174
|
-
constructor(map?: {
|
|
175
|
-
[key: string]: any;
|
|
176
|
-
});
|
|
177
|
-
}
|
|
178
|
-
export declare class MarketingScoreQueryInfo extends $tea.Model {
|
|
179
|
-
phoneNum?: string;
|
|
180
|
-
static names(): {
|
|
181
|
-
[key: string]: string;
|
|
182
|
-
};
|
|
183
|
-
static types(): {
|
|
184
|
-
[key: string]: any;
|
|
185
|
-
};
|
|
186
|
-
constructor(map?: {
|
|
187
|
-
[key: string]: any;
|
|
188
|
-
});
|
|
189
|
-
}
|
|
190
160
|
export declare class InsureProductInfo extends $tea.Model {
|
|
191
161
|
productId: string;
|
|
192
162
|
productImeiId: string;
|
|
@@ -201,21 +171,6 @@ export declare class InsureProductInfo extends $tea.Model {
|
|
|
201
171
|
[key: string]: any;
|
|
202
172
|
});
|
|
203
173
|
}
|
|
204
|
-
export declare class RiskStrategy extends $tea.Model {
|
|
205
|
-
id: string;
|
|
206
|
-
name: string;
|
|
207
|
-
decision: string;
|
|
208
|
-
sceneCode: string;
|
|
209
|
-
static names(): {
|
|
210
|
-
[key: string]: string;
|
|
211
|
-
};
|
|
212
|
-
static types(): {
|
|
213
|
-
[key: string]: any;
|
|
214
|
-
};
|
|
215
|
-
constructor(map?: {
|
|
216
|
-
[key: string]: any;
|
|
217
|
-
});
|
|
218
|
-
}
|
|
219
174
|
export declare class TemplateComponent extends $tea.Model {
|
|
220
175
|
templateCode: string;
|
|
221
176
|
id: string;
|
|
@@ -236,40 +191,6 @@ export declare class TemplateComponent extends $tea.Model {
|
|
|
236
191
|
[key: string]: any;
|
|
237
192
|
});
|
|
238
193
|
}
|
|
239
|
-
export declare class InsureOrderInfo extends $tea.Model {
|
|
240
|
-
orderId?: string;
|
|
241
|
-
insureId?: string;
|
|
242
|
-
productName?: string;
|
|
243
|
-
insureStartTime?: string;
|
|
244
|
-
insureEndTime?: string;
|
|
245
|
-
insureAmount?: number;
|
|
246
|
-
insurePremium?: number;
|
|
247
|
-
status?: string;
|
|
248
|
-
policyUrl?: string;
|
|
249
|
-
validateCode?: string;
|
|
250
|
-
static names(): {
|
|
251
|
-
[key: string]: string;
|
|
252
|
-
};
|
|
253
|
-
static types(): {
|
|
254
|
-
[key: string]: any;
|
|
255
|
-
};
|
|
256
|
-
constructor(map?: {
|
|
257
|
-
[key: string]: any;
|
|
258
|
-
});
|
|
259
|
-
}
|
|
260
|
-
export declare class MarketingScoreInfo extends $tea.Model {
|
|
261
|
-
phoneNum?: string;
|
|
262
|
-
score?: string;
|
|
263
|
-
static names(): {
|
|
264
|
-
[key: string]: string;
|
|
265
|
-
};
|
|
266
|
-
static types(): {
|
|
267
|
-
[key: string]: any;
|
|
268
|
-
};
|
|
269
|
-
constructor(map?: {
|
|
270
|
-
[key: string]: any;
|
|
271
|
-
});
|
|
272
|
-
}
|
|
273
194
|
export declare class StaticData extends $tea.Model {
|
|
274
195
|
moduleName: string;
|
|
275
196
|
moduleDetailList: StaticDataModuleDetail[];
|
|
@@ -299,41 +220,6 @@ export declare class MerchantAgentPage extends $tea.Model {
|
|
|
299
220
|
[key: string]: any;
|
|
300
221
|
});
|
|
301
222
|
}
|
|
302
|
-
export declare class PriceDetail extends $tea.Model {
|
|
303
|
-
periodNum: number;
|
|
304
|
-
depositPrice: number;
|
|
305
|
-
buyoutPrice: number;
|
|
306
|
-
initialRentPrice: number;
|
|
307
|
-
static names(): {
|
|
308
|
-
[key: string]: string;
|
|
309
|
-
};
|
|
310
|
-
static types(): {
|
|
311
|
-
[key: string]: any;
|
|
312
|
-
};
|
|
313
|
-
constructor(map?: {
|
|
314
|
-
[key: string]: any;
|
|
315
|
-
});
|
|
316
|
-
}
|
|
317
|
-
export declare class OrderMsgInfo extends $tea.Model {
|
|
318
|
-
orderId: string;
|
|
319
|
-
msgId: string;
|
|
320
|
-
msgPublishType: string;
|
|
321
|
-
msgCreateTime: string;
|
|
322
|
-
msgStatus: string;
|
|
323
|
-
msgRetryTime: number;
|
|
324
|
-
msgContent: string;
|
|
325
|
-
msgCallbackUrl: string;
|
|
326
|
-
newMsgCallbackUrl: string;
|
|
327
|
-
static names(): {
|
|
328
|
-
[key: string]: string;
|
|
329
|
-
};
|
|
330
|
-
static types(): {
|
|
331
|
-
[key: string]: any;
|
|
332
|
-
};
|
|
333
|
-
constructor(map?: {
|
|
334
|
-
[key: string]: any;
|
|
335
|
-
});
|
|
336
|
-
}
|
|
337
223
|
export declare class OrderInfo extends $tea.Model {
|
|
338
224
|
orderId?: string;
|
|
339
225
|
orderCreateTime?: string;
|
|
@@ -385,24 +271,6 @@ export declare class NoticeInfo extends $tea.Model {
|
|
|
385
271
|
[key: string]: any;
|
|
386
272
|
});
|
|
387
273
|
}
|
|
388
|
-
export declare class ApplicationInfoUpdate extends $tea.Model {
|
|
389
|
-
applicationScene?: string;
|
|
390
|
-
tinyAppId?: string;
|
|
391
|
-
siteName?: string;
|
|
392
|
-
sitUrl?: string;
|
|
393
|
-
merchantName?: string;
|
|
394
|
-
merchantServiceName?: string;
|
|
395
|
-
merchantServiceDesc?: string;
|
|
396
|
-
static names(): {
|
|
397
|
-
[key: string]: string;
|
|
398
|
-
};
|
|
399
|
-
static types(): {
|
|
400
|
-
[key: string]: any;
|
|
401
|
-
};
|
|
402
|
-
constructor(map?: {
|
|
403
|
-
[key: string]: any;
|
|
404
|
-
});
|
|
405
|
-
}
|
|
406
274
|
export declare class AuditInfo extends $tea.Model {
|
|
407
275
|
stage: string;
|
|
408
276
|
auditSubject: string;
|
|
@@ -419,23 +287,6 @@ export declare class AuditInfo extends $tea.Model {
|
|
|
419
287
|
[key: string]: any;
|
|
420
288
|
});
|
|
421
289
|
}
|
|
422
|
-
export declare class OrderUserInfo extends $tea.Model {
|
|
423
|
-
userName?: string;
|
|
424
|
-
userPhoneNumber?: string;
|
|
425
|
-
userAddress?: string;
|
|
426
|
-
alipayUid?: string;
|
|
427
|
-
lesseeType?: number;
|
|
428
|
-
userId?: string;
|
|
429
|
-
static names(): {
|
|
430
|
-
[key: string]: string;
|
|
431
|
-
};
|
|
432
|
-
static types(): {
|
|
433
|
-
[key: string]: any;
|
|
434
|
-
};
|
|
435
|
-
constructor(map?: {
|
|
436
|
-
[key: string]: any;
|
|
437
|
-
});
|
|
438
|
-
}
|
|
439
290
|
export declare class ProductInfo extends $tea.Model {
|
|
440
291
|
merchantId?: string;
|
|
441
292
|
productName?: string;
|
|
@@ -456,17 +307,6 @@ export declare class ProductInfo extends $tea.Model {
|
|
|
456
307
|
[key: string]: any;
|
|
457
308
|
});
|
|
458
309
|
}
|
|
459
|
-
export declare class OrderGoodsModel extends $tea.Model {
|
|
460
|
-
static names(): {
|
|
461
|
-
[key: string]: string;
|
|
462
|
-
};
|
|
463
|
-
static types(): {
|
|
464
|
-
[key: string]: any;
|
|
465
|
-
};
|
|
466
|
-
constructor(map?: {
|
|
467
|
-
[key: string]: any;
|
|
468
|
-
});
|
|
469
|
-
}
|
|
470
310
|
export declare class LegalInfoUpdate extends $tea.Model {
|
|
471
311
|
legalName?: string;
|
|
472
312
|
legalCertNo?: string;
|
|
@@ -493,10 +333,10 @@ export declare class PromiseInfo extends $tea.Model {
|
|
|
493
333
|
[key: string]: any;
|
|
494
334
|
});
|
|
495
335
|
}
|
|
496
|
-
export declare class
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
336
|
+
export declare class CustomerServiceInfo extends $tea.Model {
|
|
337
|
+
merchantId?: string;
|
|
338
|
+
merchantName?: string;
|
|
339
|
+
processType?: string;
|
|
500
340
|
static names(): {
|
|
501
341
|
[key: string]: string;
|
|
502
342
|
};
|
|
@@ -507,10 +347,10 @@ export declare class DeliveryDetail extends $tea.Model {
|
|
|
507
347
|
[key: string]: any;
|
|
508
348
|
});
|
|
509
349
|
}
|
|
510
|
-
export declare class
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
350
|
+
export declare class OperationDivideTransInModel extends $tea.Model {
|
|
351
|
+
transInUserId: string;
|
|
352
|
+
divideAmount: number;
|
|
353
|
+
desc?: string;
|
|
514
354
|
static names(): {
|
|
515
355
|
[key: string]: string;
|
|
516
356
|
};
|
|
@@ -521,10 +361,12 @@ export declare class CustomerServiceInfo extends $tea.Model {
|
|
|
521
361
|
[key: string]: any;
|
|
522
362
|
});
|
|
523
363
|
}
|
|
524
|
-
export declare class
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
364
|
+
export declare class PurchaseQueryModel extends $tea.Model {
|
|
365
|
+
outOrderNo?: string;
|
|
366
|
+
orderNo?: string;
|
|
367
|
+
bankCardNo?: string;
|
|
368
|
+
companyName?: string;
|
|
369
|
+
salesAmount?: number;
|
|
528
370
|
static names(): {
|
|
529
371
|
[key: string]: string;
|
|
530
372
|
};
|
|
@@ -535,13 +377,9 @@ export declare class OperationDivideTransInModel extends $tea.Model {
|
|
|
535
377
|
[key: string]: any;
|
|
536
378
|
});
|
|
537
379
|
}
|
|
538
|
-
export declare class
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
tenantId: string;
|
|
542
|
-
productMainClass: string;
|
|
543
|
-
agreementType: string;
|
|
544
|
-
signStatus: string;
|
|
380
|
+
export declare class OperateDivideInfo extends $tea.Model {
|
|
381
|
+
periodNum?: number;
|
|
382
|
+
operationDivideTransInList?: OperationDivideTransInDetailInfo[];
|
|
545
383
|
static names(): {
|
|
546
384
|
[key: string]: string;
|
|
547
385
|
};
|
|
@@ -598,6 +436,23 @@ export declare class RelationPage extends $tea.Model {
|
|
|
598
436
|
[key: string]: any;
|
|
599
437
|
});
|
|
600
438
|
}
|
|
439
|
+
export declare class BaddebtQueryModel extends $tea.Model {
|
|
440
|
+
serviceCategory?: string;
|
|
441
|
+
totalAmount?: number;
|
|
442
|
+
totalQuantity?: number;
|
|
443
|
+
userName?: string;
|
|
444
|
+
isvPid?: string;
|
|
445
|
+
apdid?: string;
|
|
446
|
+
static names(): {
|
|
447
|
+
[key: string]: string;
|
|
448
|
+
};
|
|
449
|
+
static types(): {
|
|
450
|
+
[key: string]: any;
|
|
451
|
+
};
|
|
452
|
+
constructor(map?: {
|
|
453
|
+
[key: string]: any;
|
|
454
|
+
});
|
|
455
|
+
}
|
|
601
456
|
export declare class CompanyInfoUpdate extends $tea.Model {
|
|
602
457
|
businessLicenseFile?: FileInfo;
|
|
603
458
|
productMainClass?: string;
|
|
@@ -639,10 +494,212 @@ export declare class OrderSearchInfo extends $tea.Model {
|
|
|
639
494
|
[key: string]: any;
|
|
640
495
|
});
|
|
641
496
|
}
|
|
642
|
-
export declare class
|
|
643
|
-
|
|
497
|
+
export declare class ApplicationInfo extends $tea.Model {
|
|
498
|
+
applicationScene: string;
|
|
499
|
+
tinyAppId: string;
|
|
500
|
+
siteName: string;
|
|
501
|
+
sitUrl: string;
|
|
502
|
+
merchantName: string;
|
|
503
|
+
merchantServiceName: string;
|
|
504
|
+
merchantServiceDesc: string;
|
|
505
|
+
siteInfo?: SiteInfo[];
|
|
506
|
+
static names(): {
|
|
507
|
+
[key: string]: string;
|
|
508
|
+
};
|
|
509
|
+
static types(): {
|
|
510
|
+
[key: string]: any;
|
|
511
|
+
};
|
|
512
|
+
constructor(map?: {
|
|
513
|
+
[key: string]: any;
|
|
514
|
+
});
|
|
515
|
+
}
|
|
516
|
+
export declare class ItemDetail extends $tea.Model {
|
|
517
|
+
goodsCategory?: string;
|
|
518
|
+
itemName?: string;
|
|
519
|
+
quantity?: number;
|
|
520
|
+
static names(): {
|
|
521
|
+
[key: string]: string;
|
|
522
|
+
};
|
|
523
|
+
static types(): {
|
|
524
|
+
[key: string]: any;
|
|
525
|
+
};
|
|
526
|
+
constructor(map?: {
|
|
527
|
+
[key: string]: any;
|
|
528
|
+
});
|
|
529
|
+
}
|
|
530
|
+
export declare class RiskGoModel extends $tea.Model {
|
|
531
|
+
riskType: string;
|
|
532
|
+
riskValue: string;
|
|
533
|
+
riskDesc: string;
|
|
534
|
+
infoCode?: string;
|
|
535
|
+
static names(): {
|
|
536
|
+
[key: string]: string;
|
|
537
|
+
};
|
|
538
|
+
static types(): {
|
|
539
|
+
[key: string]: any;
|
|
540
|
+
};
|
|
541
|
+
constructor(map?: {
|
|
542
|
+
[key: string]: any;
|
|
543
|
+
});
|
|
544
|
+
}
|
|
545
|
+
export declare class SingleCancelModel extends $tea.Model {
|
|
546
|
+
periodNum: number;
|
|
547
|
+
gmtPay: string;
|
|
548
|
+
payOffAmount: number;
|
|
549
|
+
payOffType?: string;
|
|
550
|
+
payOffNo?: string;
|
|
551
|
+
payOffBankName?: string;
|
|
552
|
+
static names(): {
|
|
553
|
+
[key: string]: string;
|
|
554
|
+
};
|
|
555
|
+
static types(): {
|
|
556
|
+
[key: string]: any;
|
|
557
|
+
};
|
|
558
|
+
constructor(map?: {
|
|
559
|
+
[key: string]: any;
|
|
560
|
+
});
|
|
561
|
+
}
|
|
562
|
+
export declare class RiskModel extends $tea.Model {
|
|
563
|
+
sceneCode: string;
|
|
564
|
+
score: string;
|
|
565
|
+
delinquencyRate?: string;
|
|
566
|
+
riskAdvice?: string;
|
|
567
|
+
riskRank?: string;
|
|
568
|
+
flowId: string;
|
|
569
|
+
static names(): {
|
|
570
|
+
[key: string]: string;
|
|
571
|
+
};
|
|
572
|
+
static types(): {
|
|
573
|
+
[key: string]: any;
|
|
574
|
+
};
|
|
575
|
+
constructor(map?: {
|
|
576
|
+
[key: string]: any;
|
|
577
|
+
});
|
|
578
|
+
}
|
|
579
|
+
export declare class ScalperQueryModel extends $tea.Model {
|
|
580
|
+
registrationPhone?: string;
|
|
581
|
+
certificateDate?: string;
|
|
582
|
+
loginPhone?: string;
|
|
583
|
+
registrationCert?: string;
|
|
584
|
+
loginCert?: string;
|
|
585
|
+
registrationDate?: string;
|
|
586
|
+
certType?: number;
|
|
587
|
+
bankCardNo?: string;
|
|
588
|
+
emailAddress?: string;
|
|
589
|
+
imei?: string;
|
|
590
|
+
imsi?: string;
|
|
591
|
+
macAddress?: string;
|
|
592
|
+
apdid?: string;
|
|
593
|
+
outOrderNo?: string;
|
|
594
|
+
orderNo?: string;
|
|
595
|
+
salesAmount?: number;
|
|
596
|
+
userName?: string;
|
|
597
|
+
mailingPhone?: string;
|
|
598
|
+
mailingAddress?: string;
|
|
599
|
+
isEmployee?: string;
|
|
600
|
+
channel?: string;
|
|
601
|
+
isvPid?: string;
|
|
602
|
+
storeMccDesc?: string;
|
|
603
|
+
customerId?: string;
|
|
604
|
+
orderItemsInfoList?: ScalperQueryOrderItem[];
|
|
605
|
+
static names(): {
|
|
606
|
+
[key: string]: string;
|
|
607
|
+
};
|
|
608
|
+
static types(): {
|
|
609
|
+
[key: string]: any;
|
|
610
|
+
};
|
|
611
|
+
constructor(map?: {
|
|
612
|
+
[key: string]: any;
|
|
613
|
+
});
|
|
614
|
+
}
|
|
615
|
+
export declare class UserSyncInfo extends $tea.Model {
|
|
616
|
+
static names(): {
|
|
617
|
+
[key: string]: string;
|
|
618
|
+
};
|
|
619
|
+
static types(): {
|
|
620
|
+
[key: string]: any;
|
|
621
|
+
};
|
|
622
|
+
constructor(map?: {
|
|
623
|
+
[key: string]: any;
|
|
624
|
+
});
|
|
625
|
+
}
|
|
626
|
+
export declare class CompanyInfo extends $tea.Model {
|
|
627
|
+
businessLicenseFile: FileInfo;
|
|
628
|
+
productMainClass: string;
|
|
629
|
+
companyName: string;
|
|
630
|
+
companyAliasName: string;
|
|
631
|
+
tenantId?: string;
|
|
632
|
+
merchantId: string;
|
|
633
|
+
merchantType?: string;
|
|
634
|
+
companyMobile: string;
|
|
635
|
+
companyAddress: string;
|
|
636
|
+
contactName: string;
|
|
637
|
+
contactMobile: string;
|
|
638
|
+
bindAlipayNo: string;
|
|
639
|
+
settleAlipayNo: string;
|
|
640
|
+
bindAlipayUid: string;
|
|
641
|
+
static names(): {
|
|
642
|
+
[key: string]: string;
|
|
643
|
+
};
|
|
644
|
+
static types(): {
|
|
645
|
+
[key: string]: any;
|
|
646
|
+
};
|
|
647
|
+
constructor(map?: {
|
|
648
|
+
[key: string]: any;
|
|
649
|
+
});
|
|
650
|
+
}
|
|
651
|
+
export declare class UserPerformanceInfo extends $tea.Model {
|
|
652
|
+
periodNum: number;
|
|
653
|
+
payDate: string;
|
|
654
|
+
payMoney: number;
|
|
655
|
+
static names(): {
|
|
656
|
+
[key: string]: string;
|
|
657
|
+
};
|
|
658
|
+
static types(): {
|
|
659
|
+
[key: string]: any;
|
|
660
|
+
};
|
|
661
|
+
constructor(map?: {
|
|
662
|
+
[key: string]: any;
|
|
663
|
+
});
|
|
664
|
+
}
|
|
665
|
+
export declare class MarketingScoreQueryInfo extends $tea.Model {
|
|
666
|
+
phoneNum?: string;
|
|
667
|
+
static names(): {
|
|
668
|
+
[key: string]: string;
|
|
669
|
+
};
|
|
670
|
+
static types(): {
|
|
671
|
+
[key: string]: any;
|
|
672
|
+
};
|
|
673
|
+
constructor(map?: {
|
|
674
|
+
[key: string]: any;
|
|
675
|
+
});
|
|
676
|
+
}
|
|
677
|
+
export declare class RiskStrategy extends $tea.Model {
|
|
678
|
+
id: string;
|
|
679
|
+
name: string;
|
|
680
|
+
decision: string;
|
|
681
|
+
sceneCode: string;
|
|
682
|
+
static names(): {
|
|
683
|
+
[key: string]: string;
|
|
684
|
+
};
|
|
685
|
+
static types(): {
|
|
686
|
+
[key: string]: any;
|
|
687
|
+
};
|
|
688
|
+
constructor(map?: {
|
|
689
|
+
[key: string]: any;
|
|
690
|
+
});
|
|
691
|
+
}
|
|
692
|
+
export declare class InsureOrderInfo extends $tea.Model {
|
|
693
|
+
orderId?: string;
|
|
694
|
+
insureId?: string;
|
|
644
695
|
productName?: string;
|
|
645
|
-
|
|
696
|
+
insureStartTime?: string;
|
|
697
|
+
insureEndTime?: string;
|
|
698
|
+
insureAmount?: number;
|
|
699
|
+
insurePremium?: number;
|
|
700
|
+
status?: string;
|
|
701
|
+
policyUrl?: string;
|
|
702
|
+
validateCode?: string;
|
|
646
703
|
static names(): {
|
|
647
704
|
[key: string]: string;
|
|
648
705
|
};
|
|
@@ -653,15 +710,9 @@ export declare class OrderProductInfo extends $tea.Model {
|
|
|
653
710
|
[key: string]: any;
|
|
654
711
|
});
|
|
655
712
|
}
|
|
656
|
-
export declare class
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
statusReasonCode?: string;
|
|
660
|
-
statusReasonMsg?: string;
|
|
661
|
-
totalAmount?: number;
|
|
662
|
-
paidAmount?: number;
|
|
663
|
-
receiptAmount?: number;
|
|
664
|
-
gmtPay?: string;
|
|
713
|
+
export declare class MarketingScoreInfo extends $tea.Model {
|
|
714
|
+
phoneNum?: string;
|
|
715
|
+
score?: string;
|
|
665
716
|
static names(): {
|
|
666
717
|
[key: string]: string;
|
|
667
718
|
};
|
|
@@ -672,15 +723,131 @@ export declare class ActivePayOrder extends $tea.Model {
|
|
|
672
723
|
[key: string]: any;
|
|
673
724
|
});
|
|
674
725
|
}
|
|
675
|
-
export declare class
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
726
|
+
export declare class PriceDetail extends $tea.Model {
|
|
727
|
+
periodNum: number;
|
|
728
|
+
depositPrice: number;
|
|
729
|
+
buyoutPrice: number;
|
|
730
|
+
initialRentPrice: number;
|
|
731
|
+
static names(): {
|
|
732
|
+
[key: string]: string;
|
|
733
|
+
};
|
|
734
|
+
static types(): {
|
|
735
|
+
[key: string]: any;
|
|
736
|
+
};
|
|
737
|
+
constructor(map?: {
|
|
738
|
+
[key: string]: any;
|
|
739
|
+
});
|
|
740
|
+
}
|
|
741
|
+
export declare class OrderMsgInfo extends $tea.Model {
|
|
742
|
+
orderId: string;
|
|
743
|
+
msgId: string;
|
|
744
|
+
msgPublishType: string;
|
|
745
|
+
msgCreateTime: string;
|
|
746
|
+
msgStatus: string;
|
|
747
|
+
msgRetryTime: number;
|
|
748
|
+
msgContent: string;
|
|
749
|
+
msgCallbackUrl: string;
|
|
750
|
+
newMsgCallbackUrl: string;
|
|
751
|
+
static names(): {
|
|
752
|
+
[key: string]: string;
|
|
753
|
+
};
|
|
754
|
+
static types(): {
|
|
755
|
+
[key: string]: any;
|
|
756
|
+
};
|
|
757
|
+
constructor(map?: {
|
|
758
|
+
[key: string]: any;
|
|
759
|
+
});
|
|
760
|
+
}
|
|
761
|
+
export declare class AwardingQueryModel extends $tea.Model {
|
|
762
|
+
opposingUserid?: string;
|
|
763
|
+
opposingOpenId?: string;
|
|
764
|
+
serviceCategory?: string;
|
|
765
|
+
isvPid?: string;
|
|
766
|
+
bankCardNo?: string;
|
|
767
|
+
imei?: string;
|
|
768
|
+
imsi?: string;
|
|
769
|
+
salesAmount?: number;
|
|
770
|
+
userName?: string;
|
|
771
|
+
storeMccDesc?: string;
|
|
772
|
+
customerId: string;
|
|
773
|
+
qrCode?: string;
|
|
774
|
+
static names(): {
|
|
775
|
+
[key: string]: string;
|
|
776
|
+
};
|
|
777
|
+
static types(): {
|
|
778
|
+
[key: string]: any;
|
|
779
|
+
};
|
|
780
|
+
constructor(map?: {
|
|
781
|
+
[key: string]: any;
|
|
782
|
+
});
|
|
783
|
+
}
|
|
784
|
+
export declare class ApplicationInfoUpdate extends $tea.Model {
|
|
785
|
+
applicationScene?: string;
|
|
786
|
+
tinyAppId?: string;
|
|
787
|
+
siteName?: string;
|
|
788
|
+
sitUrl?: string;
|
|
789
|
+
merchantName?: string;
|
|
790
|
+
merchantServiceName?: string;
|
|
791
|
+
merchantServiceDesc?: string;
|
|
792
|
+
static names(): {
|
|
793
|
+
[key: string]: string;
|
|
794
|
+
};
|
|
795
|
+
static types(): {
|
|
796
|
+
[key: string]: any;
|
|
797
|
+
};
|
|
798
|
+
constructor(map?: {
|
|
799
|
+
[key: string]: any;
|
|
800
|
+
});
|
|
801
|
+
}
|
|
802
|
+
export declare class OrderUserInfo extends $tea.Model {
|
|
803
|
+
userName?: string;
|
|
804
|
+
userPhoneNumber?: string;
|
|
805
|
+
userAddress?: string;
|
|
806
|
+
alipayUid?: string;
|
|
807
|
+
lesseeType?: number;
|
|
808
|
+
userId?: string;
|
|
809
|
+
static names(): {
|
|
810
|
+
[key: string]: string;
|
|
811
|
+
};
|
|
812
|
+
static types(): {
|
|
813
|
+
[key: string]: any;
|
|
814
|
+
};
|
|
815
|
+
constructor(map?: {
|
|
816
|
+
[key: string]: any;
|
|
817
|
+
});
|
|
818
|
+
}
|
|
819
|
+
export declare class OrderGoodsModel extends $tea.Model {
|
|
820
|
+
static names(): {
|
|
821
|
+
[key: string]: string;
|
|
822
|
+
};
|
|
823
|
+
static types(): {
|
|
824
|
+
[key: string]: any;
|
|
825
|
+
};
|
|
826
|
+
constructor(map?: {
|
|
827
|
+
[key: string]: any;
|
|
828
|
+
});
|
|
829
|
+
}
|
|
830
|
+
export declare class DeliveryDetail extends $tea.Model {
|
|
831
|
+
receiverName?: string;
|
|
832
|
+
receiverMobile?: string;
|
|
833
|
+
receiverAddress?: string;
|
|
834
|
+
static names(): {
|
|
835
|
+
[key: string]: string;
|
|
836
|
+
};
|
|
837
|
+
static types(): {
|
|
838
|
+
[key: string]: any;
|
|
839
|
+
};
|
|
840
|
+
constructor(map?: {
|
|
841
|
+
[key: string]: any;
|
|
842
|
+
});
|
|
843
|
+
}
|
|
844
|
+
export declare class AgreementPage extends $tea.Model {
|
|
845
|
+
agreementId: string;
|
|
680
846
|
merchantName: string;
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
847
|
+
tenantId: string;
|
|
848
|
+
productMainClass: string;
|
|
849
|
+
agreementType: string;
|
|
850
|
+
signStatus: string;
|
|
684
851
|
static names(): {
|
|
685
852
|
[key: string]: string;
|
|
686
853
|
};
|
|
@@ -691,7 +858,16 @@ export declare class ApplicationInfo extends $tea.Model {
|
|
|
691
858
|
[key: string]: any;
|
|
692
859
|
});
|
|
693
860
|
}
|
|
694
|
-
export declare class
|
|
861
|
+
export declare class FarmingQueryModel extends $tea.Model {
|
|
862
|
+
outOrderNo?: string;
|
|
863
|
+
orderNo?: string;
|
|
864
|
+
salesAmount?: number;
|
|
865
|
+
bankCardNo?: string;
|
|
866
|
+
isvPid?: string;
|
|
867
|
+
storeMccDesc?: string;
|
|
868
|
+
outletAddress?: string;
|
|
869
|
+
companyName?: string;
|
|
870
|
+
storeName?: string;
|
|
695
871
|
static names(): {
|
|
696
872
|
[key: string]: string;
|
|
697
873
|
};
|
|
@@ -702,9 +878,10 @@ export declare class GoodsInfo extends $tea.Model {
|
|
|
702
878
|
[key: string]: any;
|
|
703
879
|
});
|
|
704
880
|
}
|
|
705
|
-
export declare class
|
|
706
|
-
|
|
707
|
-
|
|
881
|
+
export declare class OrderProductInfo extends $tea.Model {
|
|
882
|
+
productId?: string;
|
|
883
|
+
productName?: string;
|
|
884
|
+
productNumber?: number;
|
|
708
885
|
static names(): {
|
|
709
886
|
[key: string]: string;
|
|
710
887
|
};
|
|
@@ -715,10 +892,15 @@ export declare class PageQuery extends $tea.Model {
|
|
|
715
892
|
[key: string]: any;
|
|
716
893
|
});
|
|
717
894
|
}
|
|
718
|
-
export declare class
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
895
|
+
export declare class ActivePayOrder extends $tea.Model {
|
|
896
|
+
tradeNo: string;
|
|
897
|
+
tradeStatus: string;
|
|
898
|
+
statusReasonCode?: string;
|
|
899
|
+
statusReasonMsg?: string;
|
|
900
|
+
totalAmount?: number;
|
|
901
|
+
paidAmount?: number;
|
|
902
|
+
receiptAmount?: number;
|
|
903
|
+
gmtPay?: string;
|
|
722
904
|
static names(): {
|
|
723
905
|
[key: string]: string;
|
|
724
906
|
};
|
|
@@ -729,11 +911,20 @@ export declare class ItemDetail extends $tea.Model {
|
|
|
729
911
|
[key: string]: any;
|
|
730
912
|
});
|
|
731
913
|
}
|
|
732
|
-
export declare class
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
914
|
+
export declare class GoodsInfo extends $tea.Model {
|
|
915
|
+
static names(): {
|
|
916
|
+
[key: string]: string;
|
|
917
|
+
};
|
|
918
|
+
static types(): {
|
|
919
|
+
[key: string]: any;
|
|
920
|
+
};
|
|
921
|
+
constructor(map?: {
|
|
922
|
+
[key: string]: any;
|
|
923
|
+
});
|
|
924
|
+
}
|
|
925
|
+
export declare class PageQuery extends $tea.Model {
|
|
926
|
+
pageSize: number;
|
|
927
|
+
pageIndex: number;
|
|
737
928
|
static names(): {
|
|
738
929
|
[key: string]: string;
|
|
739
930
|
};
|
|
@@ -744,13 +935,11 @@ export declare class LegalInfo extends $tea.Model {
|
|
|
744
935
|
[key: string]: any;
|
|
745
936
|
});
|
|
746
937
|
}
|
|
747
|
-
export declare class
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
riskRank?: string;
|
|
753
|
-
flowId: string;
|
|
938
|
+
export declare class LegalInfo extends $tea.Model {
|
|
939
|
+
legalName: string;
|
|
940
|
+
legalCertNo: string;
|
|
941
|
+
legalCertFrontFile: FileInfo;
|
|
942
|
+
legalCertBackFile: FileInfo;
|
|
754
943
|
static names(): {
|
|
755
944
|
[key: string]: string;
|
|
756
945
|
};
|
|
@@ -1499,6 +1688,37 @@ export declare class QueryFundCompensateaccountResponse extends $tea.Model {
|
|
|
1499
1688
|
[key: string]: any;
|
|
1500
1689
|
});
|
|
1501
1690
|
}
|
|
1691
|
+
export declare class GetFundOrderfinanceinfoRequest extends $tea.Model {
|
|
1692
|
+
authToken?: string;
|
|
1693
|
+
productInstanceId?: string;
|
|
1694
|
+
orderId: string;
|
|
1695
|
+
merchantId: string;
|
|
1696
|
+
fundId: string;
|
|
1697
|
+
static names(): {
|
|
1698
|
+
[key: string]: string;
|
|
1699
|
+
};
|
|
1700
|
+
static types(): {
|
|
1701
|
+
[key: string]: any;
|
|
1702
|
+
};
|
|
1703
|
+
constructor(map?: {
|
|
1704
|
+
[key: string]: any;
|
|
1705
|
+
});
|
|
1706
|
+
}
|
|
1707
|
+
export declare class GetFundOrderfinanceinfoResponse extends $tea.Model {
|
|
1708
|
+
reqMsgId?: string;
|
|
1709
|
+
resultCode?: string;
|
|
1710
|
+
resultMsg?: string;
|
|
1711
|
+
responseData?: string;
|
|
1712
|
+
static names(): {
|
|
1713
|
+
[key: string]: string;
|
|
1714
|
+
};
|
|
1715
|
+
static types(): {
|
|
1716
|
+
[key: string]: any;
|
|
1717
|
+
};
|
|
1718
|
+
constructor(map?: {
|
|
1719
|
+
[key: string]: any;
|
|
1720
|
+
});
|
|
1721
|
+
}
|
|
1502
1722
|
export declare class GetInnerProductRequest extends $tea.Model {
|
|
1503
1723
|
authToken?: string;
|
|
1504
1724
|
productInstanceId?: string;
|
|
@@ -2597,6 +2817,8 @@ export declare class SyncInnerTemplateResponse extends $tea.Model {
|
|
|
2597
2817
|
resultCode?: string;
|
|
2598
2818
|
resultMsg?: string;
|
|
2599
2819
|
targetTemplateCode?: string;
|
|
2820
|
+
validResult?: boolean;
|
|
2821
|
+
validFieldDetail?: string;
|
|
2600
2822
|
static names(): {
|
|
2601
2823
|
[key: string]: string;
|
|
2602
2824
|
};
|
|
@@ -3363,6 +3585,7 @@ export declare class DetailInnerOrderResponse extends $tea.Model {
|
|
|
3363
3585
|
orderFulfillmentInfoList?: OrderFulfillmentInfo[];
|
|
3364
3586
|
orderPromiseInfo?: OrderPromiseInfo;
|
|
3365
3587
|
orderProductInfoList?: OrderProductInfo[];
|
|
3588
|
+
operateDivideInfoList?: OperateDivideInfo[];
|
|
3366
3589
|
static names(): {
|
|
3367
3590
|
[key: string]: string;
|
|
3368
3591
|
};
|
|
@@ -3656,6 +3879,101 @@ export declare class QueryInnerTemplateinstanceResponse extends $tea.Model {
|
|
|
3656
3879
|
[key: string]: any;
|
|
3657
3880
|
});
|
|
3658
3881
|
}
|
|
3882
|
+
export declare class QueryInnerTenantindirectmainclassRequest extends $tea.Model {
|
|
3883
|
+
authToken?: string;
|
|
3884
|
+
productInstanceId?: string;
|
|
3885
|
+
tenantId: string;
|
|
3886
|
+
static names(): {
|
|
3887
|
+
[key: string]: string;
|
|
3888
|
+
};
|
|
3889
|
+
static types(): {
|
|
3890
|
+
[key: string]: any;
|
|
3891
|
+
};
|
|
3892
|
+
constructor(map?: {
|
|
3893
|
+
[key: string]: any;
|
|
3894
|
+
});
|
|
3895
|
+
}
|
|
3896
|
+
export declare class QueryInnerTenantindirectmainclassResponse extends $tea.Model {
|
|
3897
|
+
reqMsgId?: string;
|
|
3898
|
+
resultCode?: string;
|
|
3899
|
+
resultMsg?: string;
|
|
3900
|
+
currentIndirectMainClassList?: string[];
|
|
3901
|
+
desc?: string;
|
|
3902
|
+
status?: string;
|
|
3903
|
+
failReason?: string;
|
|
3904
|
+
changingIndirectMainClassList?: string[];
|
|
3905
|
+
static names(): {
|
|
3906
|
+
[key: string]: string;
|
|
3907
|
+
};
|
|
3908
|
+
static types(): {
|
|
3909
|
+
[key: string]: any;
|
|
3910
|
+
};
|
|
3911
|
+
constructor(map?: {
|
|
3912
|
+
[key: string]: any;
|
|
3913
|
+
});
|
|
3914
|
+
}
|
|
3915
|
+
export declare class UpdateInnerTenantindirectmainclassRequest extends $tea.Model {
|
|
3916
|
+
authToken?: string;
|
|
3917
|
+
productInstanceId?: string;
|
|
3918
|
+
tenantId: string;
|
|
3919
|
+
indirectMainClassList: string[];
|
|
3920
|
+
desc?: string;
|
|
3921
|
+
static names(): {
|
|
3922
|
+
[key: string]: string;
|
|
3923
|
+
};
|
|
3924
|
+
static types(): {
|
|
3925
|
+
[key: string]: any;
|
|
3926
|
+
};
|
|
3927
|
+
constructor(map?: {
|
|
3928
|
+
[key: string]: any;
|
|
3929
|
+
});
|
|
3930
|
+
}
|
|
3931
|
+
export declare class UpdateInnerTenantindirectmainclassResponse extends $tea.Model {
|
|
3932
|
+
reqMsgId?: string;
|
|
3933
|
+
resultCode?: string;
|
|
3934
|
+
resultMsg?: string;
|
|
3935
|
+
static names(): {
|
|
3936
|
+
[key: string]: string;
|
|
3937
|
+
};
|
|
3938
|
+
static types(): {
|
|
3939
|
+
[key: string]: any;
|
|
3940
|
+
};
|
|
3941
|
+
constructor(map?: {
|
|
3942
|
+
[key: string]: any;
|
|
3943
|
+
});
|
|
3944
|
+
}
|
|
3945
|
+
export declare class SubmitInnerTemplatesyncreviewRequest extends $tea.Model {
|
|
3946
|
+
authToken?: string;
|
|
3947
|
+
productInstanceId?: string;
|
|
3948
|
+
tenantId: string;
|
|
3949
|
+
sourceTemplateCode: string;
|
|
3950
|
+
targetTemplateName: string;
|
|
3951
|
+
sourceTemplateVersion: string;
|
|
3952
|
+
static names(): {
|
|
3953
|
+
[key: string]: string;
|
|
3954
|
+
};
|
|
3955
|
+
static types(): {
|
|
3956
|
+
[key: string]: any;
|
|
3957
|
+
};
|
|
3958
|
+
constructor(map?: {
|
|
3959
|
+
[key: string]: any;
|
|
3960
|
+
});
|
|
3961
|
+
}
|
|
3962
|
+
export declare class SubmitInnerTemplatesyncreviewResponse extends $tea.Model {
|
|
3963
|
+
reqMsgId?: string;
|
|
3964
|
+
resultCode?: string;
|
|
3965
|
+
resultMsg?: string;
|
|
3966
|
+
sourceTemplateCode?: string;
|
|
3967
|
+
static names(): {
|
|
3968
|
+
[key: string]: string;
|
|
3969
|
+
};
|
|
3970
|
+
static types(): {
|
|
3971
|
+
[key: string]: any;
|
|
3972
|
+
};
|
|
3973
|
+
constructor(map?: {
|
|
3974
|
+
[key: string]: any;
|
|
3975
|
+
});
|
|
3976
|
+
}
|
|
3659
3977
|
export declare class CreateInsureRequest extends $tea.Model {
|
|
3660
3978
|
authToken?: string;
|
|
3661
3979
|
productInstanceId?: string;
|
|
@@ -3967,6 +4285,7 @@ export declare class QueryRiskRequest extends $tea.Model {
|
|
|
3967
4285
|
mobile: string;
|
|
3968
4286
|
alipayUserId?: string;
|
|
3969
4287
|
source?: string;
|
|
4288
|
+
riskBizScene?: string;
|
|
3970
4289
|
itemDetail?: ItemDetail;
|
|
3971
4290
|
priceDetail?: PriceDetail;
|
|
3972
4291
|
deliveryDetail?: DeliveryDetail;
|
|
@@ -3996,13 +4315,57 @@ export declare class QueryRiskResponse extends $tea.Model {
|
|
|
3996
4315
|
[key: string]: any;
|
|
3997
4316
|
});
|
|
3998
4317
|
}
|
|
4318
|
+
export declare class QueryRiskGoRequest extends $tea.Model {
|
|
4319
|
+
authToken?: string;
|
|
4320
|
+
productInstanceId?: string;
|
|
4321
|
+
riskType: string;
|
|
4322
|
+
businessCode: string;
|
|
4323
|
+
scene: string;
|
|
4324
|
+
userId?: string;
|
|
4325
|
+
openId?: string;
|
|
4326
|
+
merPid?: string;
|
|
4327
|
+
mobileNo?: string;
|
|
4328
|
+
certNo?: string;
|
|
4329
|
+
ip?: string;
|
|
4330
|
+
lbs?: string;
|
|
4331
|
+
role?: string;
|
|
4332
|
+
activityInfo?: string;
|
|
4333
|
+
purchaseQueryModel?: PurchaseQueryModel;
|
|
4334
|
+
scalperQueryModel?: ScalperQueryModel;
|
|
4335
|
+
awardingQueryModel?: AwardingQueryModel;
|
|
4336
|
+
farmingQueryModel?: FarmingQueryModel;
|
|
4337
|
+
baddebtQueryModel?: BaddebtQueryModel;
|
|
4338
|
+
static names(): {
|
|
4339
|
+
[key: string]: string;
|
|
4340
|
+
};
|
|
4341
|
+
static types(): {
|
|
4342
|
+
[key: string]: any;
|
|
4343
|
+
};
|
|
4344
|
+
constructor(map?: {
|
|
4345
|
+
[key: string]: any;
|
|
4346
|
+
});
|
|
4347
|
+
}
|
|
4348
|
+
export declare class QueryRiskGoResponse extends $tea.Model {
|
|
4349
|
+
reqMsgId?: string;
|
|
4350
|
+
resultCode?: string;
|
|
4351
|
+
resultMsg?: string;
|
|
4352
|
+
model?: RiskGoModel;
|
|
4353
|
+
static names(): {
|
|
4354
|
+
[key: string]: string;
|
|
4355
|
+
};
|
|
4356
|
+
static types(): {
|
|
4357
|
+
[key: string]: any;
|
|
4358
|
+
};
|
|
4359
|
+
constructor(map?: {
|
|
4360
|
+
[key: string]: any;
|
|
4361
|
+
});
|
|
4362
|
+
}
|
|
3999
4363
|
export declare class AllSignTemplateRequest extends $tea.Model {
|
|
4000
4364
|
authToken?: string;
|
|
4001
4365
|
productInstanceId?: string;
|
|
4002
4366
|
contractType?: string;
|
|
4003
4367
|
merchantId?: string;
|
|
4004
|
-
|
|
4005
|
-
fundId?: string;
|
|
4368
|
+
templateId?: string;
|
|
4006
4369
|
static names(): {
|
|
4007
4370
|
[key: string]: string;
|
|
4008
4371
|
};
|
|
@@ -4058,6 +4421,7 @@ export declare class SubmitSignFlowRequest extends $tea.Model {
|
|
|
4058
4421
|
userOrgName?: string;
|
|
4059
4422
|
userOrgIdType?: string;
|
|
4060
4423
|
userOrgIdNumber?: string;
|
|
4424
|
+
needFace?: boolean;
|
|
4061
4425
|
static names(): {
|
|
4062
4426
|
[key: string]: string;
|
|
4063
4427
|
};
|
|
@@ -4186,6 +4550,7 @@ export declare class SubmitFrontSignRequest extends $tea.Model {
|
|
|
4186
4550
|
userOrgIdNumber?: string;
|
|
4187
4551
|
userOrgIdType?: string;
|
|
4188
4552
|
userOrgName?: string;
|
|
4553
|
+
needFace?: boolean;
|
|
4189
4554
|
static names(): {
|
|
4190
4555
|
[key: string]: string;
|
|
4191
4556
|
};
|
|
@@ -4853,6 +5218,69 @@ export declare class UpdateTradeOrderResponse extends $tea.Model {
|
|
|
4853
5218
|
[key: string]: any;
|
|
4854
5219
|
});
|
|
4855
5220
|
}
|
|
5221
|
+
export declare class AddTradeFinanceprecheckRequest extends $tea.Model {
|
|
5222
|
+
authToken?: string;
|
|
5223
|
+
productInstanceId?: string;
|
|
5224
|
+
orderId: string;
|
|
5225
|
+
merchantId: string;
|
|
5226
|
+
fundIdList: string[];
|
|
5227
|
+
static names(): {
|
|
5228
|
+
[key: string]: string;
|
|
5229
|
+
};
|
|
5230
|
+
static types(): {
|
|
5231
|
+
[key: string]: any;
|
|
5232
|
+
};
|
|
5233
|
+
constructor(map?: {
|
|
5234
|
+
[key: string]: any;
|
|
5235
|
+
});
|
|
5236
|
+
}
|
|
5237
|
+
export declare class AddTradeFinanceprecheckResponse extends $tea.Model {
|
|
5238
|
+
reqMsgId?: string;
|
|
5239
|
+
resultCode?: string;
|
|
5240
|
+
resultMsg?: string;
|
|
5241
|
+
merchantId?: string;
|
|
5242
|
+
orderId?: string;
|
|
5243
|
+
fundCandidates?: string;
|
|
5244
|
+
static names(): {
|
|
5245
|
+
[key: string]: string;
|
|
5246
|
+
};
|
|
5247
|
+
static types(): {
|
|
5248
|
+
[key: string]: any;
|
|
5249
|
+
};
|
|
5250
|
+
constructor(map?: {
|
|
5251
|
+
[key: string]: any;
|
|
5252
|
+
});
|
|
5253
|
+
}
|
|
5254
|
+
export declare class GetTradeOrderfinanceinfoRequest extends $tea.Model {
|
|
5255
|
+
authToken?: string;
|
|
5256
|
+
productInstanceId?: string;
|
|
5257
|
+
orderId: string;
|
|
5258
|
+
merchantId: string;
|
|
5259
|
+
static names(): {
|
|
5260
|
+
[key: string]: string;
|
|
5261
|
+
};
|
|
5262
|
+
static types(): {
|
|
5263
|
+
[key: string]: any;
|
|
5264
|
+
};
|
|
5265
|
+
constructor(map?: {
|
|
5266
|
+
[key: string]: any;
|
|
5267
|
+
});
|
|
5268
|
+
}
|
|
5269
|
+
export declare class GetTradeOrderfinanceinfoResponse extends $tea.Model {
|
|
5270
|
+
reqMsgId?: string;
|
|
5271
|
+
resultCode?: string;
|
|
5272
|
+
resultMsg?: string;
|
|
5273
|
+
responseData?: string;
|
|
5274
|
+
static names(): {
|
|
5275
|
+
[key: string]: string;
|
|
5276
|
+
};
|
|
5277
|
+
static types(): {
|
|
5278
|
+
[key: string]: any;
|
|
5279
|
+
};
|
|
5280
|
+
constructor(map?: {
|
|
5281
|
+
[key: string]: any;
|
|
5282
|
+
});
|
|
5283
|
+
}
|
|
4856
5284
|
export declare class CreateWithholdSignRequest extends $tea.Model {
|
|
4857
5285
|
authToken?: string;
|
|
4858
5286
|
productInstanceId?: string;
|
|
@@ -4985,12 +5413,14 @@ export declare class RepayWithholdPlanRequest extends $tea.Model {
|
|
|
4985
5413
|
authToken?: string;
|
|
4986
5414
|
productInstanceId?: string;
|
|
4987
5415
|
orderId: string;
|
|
4988
|
-
periodNum
|
|
4989
|
-
gmtPay
|
|
4990
|
-
payOffAmount
|
|
5416
|
+
periodNum?: number;
|
|
5417
|
+
gmtPay?: string;
|
|
5418
|
+
payOffAmount?: number;
|
|
4991
5419
|
payOffType?: string;
|
|
4992
5420
|
payOffNo?: string;
|
|
4993
5421
|
payOffBankName?: string;
|
|
5422
|
+
operation?: string;
|
|
5423
|
+
cancelList?: SingleCancelModel[];
|
|
4994
5424
|
static names(): {
|
|
4995
5425
|
[key: string]: string;
|
|
4996
5426
|
};
|
|
@@ -5625,6 +6055,18 @@ export default class Client {
|
|
|
5625
6055
|
queryFundCompensateaccountEx(request: QueryFundCompensateaccountRequest, headers: {
|
|
5626
6056
|
[key: string]: string;
|
|
5627
6057
|
}, runtime: $Util.RuntimeOptions): Promise<QueryFundCompensateaccountResponse>;
|
|
6058
|
+
/**
|
|
6059
|
+
* Description: 资方查询订单融资信息
|
|
6060
|
+
* Summary: 资方查询订单融资信息
|
|
6061
|
+
*/
|
|
6062
|
+
getFundOrderfinanceinfo(request: GetFundOrderfinanceinfoRequest): Promise<GetFundOrderfinanceinfoResponse>;
|
|
6063
|
+
/**
|
|
6064
|
+
* Description: 资方查询订单融资信息
|
|
6065
|
+
* Summary: 资方查询订单融资信息
|
|
6066
|
+
*/
|
|
6067
|
+
getFundOrderfinanceinfoEx(request: GetFundOrderfinanceinfoRequest, headers: {
|
|
6068
|
+
[key: string]: string;
|
|
6069
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetFundOrderfinanceinfoResponse>;
|
|
5628
6070
|
/**
|
|
5629
6071
|
* Description: 内部调用,商品信息获取
|
|
5630
6072
|
* Summary: 商品信息获取
|
|
@@ -6419,6 +6861,42 @@ export default class Client {
|
|
|
6419
6861
|
queryInnerTemplateinstanceEx(request: QueryInnerTemplateinstanceRequest, headers: {
|
|
6420
6862
|
[key: string]: string;
|
|
6421
6863
|
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerTemplateinstanceResponse>;
|
|
6864
|
+
/**
|
|
6865
|
+
* Description: 查询租户类目信息详情
|
|
6866
|
+
* Summary: 查询租户类目信息详情
|
|
6867
|
+
*/
|
|
6868
|
+
queryInnerTenantindirectmainclass(request: QueryInnerTenantindirectmainclassRequest): Promise<QueryInnerTenantindirectmainclassResponse>;
|
|
6869
|
+
/**
|
|
6870
|
+
* Description: 查询租户类目信息详情
|
|
6871
|
+
* Summary: 查询租户类目信息详情
|
|
6872
|
+
*/
|
|
6873
|
+
queryInnerTenantindirectmainclassEx(request: QueryInnerTenantindirectmainclassRequest, headers: {
|
|
6874
|
+
[key: string]: string;
|
|
6875
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerTenantindirectmainclassResponse>;
|
|
6876
|
+
/**
|
|
6877
|
+
* Description: 修改租户间联类目类目信息
|
|
6878
|
+
* Summary: 修改租户间联类目类目信息
|
|
6879
|
+
*/
|
|
6880
|
+
updateInnerTenantindirectmainclass(request: UpdateInnerTenantindirectmainclassRequest): Promise<UpdateInnerTenantindirectmainclassResponse>;
|
|
6881
|
+
/**
|
|
6882
|
+
* Description: 修改租户间联类目类目信息
|
|
6883
|
+
* Summary: 修改租户间联类目类目信息
|
|
6884
|
+
*/
|
|
6885
|
+
updateInnerTenantindirectmainclassEx(request: UpdateInnerTenantindirectmainclassRequest, headers: {
|
|
6886
|
+
[key: string]: string;
|
|
6887
|
+
}, runtime: $Util.RuntimeOptions): Promise<UpdateInnerTenantindirectmainclassResponse>;
|
|
6888
|
+
/**
|
|
6889
|
+
* Description: 模板同步上线时强管控字段校验未通过提交后台审核
|
|
6890
|
+
* Summary: 模板同步上线审核提交
|
|
6891
|
+
*/
|
|
6892
|
+
submitInnerTemplatesyncreview(request: SubmitInnerTemplatesyncreviewRequest): Promise<SubmitInnerTemplatesyncreviewResponse>;
|
|
6893
|
+
/**
|
|
6894
|
+
* Description: 模板同步上线时强管控字段校验未通过提交后台审核
|
|
6895
|
+
* Summary: 模板同步上线审核提交
|
|
6896
|
+
*/
|
|
6897
|
+
submitInnerTemplatesyncreviewEx(request: SubmitInnerTemplatesyncreviewRequest, headers: {
|
|
6898
|
+
[key: string]: string;
|
|
6899
|
+
}, runtime: $Util.RuntimeOptions): Promise<SubmitInnerTemplatesyncreviewResponse>;
|
|
6422
6900
|
/**
|
|
6423
6901
|
* Description: 一键投保
|
|
6424
6902
|
* Summary: 投保
|
|
@@ -6539,6 +7017,18 @@ export default class Client {
|
|
|
6539
7017
|
queryRiskEx(request: QueryRiskRequest, headers: {
|
|
6540
7018
|
[key: string]: string;
|
|
6541
7019
|
}, runtime: $Util.RuntimeOptions): Promise<QueryRiskResponse>;
|
|
7020
|
+
/**
|
|
7021
|
+
* Description: 云 api 发起风控分析,获取风险评估
|
|
7022
|
+
* Summary: 云 api 发起风控分析,获取风险评估
|
|
7023
|
+
*/
|
|
7024
|
+
queryRiskGo(request: QueryRiskGoRequest): Promise<QueryRiskGoResponse>;
|
|
7025
|
+
/**
|
|
7026
|
+
* Description: 云 api 发起风控分析,获取风险评估
|
|
7027
|
+
* Summary: 云 api 发起风控分析,获取风险评估
|
|
7028
|
+
*/
|
|
7029
|
+
queryRiskGoEx(request: QueryRiskGoRequest, headers: {
|
|
7030
|
+
[key: string]: string;
|
|
7031
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryRiskGoResponse>;
|
|
6542
7032
|
/**
|
|
6543
7033
|
* Description: 电子合同签署的合同模板查询服务
|
|
6544
7034
|
* Summary: 电子合同签署的合同模板查询服务
|
|
@@ -6839,6 +7329,30 @@ export default class Client {
|
|
|
6839
7329
|
updateTradeOrderEx(request: UpdateTradeOrderRequest, headers: {
|
|
6840
7330
|
[key: string]: string;
|
|
6841
7331
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateTradeOrderResponse>;
|
|
7332
|
+
/**
|
|
7333
|
+
* Description: 融资订单追加预审资金方
|
|
7334
|
+
* Summary: 融资订单追加预审资金方
|
|
7335
|
+
*/
|
|
7336
|
+
addTradeFinanceprecheck(request: AddTradeFinanceprecheckRequest): Promise<AddTradeFinanceprecheckResponse>;
|
|
7337
|
+
/**
|
|
7338
|
+
* Description: 融资订单追加预审资金方
|
|
7339
|
+
* Summary: 融资订单追加预审资金方
|
|
7340
|
+
*/
|
|
7341
|
+
addTradeFinanceprecheckEx(request: AddTradeFinanceprecheckRequest, headers: {
|
|
7342
|
+
[key: string]: string;
|
|
7343
|
+
}, runtime: $Util.RuntimeOptions): Promise<AddTradeFinanceprecheckResponse>;
|
|
7344
|
+
/**
|
|
7345
|
+
* Description: 订单融资信息查询接口
|
|
7346
|
+
* Summary: 订单融资信息查询接口
|
|
7347
|
+
*/
|
|
7348
|
+
getTradeOrderfinanceinfo(request: GetTradeOrderfinanceinfoRequest): Promise<GetTradeOrderfinanceinfoResponse>;
|
|
7349
|
+
/**
|
|
7350
|
+
* Description: 订单融资信息查询接口
|
|
7351
|
+
* Summary: 订单融资信息查询接口
|
|
7352
|
+
*/
|
|
7353
|
+
getTradeOrderfinanceinfoEx(request: GetTradeOrderfinanceinfoRequest, headers: {
|
|
7354
|
+
[key: string]: string;
|
|
7355
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetTradeOrderfinanceinfoResponse>;
|
|
6842
7356
|
/**
|
|
6843
7357
|
* Description: 代扣签约创建
|
|
6844
7358
|
* Summary: 代扣签约
|
|
@@ -6889,16 +7403,16 @@ export default class Client {
|
|
|
6889
7403
|
}, runtime: $Util.RuntimeOptions): Promise<CancelWithholdPlanResponse>;
|
|
6890
7404
|
/**
|
|
6891
7405
|
* Description: 重要说明:
|
|
6892
|
-
1.
|
|
7406
|
+
1. 这个接口是取消订单某一、多期代扣计划中以其他方式还款的金额,取消之后代扣不再执行该期计划。
|
|
6893
7407
|
2. 对通过其他方式还款的第三方单号留存;例如:银行流水号或微信流水号。
|
|
6894
|
-
* Summary:
|
|
7408
|
+
* Summary: 单期多期代扣取消
|
|
6895
7409
|
*/
|
|
6896
7410
|
repayWithholdPlan(request: RepayWithholdPlanRequest): Promise<RepayWithholdPlanResponse>;
|
|
6897
7411
|
/**
|
|
6898
7412
|
* Description: 重要说明:
|
|
6899
|
-
1.
|
|
7413
|
+
1. 这个接口是取消订单某一、多期代扣计划中以其他方式还款的金额,取消之后代扣不再执行该期计划。
|
|
6900
7414
|
2. 对通过其他方式还款的第三方单号留存;例如:银行流水号或微信流水号。
|
|
6901
|
-
* Summary:
|
|
7415
|
+
* Summary: 单期多期代扣取消
|
|
6902
7416
|
*/
|
|
6903
7417
|
repayWithholdPlanEx(request: RepayWithholdPlanRequest, headers: {
|
|
6904
7418
|
[key: string]: string;
|