@antchain/ato 1.11.3 → 1.13.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 +1180 -301
- package/dist/client.js +1983 -647
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +5695 -3759
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,7 +157,8 @@ export declare class AppletRiskModel extends $tea.Model {
|
|
|
125
157
|
[key: string]: any;
|
|
126
158
|
});
|
|
127
159
|
}
|
|
128
|
-
export declare class
|
|
160
|
+
export declare class DivideBindingTransInInfo extends $tea.Model {
|
|
161
|
+
alipayPid: string;
|
|
129
162
|
static names(): {
|
|
130
163
|
[key: string]: string;
|
|
131
164
|
};
|
|
@@ -136,21 +169,10 @@ export declare class UserSyncInfo extends $tea.Model {
|
|
|
136
169
|
[key: string]: any;
|
|
137
170
|
});
|
|
138
171
|
}
|
|
139
|
-
export declare class
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
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;
|
|
172
|
+
export declare class InsureProductInfo extends $tea.Model {
|
|
173
|
+
productId: string;
|
|
174
|
+
productImeiId: string;
|
|
175
|
+
purchaseAmount: number;
|
|
154
176
|
static names(): {
|
|
155
177
|
[key: string]: string;
|
|
156
178
|
};
|
|
@@ -161,10 +183,16 @@ export declare class CompanyInfo extends $tea.Model {
|
|
|
161
183
|
[key: string]: any;
|
|
162
184
|
});
|
|
163
185
|
}
|
|
164
|
-
export declare class
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
186
|
+
export declare class TemplateComponent extends $tea.Model {
|
|
187
|
+
templateCode: string;
|
|
188
|
+
id: string;
|
|
189
|
+
name: string;
|
|
190
|
+
uk?: string;
|
|
191
|
+
placeholder?: string;
|
|
192
|
+
enableEdit?: string;
|
|
193
|
+
required?: string;
|
|
194
|
+
type?: string;
|
|
195
|
+
value: string;
|
|
168
196
|
static names(): {
|
|
169
197
|
[key: string]: string;
|
|
170
198
|
};
|
|
@@ -175,8 +203,9 @@ export declare class UserPerformanceInfo extends $tea.Model {
|
|
|
175
203
|
[key: string]: any;
|
|
176
204
|
});
|
|
177
205
|
}
|
|
178
|
-
export declare class
|
|
179
|
-
|
|
206
|
+
export declare class StaticData extends $tea.Model {
|
|
207
|
+
moduleName: string;
|
|
208
|
+
moduleDetailList: StaticDataModuleDetail[];
|
|
180
209
|
static names(): {
|
|
181
210
|
[key: string]: string;
|
|
182
211
|
};
|
|
@@ -187,10 +216,12 @@ export declare class MarketingScoreQueryInfo extends $tea.Model {
|
|
|
187
216
|
[key: string]: any;
|
|
188
217
|
});
|
|
189
218
|
}
|
|
190
|
-
export declare class
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
219
|
+
export declare class MerchantAgentPage extends $tea.Model {
|
|
220
|
+
payExpandId: string;
|
|
221
|
+
agentName: string;
|
|
222
|
+
tenantId: string;
|
|
223
|
+
bizType: string;
|
|
224
|
+
payExpandStatus: string;
|
|
194
225
|
static names(): {
|
|
195
226
|
[key: string]: string;
|
|
196
227
|
};
|
|
@@ -201,11 +232,20 @@ export declare class InsureProductInfo extends $tea.Model {
|
|
|
201
232
|
[key: string]: any;
|
|
202
233
|
});
|
|
203
234
|
}
|
|
204
|
-
export declare class
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
235
|
+
export declare class OrderInfo extends $tea.Model {
|
|
236
|
+
orderId?: string;
|
|
237
|
+
orderCreateTime?: string;
|
|
238
|
+
orderPayTime?: string;
|
|
239
|
+
totalRentMoney?: number;
|
|
240
|
+
rentTerm?: number;
|
|
241
|
+
rentUnit?: string;
|
|
242
|
+
orderStatus?: string;
|
|
243
|
+
orderSubStatus?: string;
|
|
244
|
+
depositPrice?: number;
|
|
245
|
+
buyOutPrice?: number;
|
|
246
|
+
logisticType?: string;
|
|
247
|
+
dueMode?: number;
|
|
248
|
+
downPayment?: number;
|
|
209
249
|
static names(): {
|
|
210
250
|
[key: string]: string;
|
|
211
251
|
};
|
|
@@ -216,16 +256,8 @@ export declare class RiskStrategy extends $tea.Model {
|
|
|
216
256
|
[key: string]: any;
|
|
217
257
|
});
|
|
218
258
|
}
|
|
219
|
-
export declare class
|
|
220
|
-
|
|
221
|
-
id: string;
|
|
222
|
-
name: string;
|
|
223
|
-
uk?: string;
|
|
224
|
-
placeholder?: string;
|
|
225
|
-
enableEdit?: string;
|
|
226
|
-
required?: string;
|
|
227
|
-
type?: string;
|
|
228
|
-
value: string;
|
|
259
|
+
export declare class OrderPromiseInfo extends $tea.Model {
|
|
260
|
+
repayStrategyList?: OrderRepayStrategy[];
|
|
229
261
|
static names(): {
|
|
230
262
|
[key: string]: string;
|
|
231
263
|
};
|
|
@@ -236,17 +268,47 @@ export declare class TemplateComponent extends $tea.Model {
|
|
|
236
268
|
[key: string]: any;
|
|
237
269
|
});
|
|
238
270
|
}
|
|
239
|
-
export declare class
|
|
240
|
-
|
|
241
|
-
|
|
271
|
+
export declare class NoticeInfo extends $tea.Model {
|
|
272
|
+
noticeId?: number;
|
|
273
|
+
title?: string;
|
|
274
|
+
noticeCreateTime?: string;
|
|
275
|
+
unread?: boolean;
|
|
276
|
+
static names(): {
|
|
277
|
+
[key: string]: string;
|
|
278
|
+
};
|
|
279
|
+
static types(): {
|
|
280
|
+
[key: string]: any;
|
|
281
|
+
};
|
|
282
|
+
constructor(map?: {
|
|
283
|
+
[key: string]: any;
|
|
284
|
+
});
|
|
285
|
+
}
|
|
286
|
+
export declare class AuditInfo extends $tea.Model {
|
|
287
|
+
stage: string;
|
|
288
|
+
auditSubject: string;
|
|
289
|
+
status: string;
|
|
290
|
+
applyDateStr: string;
|
|
291
|
+
failReason: string;
|
|
292
|
+
static names(): {
|
|
293
|
+
[key: string]: string;
|
|
294
|
+
};
|
|
295
|
+
static types(): {
|
|
296
|
+
[key: string]: any;
|
|
297
|
+
};
|
|
298
|
+
constructor(map?: {
|
|
299
|
+
[key: string]: any;
|
|
300
|
+
});
|
|
301
|
+
}
|
|
302
|
+
export declare class ProductInfo extends $tea.Model {
|
|
303
|
+
merchantId?: string;
|
|
242
304
|
productName?: string;
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
305
|
+
productId?: string;
|
|
306
|
+
productModel?: string;
|
|
307
|
+
productVersion?: string;
|
|
308
|
+
productPrice?: number;
|
|
309
|
+
mainClass?: string;
|
|
310
|
+
subClass?: string;
|
|
311
|
+
productBrand?: string;
|
|
250
312
|
static names(): {
|
|
251
313
|
[key: string]: string;
|
|
252
314
|
};
|
|
@@ -257,9 +319,11 @@ export declare class InsureOrderInfo extends $tea.Model {
|
|
|
257
319
|
[key: string]: any;
|
|
258
320
|
});
|
|
259
321
|
}
|
|
260
|
-
export declare class
|
|
261
|
-
|
|
262
|
-
|
|
322
|
+
export declare class LegalInfoUpdate extends $tea.Model {
|
|
323
|
+
legalName?: string;
|
|
324
|
+
legalCertNo?: string;
|
|
325
|
+
legalCertFrontFile?: FileInfo;
|
|
326
|
+
legalCertBackFile?: FileInfo;
|
|
263
327
|
static names(): {
|
|
264
328
|
[key: string]: string;
|
|
265
329
|
};
|
|
@@ -270,9 +334,7 @@ export declare class MarketingScoreInfo extends $tea.Model {
|
|
|
270
334
|
[key: string]: any;
|
|
271
335
|
});
|
|
272
336
|
}
|
|
273
|
-
export declare class
|
|
274
|
-
moduleName: string;
|
|
275
|
-
moduleDetailList: StaticDataModuleDetail[];
|
|
337
|
+
export declare class PromiseInfo extends $tea.Model {
|
|
276
338
|
static names(): {
|
|
277
339
|
[key: string]: string;
|
|
278
340
|
};
|
|
@@ -283,12 +345,10 @@ export declare class StaticData extends $tea.Model {
|
|
|
283
345
|
[key: string]: any;
|
|
284
346
|
});
|
|
285
347
|
}
|
|
286
|
-
export declare class
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
bizType: string;
|
|
291
|
-
payExpandStatus: string;
|
|
348
|
+
export declare class CustomerServiceInfo extends $tea.Model {
|
|
349
|
+
merchantId?: string;
|
|
350
|
+
merchantName?: string;
|
|
351
|
+
processType?: string;
|
|
292
352
|
static names(): {
|
|
293
353
|
[key: string]: string;
|
|
294
354
|
};
|
|
@@ -299,11 +359,10 @@ export declare class MerchantAgentPage extends $tea.Model {
|
|
|
299
359
|
[key: string]: any;
|
|
300
360
|
});
|
|
301
361
|
}
|
|
302
|
-
export declare class
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
initialRentPrice: number;
|
|
362
|
+
export declare class OperationDivideTransInModel extends $tea.Model {
|
|
363
|
+
transInUserId: string;
|
|
364
|
+
divideAmount: number;
|
|
365
|
+
desc?: string;
|
|
307
366
|
static names(): {
|
|
308
367
|
[key: string]: string;
|
|
309
368
|
};
|
|
@@ -314,16 +373,12 @@ export declare class PriceDetail extends $tea.Model {
|
|
|
314
373
|
[key: string]: any;
|
|
315
374
|
});
|
|
316
375
|
}
|
|
317
|
-
export declare class
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
msgRetryTime: number;
|
|
324
|
-
msgContent: string;
|
|
325
|
-
msgCallbackUrl: string;
|
|
326
|
-
newMsgCallbackUrl: string;
|
|
376
|
+
export declare class PurchaseQueryModel extends $tea.Model {
|
|
377
|
+
outOrderNo?: string;
|
|
378
|
+
orderNo?: string;
|
|
379
|
+
bankCardNo?: string;
|
|
380
|
+
companyName?: string;
|
|
381
|
+
salesAmount?: number;
|
|
327
382
|
static names(): {
|
|
328
383
|
[key: string]: string;
|
|
329
384
|
};
|
|
@@ -334,20 +389,113 @@ export declare class OrderMsgInfo extends $tea.Model {
|
|
|
334
389
|
[key: string]: any;
|
|
335
390
|
});
|
|
336
391
|
}
|
|
337
|
-
export declare class
|
|
392
|
+
export declare class OperateDivideInfo extends $tea.Model {
|
|
393
|
+
periodNum?: number;
|
|
394
|
+
operationDivideTransInList?: OperationDivideTransInDetailInfo[];
|
|
395
|
+
static names(): {
|
|
396
|
+
[key: string]: string;
|
|
397
|
+
};
|
|
398
|
+
static types(): {
|
|
399
|
+
[key: string]: any;
|
|
400
|
+
};
|
|
401
|
+
constructor(map?: {
|
|
402
|
+
[key: string]: any;
|
|
403
|
+
});
|
|
404
|
+
}
|
|
405
|
+
export declare class OrderFulfillmentInfo extends $tea.Model {
|
|
406
|
+
leaseTermIndex?: number;
|
|
407
|
+
rentalReturnState?: string;
|
|
408
|
+
realRepayMoney?: number;
|
|
409
|
+
rentalMoney?: number;
|
|
410
|
+
returnTime?: string;
|
|
411
|
+
static names(): {
|
|
412
|
+
[key: string]: string;
|
|
413
|
+
};
|
|
414
|
+
static types(): {
|
|
415
|
+
[key: string]: any;
|
|
416
|
+
};
|
|
417
|
+
constructor(map?: {
|
|
418
|
+
[key: string]: any;
|
|
419
|
+
});
|
|
420
|
+
}
|
|
421
|
+
export declare class RiskScene extends $tea.Model {
|
|
422
|
+
sceneCode: string;
|
|
423
|
+
decision: string;
|
|
424
|
+
static names(): {
|
|
425
|
+
[key: string]: string;
|
|
426
|
+
};
|
|
427
|
+
static types(): {
|
|
428
|
+
[key: string]: any;
|
|
429
|
+
};
|
|
430
|
+
constructor(map?: {
|
|
431
|
+
[key: string]: any;
|
|
432
|
+
});
|
|
433
|
+
}
|
|
434
|
+
export declare class RelationPage extends $tea.Model {
|
|
435
|
+
relationId: string;
|
|
436
|
+
companyName: string;
|
|
437
|
+
merchantId: string;
|
|
438
|
+
status: string;
|
|
439
|
+
subjectMerchantId: string;
|
|
440
|
+
subjectCompanyName: string;
|
|
441
|
+
static names(): {
|
|
442
|
+
[key: string]: string;
|
|
443
|
+
};
|
|
444
|
+
static types(): {
|
|
445
|
+
[key: string]: any;
|
|
446
|
+
};
|
|
447
|
+
constructor(map?: {
|
|
448
|
+
[key: string]: any;
|
|
449
|
+
});
|
|
450
|
+
}
|
|
451
|
+
export declare class BaddebtQueryModel extends $tea.Model {
|
|
452
|
+
serviceCategory?: string;
|
|
453
|
+
totalAmount?: number;
|
|
454
|
+
totalQuantity?: number;
|
|
455
|
+
userName?: string;
|
|
456
|
+
isvPid?: string;
|
|
457
|
+
apdid?: string;
|
|
458
|
+
static names(): {
|
|
459
|
+
[key: string]: string;
|
|
460
|
+
};
|
|
461
|
+
static types(): {
|
|
462
|
+
[key: string]: any;
|
|
463
|
+
};
|
|
464
|
+
constructor(map?: {
|
|
465
|
+
[key: string]: any;
|
|
466
|
+
});
|
|
467
|
+
}
|
|
468
|
+
export declare class CompanyInfoUpdate extends $tea.Model {
|
|
469
|
+
businessLicenseFile?: FileInfo;
|
|
470
|
+
productMainClass?: string;
|
|
471
|
+
companyName?: string;
|
|
472
|
+
companyAliasName?: string;
|
|
473
|
+
tenantId?: string;
|
|
474
|
+
companyMobile?: string;
|
|
475
|
+
companyAddress?: string;
|
|
476
|
+
contactName?: string;
|
|
477
|
+
contactMobile?: string;
|
|
478
|
+
merchantType?: string;
|
|
479
|
+
static names(): {
|
|
480
|
+
[key: string]: string;
|
|
481
|
+
};
|
|
482
|
+
static types(): {
|
|
483
|
+
[key: string]: any;
|
|
484
|
+
};
|
|
485
|
+
constructor(map?: {
|
|
486
|
+
[key: string]: any;
|
|
487
|
+
});
|
|
488
|
+
}
|
|
489
|
+
export declare class OrderSearchInfo extends $tea.Model {
|
|
338
490
|
orderId?: string;
|
|
491
|
+
agreementNo?: string;
|
|
339
492
|
orderCreateTime?: string;
|
|
340
|
-
orderPayTime?: string;
|
|
341
493
|
totalRentMoney?: number;
|
|
342
494
|
rentTerm?: number;
|
|
343
495
|
rentUnit?: string;
|
|
344
496
|
orderStatus?: string;
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
buyOutPrice?: number;
|
|
348
|
-
logisticType?: string;
|
|
349
|
-
dueMode?: number;
|
|
350
|
-
downPayment?: number;
|
|
497
|
+
userName?: string;
|
|
498
|
+
userPhoneNumber?: string;
|
|
351
499
|
static names(): {
|
|
352
500
|
[key: string]: string;
|
|
353
501
|
};
|
|
@@ -358,8 +506,15 @@ export declare class OrderInfo extends $tea.Model {
|
|
|
358
506
|
[key: string]: any;
|
|
359
507
|
});
|
|
360
508
|
}
|
|
361
|
-
export declare class
|
|
362
|
-
|
|
509
|
+
export declare class ApplicationInfo extends $tea.Model {
|
|
510
|
+
applicationScene: string;
|
|
511
|
+
tinyAppId: string;
|
|
512
|
+
siteName: string;
|
|
513
|
+
sitUrl: string;
|
|
514
|
+
merchantName: string;
|
|
515
|
+
merchantServiceName: string;
|
|
516
|
+
merchantServiceDesc: string;
|
|
517
|
+
siteInfo?: SiteInfo[];
|
|
363
518
|
static names(): {
|
|
364
519
|
[key: string]: string;
|
|
365
520
|
};
|
|
@@ -370,11 +525,10 @@ export declare class OrderPromiseInfo extends $tea.Model {
|
|
|
370
525
|
[key: string]: any;
|
|
371
526
|
});
|
|
372
527
|
}
|
|
373
|
-
export declare class
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
unread?: boolean;
|
|
528
|
+
export declare class ItemDetail extends $tea.Model {
|
|
529
|
+
goodsCategory?: string;
|
|
530
|
+
itemName?: string;
|
|
531
|
+
quantity?: number;
|
|
378
532
|
static names(): {
|
|
379
533
|
[key: string]: string;
|
|
380
534
|
};
|
|
@@ -385,14 +539,11 @@ export declare class NoticeInfo extends $tea.Model {
|
|
|
385
539
|
[key: string]: any;
|
|
386
540
|
});
|
|
387
541
|
}
|
|
388
|
-
export declare class
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
merchantName?: string;
|
|
394
|
-
merchantServiceName?: string;
|
|
395
|
-
merchantServiceDesc?: string;
|
|
542
|
+
export declare class RiskGoModel extends $tea.Model {
|
|
543
|
+
riskType: string;
|
|
544
|
+
riskValue: string;
|
|
545
|
+
riskDesc: string;
|
|
546
|
+
infoCode?: string;
|
|
396
547
|
static names(): {
|
|
397
548
|
[key: string]: string;
|
|
398
549
|
};
|
|
@@ -403,12 +554,13 @@ export declare class ApplicationInfoUpdate extends $tea.Model {
|
|
|
403
554
|
[key: string]: any;
|
|
404
555
|
});
|
|
405
556
|
}
|
|
406
|
-
export declare class
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
557
|
+
export declare class SingleCancelModel extends $tea.Model {
|
|
558
|
+
periodNum: number;
|
|
559
|
+
gmtPay: string;
|
|
560
|
+
payOffAmount: number;
|
|
561
|
+
payOffType?: string;
|
|
562
|
+
payOffNo?: string;
|
|
563
|
+
payOffBankName?: string;
|
|
412
564
|
static names(): {
|
|
413
565
|
[key: string]: string;
|
|
414
566
|
};
|
|
@@ -419,13 +571,49 @@ export declare class AuditInfo extends $tea.Model {
|
|
|
419
571
|
[key: string]: any;
|
|
420
572
|
});
|
|
421
573
|
}
|
|
422
|
-
export declare class
|
|
574
|
+
export declare class RiskModel extends $tea.Model {
|
|
575
|
+
sceneCode: string;
|
|
576
|
+
score: string;
|
|
577
|
+
delinquencyRate?: string;
|
|
578
|
+
riskAdvice?: string;
|
|
579
|
+
riskRank?: string;
|
|
580
|
+
flowId: string;
|
|
581
|
+
static names(): {
|
|
582
|
+
[key: string]: string;
|
|
583
|
+
};
|
|
584
|
+
static types(): {
|
|
585
|
+
[key: string]: any;
|
|
586
|
+
};
|
|
587
|
+
constructor(map?: {
|
|
588
|
+
[key: string]: any;
|
|
589
|
+
});
|
|
590
|
+
}
|
|
591
|
+
export declare class ScalperQueryModel extends $tea.Model {
|
|
592
|
+
registrationPhone?: string;
|
|
593
|
+
certificateDate?: string;
|
|
594
|
+
loginPhone?: string;
|
|
595
|
+
registrationCert?: string;
|
|
596
|
+
loginCert?: string;
|
|
597
|
+
registrationDate?: string;
|
|
598
|
+
certType?: number;
|
|
599
|
+
bankCardNo?: string;
|
|
600
|
+
emailAddress?: string;
|
|
601
|
+
imei?: string;
|
|
602
|
+
imsi?: string;
|
|
603
|
+
macAddress?: string;
|
|
604
|
+
apdid?: string;
|
|
605
|
+
outOrderNo?: string;
|
|
606
|
+
orderNo?: string;
|
|
607
|
+
salesAmount?: number;
|
|
423
608
|
userName?: string;
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
609
|
+
mailingPhone?: string;
|
|
610
|
+
mailingAddress?: string;
|
|
611
|
+
isEmployee?: string;
|
|
612
|
+
channel?: string;
|
|
613
|
+
isvPid?: string;
|
|
614
|
+
storeMccDesc?: string;
|
|
615
|
+
customerId?: string;
|
|
616
|
+
orderItemsInfoList?: ScalperQueryOrderItem[];
|
|
429
617
|
static names(): {
|
|
430
618
|
[key: string]: string;
|
|
431
619
|
};
|
|
@@ -436,16 +624,7 @@ export declare class OrderUserInfo extends $tea.Model {
|
|
|
436
624
|
[key: string]: any;
|
|
437
625
|
});
|
|
438
626
|
}
|
|
439
|
-
export declare class
|
|
440
|
-
merchantId?: string;
|
|
441
|
-
productName?: string;
|
|
442
|
-
productId?: string;
|
|
443
|
-
productModel?: string;
|
|
444
|
-
productVersion?: string;
|
|
445
|
-
productPrice?: number;
|
|
446
|
-
mainClass?: string;
|
|
447
|
-
subClass?: string;
|
|
448
|
-
productBrand?: string;
|
|
627
|
+
export declare class UserSyncInfo extends $tea.Model {
|
|
449
628
|
static names(): {
|
|
450
629
|
[key: string]: string;
|
|
451
630
|
};
|
|
@@ -456,7 +635,21 @@ export declare class ProductInfo extends $tea.Model {
|
|
|
456
635
|
[key: string]: any;
|
|
457
636
|
});
|
|
458
637
|
}
|
|
459
|
-
export declare class
|
|
638
|
+
export declare class CompanyInfo extends $tea.Model {
|
|
639
|
+
businessLicenseFile: FileInfo;
|
|
640
|
+
productMainClass: string;
|
|
641
|
+
companyName: string;
|
|
642
|
+
companyAliasName: string;
|
|
643
|
+
tenantId?: string;
|
|
644
|
+
merchantId: string;
|
|
645
|
+
merchantType?: string;
|
|
646
|
+
companyMobile: string;
|
|
647
|
+
companyAddress: string;
|
|
648
|
+
contactName: string;
|
|
649
|
+
contactMobile: string;
|
|
650
|
+
bindAlipayNo: string;
|
|
651
|
+
settleAlipayNo: string;
|
|
652
|
+
bindAlipayUid: string;
|
|
460
653
|
static names(): {
|
|
461
654
|
[key: string]: string;
|
|
462
655
|
};
|
|
@@ -467,11 +660,58 @@ export declare class OrderGoodsModel extends $tea.Model {
|
|
|
467
660
|
[key: string]: any;
|
|
468
661
|
});
|
|
469
662
|
}
|
|
470
|
-
export declare class
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
663
|
+
export declare class UserPerformanceInfo extends $tea.Model {
|
|
664
|
+
periodNum: number;
|
|
665
|
+
payDate: string;
|
|
666
|
+
payMoney: number;
|
|
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 MarketingScoreQueryInfo extends $tea.Model {
|
|
678
|
+
phoneNum?: string;
|
|
679
|
+
static names(): {
|
|
680
|
+
[key: string]: string;
|
|
681
|
+
};
|
|
682
|
+
static types(): {
|
|
683
|
+
[key: string]: any;
|
|
684
|
+
};
|
|
685
|
+
constructor(map?: {
|
|
686
|
+
[key: string]: any;
|
|
687
|
+
});
|
|
688
|
+
}
|
|
689
|
+
export declare class RiskStrategy extends $tea.Model {
|
|
690
|
+
id: string;
|
|
691
|
+
name: string;
|
|
692
|
+
decision: string;
|
|
693
|
+
sceneCode: string;
|
|
694
|
+
static names(): {
|
|
695
|
+
[key: string]: string;
|
|
696
|
+
};
|
|
697
|
+
static types(): {
|
|
698
|
+
[key: string]: any;
|
|
699
|
+
};
|
|
700
|
+
constructor(map?: {
|
|
701
|
+
[key: string]: any;
|
|
702
|
+
});
|
|
703
|
+
}
|
|
704
|
+
export declare class InsureOrderInfo extends $tea.Model {
|
|
705
|
+
orderId?: string;
|
|
706
|
+
insureId?: string;
|
|
707
|
+
productName?: string;
|
|
708
|
+
insureStartTime?: string;
|
|
709
|
+
insureEndTime?: string;
|
|
710
|
+
insureAmount?: number;
|
|
711
|
+
insurePremium?: number;
|
|
712
|
+
status?: string;
|
|
713
|
+
policyUrl?: string;
|
|
714
|
+
validateCode?: string;
|
|
475
715
|
static names(): {
|
|
476
716
|
[key: string]: string;
|
|
477
717
|
};
|
|
@@ -482,7 +722,9 @@ export declare class LegalInfoUpdate extends $tea.Model {
|
|
|
482
722
|
[key: string]: any;
|
|
483
723
|
});
|
|
484
724
|
}
|
|
485
|
-
export declare class
|
|
725
|
+
export declare class MarketingScoreInfo extends $tea.Model {
|
|
726
|
+
phoneNum?: string;
|
|
727
|
+
score?: string;
|
|
486
728
|
static names(): {
|
|
487
729
|
[key: string]: string;
|
|
488
730
|
};
|
|
@@ -493,10 +735,11 @@ export declare class PromiseInfo extends $tea.Model {
|
|
|
493
735
|
[key: string]: any;
|
|
494
736
|
});
|
|
495
737
|
}
|
|
496
|
-
export declare class
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
738
|
+
export declare class PriceDetail extends $tea.Model {
|
|
739
|
+
periodNum: number;
|
|
740
|
+
depositPrice: number;
|
|
741
|
+
buyoutPrice: number;
|
|
742
|
+
initialRentPrice: number;
|
|
500
743
|
static names(): {
|
|
501
744
|
[key: string]: string;
|
|
502
745
|
};
|
|
@@ -507,10 +750,16 @@ export declare class DeliveryDetail extends $tea.Model {
|
|
|
507
750
|
[key: string]: any;
|
|
508
751
|
});
|
|
509
752
|
}
|
|
510
|
-
export declare class
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
753
|
+
export declare class OrderMsgInfo extends $tea.Model {
|
|
754
|
+
orderId: string;
|
|
755
|
+
msgId: string;
|
|
756
|
+
msgPublishType: string;
|
|
757
|
+
msgCreateTime: string;
|
|
758
|
+
msgStatus: string;
|
|
759
|
+
msgRetryTime: number;
|
|
760
|
+
msgContent: string;
|
|
761
|
+
msgCallbackUrl: string;
|
|
762
|
+
newMsgCallbackUrl: string;
|
|
514
763
|
static names(): {
|
|
515
764
|
[key: string]: string;
|
|
516
765
|
};
|
|
@@ -521,10 +770,19 @@ export declare class CustomerServiceInfo extends $tea.Model {
|
|
|
521
770
|
[key: string]: any;
|
|
522
771
|
});
|
|
523
772
|
}
|
|
524
|
-
export declare class
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
773
|
+
export declare class AwardingQueryModel extends $tea.Model {
|
|
774
|
+
opposingUserid?: string;
|
|
775
|
+
opposingOpenId?: string;
|
|
776
|
+
serviceCategory?: string;
|
|
777
|
+
isvPid?: string;
|
|
778
|
+
bankCardNo?: string;
|
|
779
|
+
imei?: string;
|
|
780
|
+
imsi?: string;
|
|
781
|
+
salesAmount?: number;
|
|
782
|
+
userName?: string;
|
|
783
|
+
storeMccDesc?: string;
|
|
784
|
+
customerId: string;
|
|
785
|
+
qrCode?: string;
|
|
528
786
|
static names(): {
|
|
529
787
|
[key: string]: string;
|
|
530
788
|
};
|
|
@@ -535,13 +793,14 @@ export declare class OperationDivideTransInModel extends $tea.Model {
|
|
|
535
793
|
[key: string]: any;
|
|
536
794
|
});
|
|
537
795
|
}
|
|
538
|
-
export declare class
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
796
|
+
export declare class ApplicationInfoUpdate extends $tea.Model {
|
|
797
|
+
applicationScene?: string;
|
|
798
|
+
tinyAppId?: string;
|
|
799
|
+
siteName?: string;
|
|
800
|
+
sitUrl?: string;
|
|
801
|
+
merchantName?: string;
|
|
802
|
+
merchantServiceName?: string;
|
|
803
|
+
merchantServiceDesc?: string;
|
|
545
804
|
static names(): {
|
|
546
805
|
[key: string]: string;
|
|
547
806
|
};
|
|
@@ -552,12 +811,13 @@ export declare class AgreementPage extends $tea.Model {
|
|
|
552
811
|
[key: string]: any;
|
|
553
812
|
});
|
|
554
813
|
}
|
|
555
|
-
export declare class
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
814
|
+
export declare class OrderUserInfo extends $tea.Model {
|
|
815
|
+
userName?: string;
|
|
816
|
+
userPhoneNumber?: string;
|
|
817
|
+
userAddress?: string;
|
|
818
|
+
alipayUid?: string;
|
|
819
|
+
lesseeType?: number;
|
|
820
|
+
userId?: string;
|
|
561
821
|
static names(): {
|
|
562
822
|
[key: string]: string;
|
|
563
823
|
};
|
|
@@ -568,9 +828,7 @@ export declare class OrderFulfillmentInfo extends $tea.Model {
|
|
|
568
828
|
[key: string]: any;
|
|
569
829
|
});
|
|
570
830
|
}
|
|
571
|
-
export declare class
|
|
572
|
-
sceneCode: string;
|
|
573
|
-
decision: string;
|
|
831
|
+
export declare class OrderGoodsModel extends $tea.Model {
|
|
574
832
|
static names(): {
|
|
575
833
|
[key: string]: string;
|
|
576
834
|
};
|
|
@@ -581,13 +839,10 @@ export declare class RiskScene extends $tea.Model {
|
|
|
581
839
|
[key: string]: any;
|
|
582
840
|
});
|
|
583
841
|
}
|
|
584
|
-
export declare class
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
status: string;
|
|
589
|
-
subjectMerchantId: string;
|
|
590
|
-
subjectCompanyName: string;
|
|
842
|
+
export declare class DeliveryDetail extends $tea.Model {
|
|
843
|
+
receiverName?: string;
|
|
844
|
+
receiverMobile?: string;
|
|
845
|
+
receiverAddress?: string;
|
|
591
846
|
static names(): {
|
|
592
847
|
[key: string]: string;
|
|
593
848
|
};
|
|
@@ -598,17 +853,13 @@ export declare class RelationPage extends $tea.Model {
|
|
|
598
853
|
[key: string]: any;
|
|
599
854
|
});
|
|
600
855
|
}
|
|
601
|
-
export declare class
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
companyAddress?: string;
|
|
609
|
-
contactName?: string;
|
|
610
|
-
contactMobile?: string;
|
|
611
|
-
merchantType?: string;
|
|
856
|
+
export declare class AgreementPage extends $tea.Model {
|
|
857
|
+
agreementId: string;
|
|
858
|
+
merchantName: string;
|
|
859
|
+
tenantId: string;
|
|
860
|
+
productMainClass: string;
|
|
861
|
+
agreementType: string;
|
|
862
|
+
signStatus: string;
|
|
612
863
|
static names(): {
|
|
613
864
|
[key: string]: string;
|
|
614
865
|
};
|
|
@@ -619,16 +870,16 @@ export declare class CompanyInfoUpdate extends $tea.Model {
|
|
|
619
870
|
[key: string]: any;
|
|
620
871
|
});
|
|
621
872
|
}
|
|
622
|
-
export declare class
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
873
|
+
export declare class FarmingQueryModel extends $tea.Model {
|
|
874
|
+
outOrderNo?: string;
|
|
875
|
+
orderNo?: string;
|
|
876
|
+
salesAmount?: number;
|
|
877
|
+
bankCardNo?: string;
|
|
878
|
+
isvPid?: string;
|
|
879
|
+
storeMccDesc?: string;
|
|
880
|
+
outletAddress?: string;
|
|
881
|
+
companyName?: string;
|
|
882
|
+
storeName?: string;
|
|
632
883
|
static names(): {
|
|
633
884
|
[key: string]: string;
|
|
634
885
|
};
|
|
@@ -672,25 +923,6 @@ export declare class ActivePayOrder extends $tea.Model {
|
|
|
672
923
|
[key: string]: any;
|
|
673
924
|
});
|
|
674
925
|
}
|
|
675
|
-
export declare class ApplicationInfo extends $tea.Model {
|
|
676
|
-
applicationScene: string;
|
|
677
|
-
tinyAppId: string;
|
|
678
|
-
siteName: string;
|
|
679
|
-
sitUrl: string;
|
|
680
|
-
merchantName: string;
|
|
681
|
-
merchantServiceName: string;
|
|
682
|
-
merchantServiceDesc: string;
|
|
683
|
-
siteInfo?: SiteInfo[];
|
|
684
|
-
static names(): {
|
|
685
|
-
[key: string]: string;
|
|
686
|
-
};
|
|
687
|
-
static types(): {
|
|
688
|
-
[key: string]: any;
|
|
689
|
-
};
|
|
690
|
-
constructor(map?: {
|
|
691
|
-
[key: string]: any;
|
|
692
|
-
});
|
|
693
|
-
}
|
|
694
926
|
export declare class GoodsInfo extends $tea.Model {
|
|
695
927
|
static names(): {
|
|
696
928
|
[key: string]: string;
|
|
@@ -715,20 +947,6 @@ export declare class PageQuery extends $tea.Model {
|
|
|
715
947
|
[key: string]: any;
|
|
716
948
|
});
|
|
717
949
|
}
|
|
718
|
-
export declare class ItemDetail extends $tea.Model {
|
|
719
|
-
goodsCategory?: string;
|
|
720
|
-
itemName?: string;
|
|
721
|
-
quantity?: number;
|
|
722
|
-
static names(): {
|
|
723
|
-
[key: string]: string;
|
|
724
|
-
};
|
|
725
|
-
static types(): {
|
|
726
|
-
[key: string]: any;
|
|
727
|
-
};
|
|
728
|
-
constructor(map?: {
|
|
729
|
-
[key: string]: any;
|
|
730
|
-
});
|
|
731
|
-
}
|
|
732
950
|
export declare class LegalInfo extends $tea.Model {
|
|
733
951
|
legalName: string;
|
|
734
952
|
legalCertNo: string;
|
|
@@ -744,23 +962,6 @@ export declare class LegalInfo extends $tea.Model {
|
|
|
744
962
|
[key: string]: any;
|
|
745
963
|
});
|
|
746
964
|
}
|
|
747
|
-
export declare class RiskModel extends $tea.Model {
|
|
748
|
-
sceneCode: string;
|
|
749
|
-
score: string;
|
|
750
|
-
delinquencyRate?: string;
|
|
751
|
-
riskAdvice?: string;
|
|
752
|
-
riskRank?: string;
|
|
753
|
-
flowId: string;
|
|
754
|
-
static names(): {
|
|
755
|
-
[key: string]: string;
|
|
756
|
-
};
|
|
757
|
-
static types(): {
|
|
758
|
-
[key: string]: any;
|
|
759
|
-
};
|
|
760
|
-
constructor(map?: {
|
|
761
|
-
[key: string]: any;
|
|
762
|
-
});
|
|
763
|
-
}
|
|
764
965
|
export declare class XNameValuePair extends $tea.Model {
|
|
765
966
|
name: string;
|
|
766
967
|
value: string;
|
|
@@ -1320,11 +1521,112 @@ export declare class GetFundOrderfullinfoRequest extends $tea.Model {
|
|
|
1320
1521
|
[key: string]: any;
|
|
1321
1522
|
});
|
|
1322
1523
|
}
|
|
1323
|
-
export declare class GetFundOrderfullinfoResponse extends $tea.Model {
|
|
1524
|
+
export declare class GetFundOrderfullinfoResponse extends $tea.Model {
|
|
1525
|
+
reqMsgId?: string;
|
|
1526
|
+
resultCode?: string;
|
|
1527
|
+
resultMsg?: string;
|
|
1528
|
+
responseData?: string;
|
|
1529
|
+
static names(): {
|
|
1530
|
+
[key: string]: string;
|
|
1531
|
+
};
|
|
1532
|
+
static types(): {
|
|
1533
|
+
[key: string]: any;
|
|
1534
|
+
};
|
|
1535
|
+
constructor(map?: {
|
|
1536
|
+
[key: string]: any;
|
|
1537
|
+
});
|
|
1538
|
+
}
|
|
1539
|
+
export declare class NotifyFundFlowRequest extends $tea.Model {
|
|
1540
|
+
authToken?: string;
|
|
1541
|
+
productInstanceId?: string;
|
|
1542
|
+
merchantId: string;
|
|
1543
|
+
orderId: string;
|
|
1544
|
+
signNo: string;
|
|
1545
|
+
fileItemNo: string;
|
|
1546
|
+
fundId?: string;
|
|
1547
|
+
static names(): {
|
|
1548
|
+
[key: string]: string;
|
|
1549
|
+
};
|
|
1550
|
+
static types(): {
|
|
1551
|
+
[key: string]: any;
|
|
1552
|
+
};
|
|
1553
|
+
constructor(map?: {
|
|
1554
|
+
[key: string]: any;
|
|
1555
|
+
});
|
|
1556
|
+
}
|
|
1557
|
+
export declare class NotifyFundFlowResponse extends $tea.Model {
|
|
1558
|
+
reqMsgId?: string;
|
|
1559
|
+
resultCode?: string;
|
|
1560
|
+
resultMsg?: string;
|
|
1561
|
+
static names(): {
|
|
1562
|
+
[key: string]: string;
|
|
1563
|
+
};
|
|
1564
|
+
static types(): {
|
|
1565
|
+
[key: string]: any;
|
|
1566
|
+
};
|
|
1567
|
+
constructor(map?: {
|
|
1568
|
+
[key: string]: any;
|
|
1569
|
+
});
|
|
1570
|
+
}
|
|
1571
|
+
export declare class UploadFundCreditRequest extends $tea.Model {
|
|
1572
|
+
authToken?: string;
|
|
1573
|
+
productInstanceId?: string;
|
|
1574
|
+
orderNoType: string;
|
|
1575
|
+
orderNo: string;
|
|
1576
|
+
fundId: string;
|
|
1577
|
+
creditType: string;
|
|
1578
|
+
creditName?: string;
|
|
1579
|
+
contentType: string;
|
|
1580
|
+
fileUrl?: string;
|
|
1581
|
+
content?: string;
|
|
1582
|
+
merchantId: string;
|
|
1583
|
+
static names(): {
|
|
1584
|
+
[key: string]: string;
|
|
1585
|
+
};
|
|
1586
|
+
static types(): {
|
|
1587
|
+
[key: string]: any;
|
|
1588
|
+
};
|
|
1589
|
+
constructor(map?: {
|
|
1590
|
+
[key: string]: any;
|
|
1591
|
+
});
|
|
1592
|
+
}
|
|
1593
|
+
export declare class UploadFundCreditResponse extends $tea.Model {
|
|
1594
|
+
reqMsgId?: string;
|
|
1595
|
+
resultCode?: string;
|
|
1596
|
+
resultMsg?: string;
|
|
1597
|
+
contentId?: string;
|
|
1598
|
+
static names(): {
|
|
1599
|
+
[key: string]: string;
|
|
1600
|
+
};
|
|
1601
|
+
static types(): {
|
|
1602
|
+
[key: string]: any;
|
|
1603
|
+
};
|
|
1604
|
+
constructor(map?: {
|
|
1605
|
+
[key: string]: any;
|
|
1606
|
+
});
|
|
1607
|
+
}
|
|
1608
|
+
export declare class QueryFundCreditRequest extends $tea.Model {
|
|
1609
|
+
authToken?: string;
|
|
1610
|
+
productInstanceId?: string;
|
|
1611
|
+
orderNoType: string;
|
|
1612
|
+
orderNo: string;
|
|
1613
|
+
fundId: string;
|
|
1614
|
+
merchantId: string;
|
|
1615
|
+
static names(): {
|
|
1616
|
+
[key: string]: string;
|
|
1617
|
+
};
|
|
1618
|
+
static types(): {
|
|
1619
|
+
[key: string]: any;
|
|
1620
|
+
};
|
|
1621
|
+
constructor(map?: {
|
|
1622
|
+
[key: string]: any;
|
|
1623
|
+
});
|
|
1624
|
+
}
|
|
1625
|
+
export declare class QueryFundCreditResponse extends $tea.Model {
|
|
1324
1626
|
reqMsgId?: string;
|
|
1325
1627
|
resultCode?: string;
|
|
1326
1628
|
resultMsg?: string;
|
|
1327
|
-
|
|
1629
|
+
contentInfo?: string;
|
|
1328
1630
|
static names(): {
|
|
1329
1631
|
[key: string]: string;
|
|
1330
1632
|
};
|
|
@@ -1335,14 +1637,14 @@ export declare class GetFundOrderfullinfoResponse extends $tea.Model {
|
|
|
1335
1637
|
[key: string]: any;
|
|
1336
1638
|
});
|
|
1337
1639
|
}
|
|
1338
|
-
export declare class
|
|
1640
|
+
export declare class SyncFundFinanceprecheckresultRequest extends $tea.Model {
|
|
1339
1641
|
authToken?: string;
|
|
1340
1642
|
productInstanceId?: string;
|
|
1341
|
-
merchantId: string;
|
|
1342
1643
|
orderId: string;
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1644
|
+
merchantId: string;
|
|
1645
|
+
fundId: string;
|
|
1646
|
+
result: string;
|
|
1647
|
+
refuseReason?: string;
|
|
1346
1648
|
static names(): {
|
|
1347
1649
|
[key: string]: string;
|
|
1348
1650
|
};
|
|
@@ -1353,7 +1655,7 @@ export declare class NotifyFundFlowRequest extends $tea.Model {
|
|
|
1353
1655
|
[key: string]: any;
|
|
1354
1656
|
});
|
|
1355
1657
|
}
|
|
1356
|
-
export declare class
|
|
1658
|
+
export declare class SyncFundFinanceprecheckresultResponse extends $tea.Model {
|
|
1357
1659
|
reqMsgId?: string;
|
|
1358
1660
|
resultCode?: string;
|
|
1359
1661
|
resultMsg?: string;
|
|
@@ -1367,18 +1669,12 @@ export declare class NotifyFundFlowResponse extends $tea.Model {
|
|
|
1367
1669
|
[key: string]: any;
|
|
1368
1670
|
});
|
|
1369
1671
|
}
|
|
1370
|
-
export declare class
|
|
1672
|
+
export declare class QueryFundCompensateaccountRequest extends $tea.Model {
|
|
1371
1673
|
authToken?: string;
|
|
1372
1674
|
productInstanceId?: string;
|
|
1373
|
-
orderNoType: string;
|
|
1374
|
-
orderNo: string;
|
|
1375
1675
|
fundId: string;
|
|
1376
|
-
creditType: string;
|
|
1377
|
-
creditName?: string;
|
|
1378
|
-
contentType: string;
|
|
1379
|
-
fileUrl?: string;
|
|
1380
|
-
content?: string;
|
|
1381
1676
|
merchantId: string;
|
|
1677
|
+
merchantTenantId: string;
|
|
1382
1678
|
static names(): {
|
|
1383
1679
|
[key: string]: string;
|
|
1384
1680
|
};
|
|
@@ -1389,11 +1685,11 @@ export declare class UploadFundCreditRequest extends $tea.Model {
|
|
|
1389
1685
|
[key: string]: any;
|
|
1390
1686
|
});
|
|
1391
1687
|
}
|
|
1392
|
-
export declare class
|
|
1688
|
+
export declare class QueryFundCompensateaccountResponse extends $tea.Model {
|
|
1393
1689
|
reqMsgId?: string;
|
|
1394
1690
|
resultCode?: string;
|
|
1395
1691
|
resultMsg?: string;
|
|
1396
|
-
|
|
1692
|
+
availableAmount?: number;
|
|
1397
1693
|
static names(): {
|
|
1398
1694
|
[key: string]: string;
|
|
1399
1695
|
};
|
|
@@ -1404,13 +1700,12 @@ export declare class UploadFundCreditResponse extends $tea.Model {
|
|
|
1404
1700
|
[key: string]: any;
|
|
1405
1701
|
});
|
|
1406
1702
|
}
|
|
1407
|
-
export declare class
|
|
1703
|
+
export declare class GetFundOrderfinanceinfoRequest extends $tea.Model {
|
|
1408
1704
|
authToken?: string;
|
|
1409
1705
|
productInstanceId?: string;
|
|
1410
|
-
|
|
1411
|
-
orderNo: string;
|
|
1412
|
-
fundId: string;
|
|
1706
|
+
orderId: string;
|
|
1413
1707
|
merchantId: string;
|
|
1708
|
+
fundId: string;
|
|
1414
1709
|
static names(): {
|
|
1415
1710
|
[key: string]: string;
|
|
1416
1711
|
};
|
|
@@ -1421,11 +1716,11 @@ export declare class QueryFundCreditRequest extends $tea.Model {
|
|
|
1421
1716
|
[key: string]: any;
|
|
1422
1717
|
});
|
|
1423
1718
|
}
|
|
1424
|
-
export declare class
|
|
1719
|
+
export declare class GetFundOrderfinanceinfoResponse extends $tea.Model {
|
|
1425
1720
|
reqMsgId?: string;
|
|
1426
1721
|
resultCode?: string;
|
|
1427
1722
|
resultMsg?: string;
|
|
1428
|
-
|
|
1723
|
+
responseData?: string;
|
|
1429
1724
|
static names(): {
|
|
1430
1725
|
[key: string]: string;
|
|
1431
1726
|
};
|
|
@@ -1436,14 +1731,12 @@ export declare class QueryFundCreditResponse extends $tea.Model {
|
|
|
1436
1731
|
[key: string]: any;
|
|
1437
1732
|
});
|
|
1438
1733
|
}
|
|
1439
|
-
export declare class
|
|
1734
|
+
export declare class AddFundDividerelationRequest extends $tea.Model {
|
|
1440
1735
|
authToken?: string;
|
|
1441
1736
|
productInstanceId?: string;
|
|
1442
|
-
orderId: string;
|
|
1443
1737
|
merchantId: string;
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
refuseReason?: string;
|
|
1738
|
+
divideBindingTransInInfoList: DivideBindingTransInInfo[];
|
|
1739
|
+
divideRadio?: string;
|
|
1447
1740
|
static names(): {
|
|
1448
1741
|
[key: string]: string;
|
|
1449
1742
|
};
|
|
@@ -1454,7 +1747,7 @@ export declare class SyncFundFinanceprecheckresultRequest extends $tea.Model {
|
|
|
1454
1747
|
[key: string]: any;
|
|
1455
1748
|
});
|
|
1456
1749
|
}
|
|
1457
|
-
export declare class
|
|
1750
|
+
export declare class AddFundDividerelationResponse extends $tea.Model {
|
|
1458
1751
|
reqMsgId?: string;
|
|
1459
1752
|
resultCode?: string;
|
|
1460
1753
|
resultMsg?: string;
|
|
@@ -1468,12 +1761,10 @@ export declare class SyncFundFinanceprecheckresultResponse extends $tea.Model {
|
|
|
1468
1761
|
[key: string]: any;
|
|
1469
1762
|
});
|
|
1470
1763
|
}
|
|
1471
|
-
export declare class
|
|
1764
|
+
export declare class QueryFundDividerelationRequest extends $tea.Model {
|
|
1472
1765
|
authToken?: string;
|
|
1473
1766
|
productInstanceId?: string;
|
|
1474
|
-
fundId: string;
|
|
1475
1767
|
merchantId: string;
|
|
1476
|
-
merchantTenantId: string;
|
|
1477
1768
|
static names(): {
|
|
1478
1769
|
[key: string]: string;
|
|
1479
1770
|
};
|
|
@@ -1484,11 +1775,12 @@ export declare class QueryFundCompensateaccountRequest extends $tea.Model {
|
|
|
1484
1775
|
[key: string]: any;
|
|
1485
1776
|
});
|
|
1486
1777
|
}
|
|
1487
|
-
export declare class
|
|
1778
|
+
export declare class QueryFundDividerelationResponse extends $tea.Model {
|
|
1488
1779
|
reqMsgId?: string;
|
|
1489
1780
|
resultCode?: string;
|
|
1490
1781
|
resultMsg?: string;
|
|
1491
|
-
|
|
1782
|
+
alipayPidList?: string[];
|
|
1783
|
+
divideRadio?: string;
|
|
1492
1784
|
static names(): {
|
|
1493
1785
|
[key: string]: string;
|
|
1494
1786
|
};
|
|
@@ -2314,6 +2606,7 @@ export declare class QueryInnerMerchantagreementRequest extends $tea.Model {
|
|
|
2314
2606
|
productInstanceId?: string;
|
|
2315
2607
|
tenantId: string;
|
|
2316
2608
|
agreementId: string;
|
|
2609
|
+
userName?: string;
|
|
2317
2610
|
static names(): {
|
|
2318
2611
|
[key: string]: string;
|
|
2319
2612
|
};
|
|
@@ -2346,6 +2639,7 @@ export declare class PagequeryInnerMerchantagreementRequest extends $tea.Model {
|
|
|
2346
2639
|
productInstanceId?: string;
|
|
2347
2640
|
tenantId: string;
|
|
2348
2641
|
pageInfo: PageQuery;
|
|
2642
|
+
userName?: string;
|
|
2349
2643
|
static names(): {
|
|
2350
2644
|
[key: string]: string;
|
|
2351
2645
|
};
|
|
@@ -2597,6 +2891,8 @@ export declare class SyncInnerTemplateResponse extends $tea.Model {
|
|
|
2597
2891
|
resultCode?: string;
|
|
2598
2892
|
resultMsg?: string;
|
|
2599
2893
|
targetTemplateCode?: string;
|
|
2894
|
+
validResult?: boolean;
|
|
2895
|
+
validFieldDetail?: string;
|
|
2600
2896
|
static names(): {
|
|
2601
2897
|
[key: string]: string;
|
|
2602
2898
|
};
|
|
@@ -3363,6 +3659,7 @@ export declare class DetailInnerOrderResponse extends $tea.Model {
|
|
|
3363
3659
|
orderFulfillmentInfoList?: OrderFulfillmentInfo[];
|
|
3364
3660
|
orderPromiseInfo?: OrderPromiseInfo;
|
|
3365
3661
|
orderProductInfoList?: OrderProductInfo[];
|
|
3662
|
+
operateDivideInfoList?: OperateDivideInfo[];
|
|
3366
3663
|
static names(): {
|
|
3367
3664
|
[key: string]: string;
|
|
3368
3665
|
};
|
|
@@ -3656,6 +3953,101 @@ export declare class QueryInnerTemplateinstanceResponse extends $tea.Model {
|
|
|
3656
3953
|
[key: string]: any;
|
|
3657
3954
|
});
|
|
3658
3955
|
}
|
|
3956
|
+
export declare class QueryInnerTenantindirectmainclassRequest extends $tea.Model {
|
|
3957
|
+
authToken?: string;
|
|
3958
|
+
productInstanceId?: string;
|
|
3959
|
+
tenantId: string;
|
|
3960
|
+
static names(): {
|
|
3961
|
+
[key: string]: string;
|
|
3962
|
+
};
|
|
3963
|
+
static types(): {
|
|
3964
|
+
[key: string]: any;
|
|
3965
|
+
};
|
|
3966
|
+
constructor(map?: {
|
|
3967
|
+
[key: string]: any;
|
|
3968
|
+
});
|
|
3969
|
+
}
|
|
3970
|
+
export declare class QueryInnerTenantindirectmainclassResponse extends $tea.Model {
|
|
3971
|
+
reqMsgId?: string;
|
|
3972
|
+
resultCode?: string;
|
|
3973
|
+
resultMsg?: string;
|
|
3974
|
+
currentIndirectMainClassList?: string[];
|
|
3975
|
+
desc?: string;
|
|
3976
|
+
status?: string;
|
|
3977
|
+
failReason?: string;
|
|
3978
|
+
changingIndirectMainClassList?: string[];
|
|
3979
|
+
static names(): {
|
|
3980
|
+
[key: string]: string;
|
|
3981
|
+
};
|
|
3982
|
+
static types(): {
|
|
3983
|
+
[key: string]: any;
|
|
3984
|
+
};
|
|
3985
|
+
constructor(map?: {
|
|
3986
|
+
[key: string]: any;
|
|
3987
|
+
});
|
|
3988
|
+
}
|
|
3989
|
+
export declare class UpdateInnerTenantindirectmainclassRequest extends $tea.Model {
|
|
3990
|
+
authToken?: string;
|
|
3991
|
+
productInstanceId?: string;
|
|
3992
|
+
tenantId: string;
|
|
3993
|
+
indirectMainClassList: string[];
|
|
3994
|
+
desc?: string;
|
|
3995
|
+
static names(): {
|
|
3996
|
+
[key: string]: string;
|
|
3997
|
+
};
|
|
3998
|
+
static types(): {
|
|
3999
|
+
[key: string]: any;
|
|
4000
|
+
};
|
|
4001
|
+
constructor(map?: {
|
|
4002
|
+
[key: string]: any;
|
|
4003
|
+
});
|
|
4004
|
+
}
|
|
4005
|
+
export declare class UpdateInnerTenantindirectmainclassResponse extends $tea.Model {
|
|
4006
|
+
reqMsgId?: string;
|
|
4007
|
+
resultCode?: string;
|
|
4008
|
+
resultMsg?: string;
|
|
4009
|
+
static names(): {
|
|
4010
|
+
[key: string]: string;
|
|
4011
|
+
};
|
|
4012
|
+
static types(): {
|
|
4013
|
+
[key: string]: any;
|
|
4014
|
+
};
|
|
4015
|
+
constructor(map?: {
|
|
4016
|
+
[key: string]: any;
|
|
4017
|
+
});
|
|
4018
|
+
}
|
|
4019
|
+
export declare class SubmitInnerTemplatesyncreviewRequest extends $tea.Model {
|
|
4020
|
+
authToken?: string;
|
|
4021
|
+
productInstanceId?: string;
|
|
4022
|
+
tenantId: string;
|
|
4023
|
+
sourceTemplateCode: string;
|
|
4024
|
+
targetTemplateName: string;
|
|
4025
|
+
sourceTemplateVersion: string;
|
|
4026
|
+
static names(): {
|
|
4027
|
+
[key: string]: string;
|
|
4028
|
+
};
|
|
4029
|
+
static types(): {
|
|
4030
|
+
[key: string]: any;
|
|
4031
|
+
};
|
|
4032
|
+
constructor(map?: {
|
|
4033
|
+
[key: string]: any;
|
|
4034
|
+
});
|
|
4035
|
+
}
|
|
4036
|
+
export declare class SubmitInnerTemplatesyncreviewResponse extends $tea.Model {
|
|
4037
|
+
reqMsgId?: string;
|
|
4038
|
+
resultCode?: string;
|
|
4039
|
+
resultMsg?: string;
|
|
4040
|
+
sourceTemplateCode?: string;
|
|
4041
|
+
static names(): {
|
|
4042
|
+
[key: string]: string;
|
|
4043
|
+
};
|
|
4044
|
+
static types(): {
|
|
4045
|
+
[key: string]: any;
|
|
4046
|
+
};
|
|
4047
|
+
constructor(map?: {
|
|
4048
|
+
[key: string]: any;
|
|
4049
|
+
});
|
|
4050
|
+
}
|
|
3659
4051
|
export declare class CreateInsureRequest extends $tea.Model {
|
|
3660
4052
|
authToken?: string;
|
|
3661
4053
|
productInstanceId?: string;
|
|
@@ -3892,6 +4284,66 @@ export declare class UpdateMerchantexpandMerchantResponse extends $tea.Model {
|
|
|
3892
4284
|
[key: string]: any;
|
|
3893
4285
|
});
|
|
3894
4286
|
}
|
|
4287
|
+
export declare class AddMerchantexpandDividerelationRequest extends $tea.Model {
|
|
4288
|
+
authToken?: string;
|
|
4289
|
+
productInstanceId?: string;
|
|
4290
|
+
merchantId: string;
|
|
4291
|
+
divideBindingTransInInfoList: DivideBindingTransInInfo[];
|
|
4292
|
+
divideRadio?: string;
|
|
4293
|
+
static names(): {
|
|
4294
|
+
[key: string]: string;
|
|
4295
|
+
};
|
|
4296
|
+
static types(): {
|
|
4297
|
+
[key: string]: any;
|
|
4298
|
+
};
|
|
4299
|
+
constructor(map?: {
|
|
4300
|
+
[key: string]: any;
|
|
4301
|
+
});
|
|
4302
|
+
}
|
|
4303
|
+
export declare class AddMerchantexpandDividerelationResponse extends $tea.Model {
|
|
4304
|
+
reqMsgId?: string;
|
|
4305
|
+
resultCode?: string;
|
|
4306
|
+
resultMsg?: string;
|
|
4307
|
+
static names(): {
|
|
4308
|
+
[key: string]: string;
|
|
4309
|
+
};
|
|
4310
|
+
static types(): {
|
|
4311
|
+
[key: string]: any;
|
|
4312
|
+
};
|
|
4313
|
+
constructor(map?: {
|
|
4314
|
+
[key: string]: any;
|
|
4315
|
+
});
|
|
4316
|
+
}
|
|
4317
|
+
export declare class QueryMerchantexpandDividerelationRequest extends $tea.Model {
|
|
4318
|
+
authToken?: string;
|
|
4319
|
+
productInstanceId?: string;
|
|
4320
|
+
merchantId: string;
|
|
4321
|
+
static names(): {
|
|
4322
|
+
[key: string]: string;
|
|
4323
|
+
};
|
|
4324
|
+
static types(): {
|
|
4325
|
+
[key: string]: any;
|
|
4326
|
+
};
|
|
4327
|
+
constructor(map?: {
|
|
4328
|
+
[key: string]: any;
|
|
4329
|
+
});
|
|
4330
|
+
}
|
|
4331
|
+
export declare class QueryMerchantexpandDividerelationResponse extends $tea.Model {
|
|
4332
|
+
reqMsgId?: string;
|
|
4333
|
+
resultCode?: string;
|
|
4334
|
+
resultMsg?: string;
|
|
4335
|
+
alipayPidList?: string[];
|
|
4336
|
+
divideRadio?: string;
|
|
4337
|
+
static names(): {
|
|
4338
|
+
[key: string]: string;
|
|
4339
|
+
};
|
|
4340
|
+
static types(): {
|
|
4341
|
+
[key: string]: any;
|
|
4342
|
+
};
|
|
4343
|
+
constructor(map?: {
|
|
4344
|
+
[key: string]: any;
|
|
4345
|
+
});
|
|
4346
|
+
}
|
|
3895
4347
|
export declare class CreateRealpersonFacevrfRequest extends $tea.Model {
|
|
3896
4348
|
authToken?: string;
|
|
3897
4349
|
productInstanceId?: string;
|
|
@@ -3911,12 +4363,82 @@ export declare class CreateRealpersonFacevrfRequest extends $tea.Model {
|
|
|
3911
4363
|
[key: string]: any;
|
|
3912
4364
|
});
|
|
3913
4365
|
}
|
|
3914
|
-
export declare class CreateRealpersonFacevrfResponse extends $tea.Model {
|
|
4366
|
+
export declare class CreateRealpersonFacevrfResponse extends $tea.Model {
|
|
4367
|
+
reqMsgId?: string;
|
|
4368
|
+
resultCode?: string;
|
|
4369
|
+
resultMsg?: string;
|
|
4370
|
+
realPersonVerificationCode?: string;
|
|
4371
|
+
webUrl?: string;
|
|
4372
|
+
static names(): {
|
|
4373
|
+
[key: string]: string;
|
|
4374
|
+
};
|
|
4375
|
+
static types(): {
|
|
4376
|
+
[key: string]: any;
|
|
4377
|
+
};
|
|
4378
|
+
constructor(map?: {
|
|
4379
|
+
[key: string]: any;
|
|
4380
|
+
});
|
|
4381
|
+
}
|
|
4382
|
+
export declare class QueryRealpersonFacevrfRequest extends $tea.Model {
|
|
4383
|
+
authToken?: string;
|
|
4384
|
+
productInstanceId?: string;
|
|
4385
|
+
realPersonVerificationCode: string;
|
|
4386
|
+
static names(): {
|
|
4387
|
+
[key: string]: string;
|
|
4388
|
+
};
|
|
4389
|
+
static types(): {
|
|
4390
|
+
[key: string]: any;
|
|
4391
|
+
};
|
|
4392
|
+
constructor(map?: {
|
|
4393
|
+
[key: string]: any;
|
|
4394
|
+
});
|
|
4395
|
+
}
|
|
4396
|
+
export declare class QueryRealpersonFacevrfResponse extends $tea.Model {
|
|
4397
|
+
reqMsgId?: string;
|
|
4398
|
+
resultCode?: string;
|
|
4399
|
+
resultMsg?: string;
|
|
4400
|
+
certifyState?: string;
|
|
4401
|
+
attackFlag?: string;
|
|
4402
|
+
alivePhoto?: string;
|
|
4403
|
+
static names(): {
|
|
4404
|
+
[key: string]: string;
|
|
4405
|
+
};
|
|
4406
|
+
static types(): {
|
|
4407
|
+
[key: string]: any;
|
|
4408
|
+
};
|
|
4409
|
+
constructor(map?: {
|
|
4410
|
+
[key: string]: any;
|
|
4411
|
+
});
|
|
4412
|
+
}
|
|
4413
|
+
export declare class QueryRiskRequest extends $tea.Model {
|
|
4414
|
+
authToken?: string;
|
|
4415
|
+
productInstanceId?: string;
|
|
4416
|
+
productName: string;
|
|
4417
|
+
userName: string;
|
|
4418
|
+
certNo: string;
|
|
4419
|
+
mobile: string;
|
|
4420
|
+
alipayUserId?: string;
|
|
4421
|
+
source?: string;
|
|
4422
|
+
riskBizScene?: string;
|
|
4423
|
+
itemDetail?: ItemDetail;
|
|
4424
|
+
priceDetail?: PriceDetail;
|
|
4425
|
+
deliveryDetail?: DeliveryDetail;
|
|
4426
|
+
static names(): {
|
|
4427
|
+
[key: string]: string;
|
|
4428
|
+
};
|
|
4429
|
+
static types(): {
|
|
4430
|
+
[key: string]: any;
|
|
4431
|
+
};
|
|
4432
|
+
constructor(map?: {
|
|
4433
|
+
[key: string]: any;
|
|
4434
|
+
});
|
|
4435
|
+
}
|
|
4436
|
+
export declare class QueryRiskResponse extends $tea.Model {
|
|
3915
4437
|
reqMsgId?: string;
|
|
3916
4438
|
resultCode?: string;
|
|
3917
4439
|
resultMsg?: string;
|
|
3918
|
-
|
|
3919
|
-
|
|
4440
|
+
models?: RiskModel[];
|
|
4441
|
+
appletModel?: AppletRiskModel;
|
|
3920
4442
|
static names(): {
|
|
3921
4443
|
[key: string]: string;
|
|
3922
4444
|
};
|
|
@@ -3927,10 +4449,28 @@ export declare class CreateRealpersonFacevrfResponse extends $tea.Model {
|
|
|
3927
4449
|
[key: string]: any;
|
|
3928
4450
|
});
|
|
3929
4451
|
}
|
|
3930
|
-
export declare class
|
|
4452
|
+
export declare class QueryRiskGoRequest extends $tea.Model {
|
|
3931
4453
|
authToken?: string;
|
|
3932
4454
|
productInstanceId?: string;
|
|
3933
|
-
|
|
4455
|
+
riskType: string;
|
|
4456
|
+
flowId: string;
|
|
4457
|
+
businessCode: string;
|
|
4458
|
+
scene: string;
|
|
4459
|
+
userId?: string;
|
|
4460
|
+
openId?: string;
|
|
4461
|
+
merPid?: string;
|
|
4462
|
+
mobileNo?: string;
|
|
4463
|
+
certNo?: string;
|
|
4464
|
+
ip?: string;
|
|
4465
|
+
lbs?: string;
|
|
4466
|
+
role?: string;
|
|
4467
|
+
activityInfo?: string;
|
|
4468
|
+
purchaseQueryModel?: PurchaseQueryModel;
|
|
4469
|
+
scalperQueryModel?: ScalperQueryModel;
|
|
4470
|
+
awardingQueryModel?: AwardingQueryModel;
|
|
4471
|
+
farmingQueryModel?: FarmingQueryModel;
|
|
4472
|
+
baddebtQueryModel?: BaddebtQueryModel;
|
|
4473
|
+
merchantAppId?: string;
|
|
3934
4474
|
static names(): {
|
|
3935
4475
|
[key: string]: string;
|
|
3936
4476
|
};
|
|
@@ -3941,13 +4481,11 @@ export declare class QueryRealpersonFacevrfRequest extends $tea.Model {
|
|
|
3941
4481
|
[key: string]: any;
|
|
3942
4482
|
});
|
|
3943
4483
|
}
|
|
3944
|
-
export declare class
|
|
4484
|
+
export declare class QueryRiskGoResponse extends $tea.Model {
|
|
3945
4485
|
reqMsgId?: string;
|
|
3946
4486
|
resultCode?: string;
|
|
3947
4487
|
resultMsg?: string;
|
|
3948
|
-
|
|
3949
|
-
attackFlag?: string;
|
|
3950
|
-
alivePhoto?: string;
|
|
4488
|
+
model?: RiskGoModel;
|
|
3951
4489
|
static names(): {
|
|
3952
4490
|
[key: string]: string;
|
|
3953
4491
|
};
|
|
@@ -3958,18 +4496,16 @@ export declare class QueryRealpersonFacevrfResponse extends $tea.Model {
|
|
|
3958
4496
|
[key: string]: any;
|
|
3959
4497
|
});
|
|
3960
4498
|
}
|
|
3961
|
-
export declare class
|
|
4499
|
+
export declare class UploadInnerRiskcallRequest extends $tea.Model {
|
|
3962
4500
|
authToken?: string;
|
|
3963
4501
|
productInstanceId?: string;
|
|
3964
|
-
|
|
3965
|
-
|
|
3966
|
-
|
|
3967
|
-
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
|
|
3971
|
-
priceDetail?: PriceDetail;
|
|
3972
|
-
deliveryDetail?: DeliveryDetail;
|
|
4502
|
+
idempotentId: string;
|
|
4503
|
+
pid: string;
|
|
4504
|
+
serviceAmount: number;
|
|
4505
|
+
startTime: string;
|
|
4506
|
+
endTime: string;
|
|
4507
|
+
alipayInstanceId: string;
|
|
4508
|
+
extInfo?: string;
|
|
3973
4509
|
static names(): {
|
|
3974
4510
|
[key: string]: string;
|
|
3975
4511
|
};
|
|
@@ -3980,12 +4516,11 @@ export declare class QueryRiskRequest extends $tea.Model {
|
|
|
3980
4516
|
[key: string]: any;
|
|
3981
4517
|
});
|
|
3982
4518
|
}
|
|
3983
|
-
export declare class
|
|
4519
|
+
export declare class UploadInnerRiskcallResponse extends $tea.Model {
|
|
3984
4520
|
reqMsgId?: string;
|
|
3985
4521
|
resultCode?: string;
|
|
3986
4522
|
resultMsg?: string;
|
|
3987
|
-
|
|
3988
|
-
appletModel?: AppletRiskModel;
|
|
4523
|
+
result?: boolean;
|
|
3989
4524
|
static names(): {
|
|
3990
4525
|
[key: string]: string;
|
|
3991
4526
|
};
|
|
@@ -4001,8 +4536,9 @@ export declare class AllSignTemplateRequest extends $tea.Model {
|
|
|
4001
4536
|
productInstanceId?: string;
|
|
4002
4537
|
contractType?: string;
|
|
4003
4538
|
merchantId?: string;
|
|
4004
|
-
fundType?: string;
|
|
4005
4539
|
fundId?: string;
|
|
4540
|
+
fundType?: string;
|
|
4541
|
+
templateId?: string;
|
|
4006
4542
|
static names(): {
|
|
4007
4543
|
[key: string]: string;
|
|
4008
4544
|
};
|
|
@@ -4058,6 +4594,7 @@ export declare class SubmitSignFlowRequest extends $tea.Model {
|
|
|
4058
4594
|
userOrgName?: string;
|
|
4059
4595
|
userOrgIdType?: string;
|
|
4060
4596
|
userOrgIdNumber?: string;
|
|
4597
|
+
needFace?: boolean;
|
|
4061
4598
|
static names(): {
|
|
4062
4599
|
[key: string]: string;
|
|
4063
4600
|
};
|
|
@@ -4186,6 +4723,7 @@ export declare class SubmitFrontSignRequest extends $tea.Model {
|
|
|
4186
4723
|
userOrgIdNumber?: string;
|
|
4187
4724
|
userOrgIdType?: string;
|
|
4188
4725
|
userOrgName?: string;
|
|
4726
|
+
needFace?: boolean;
|
|
4189
4727
|
static names(): {
|
|
4190
4728
|
[key: string]: string;
|
|
4191
4729
|
};
|
|
@@ -4853,6 +5391,165 @@ export declare class UpdateTradeOrderResponse extends $tea.Model {
|
|
|
4853
5391
|
[key: string]: any;
|
|
4854
5392
|
});
|
|
4855
5393
|
}
|
|
5394
|
+
export declare class AddTradeFinanceprecheckRequest extends $tea.Model {
|
|
5395
|
+
authToken?: string;
|
|
5396
|
+
productInstanceId?: string;
|
|
5397
|
+
orderId: string;
|
|
5398
|
+
merchantId: string;
|
|
5399
|
+
fundIdList: string[];
|
|
5400
|
+
static names(): {
|
|
5401
|
+
[key: string]: string;
|
|
5402
|
+
};
|
|
5403
|
+
static types(): {
|
|
5404
|
+
[key: string]: any;
|
|
5405
|
+
};
|
|
5406
|
+
constructor(map?: {
|
|
5407
|
+
[key: string]: any;
|
|
5408
|
+
});
|
|
5409
|
+
}
|
|
5410
|
+
export declare class AddTradeFinanceprecheckResponse extends $tea.Model {
|
|
5411
|
+
reqMsgId?: string;
|
|
5412
|
+
resultCode?: string;
|
|
5413
|
+
resultMsg?: string;
|
|
5414
|
+
merchantId?: string;
|
|
5415
|
+
orderId?: string;
|
|
5416
|
+
fundCandidates?: string;
|
|
5417
|
+
static names(): {
|
|
5418
|
+
[key: string]: string;
|
|
5419
|
+
};
|
|
5420
|
+
static types(): {
|
|
5421
|
+
[key: string]: any;
|
|
5422
|
+
};
|
|
5423
|
+
constructor(map?: {
|
|
5424
|
+
[key: string]: any;
|
|
5425
|
+
});
|
|
5426
|
+
}
|
|
5427
|
+
export declare class GetTradeOrderfinanceinfoRequest extends $tea.Model {
|
|
5428
|
+
authToken?: string;
|
|
5429
|
+
productInstanceId?: string;
|
|
5430
|
+
orderId: string;
|
|
5431
|
+
merchantId: string;
|
|
5432
|
+
static names(): {
|
|
5433
|
+
[key: string]: string;
|
|
5434
|
+
};
|
|
5435
|
+
static types(): {
|
|
5436
|
+
[key: string]: any;
|
|
5437
|
+
};
|
|
5438
|
+
constructor(map?: {
|
|
5439
|
+
[key: string]: any;
|
|
5440
|
+
});
|
|
5441
|
+
}
|
|
5442
|
+
export declare class GetTradeOrderfinanceinfoResponse extends $tea.Model {
|
|
5443
|
+
reqMsgId?: string;
|
|
5444
|
+
resultCode?: string;
|
|
5445
|
+
resultMsg?: string;
|
|
5446
|
+
responseData?: string;
|
|
5447
|
+
static names(): {
|
|
5448
|
+
[key: string]: string;
|
|
5449
|
+
};
|
|
5450
|
+
static types(): {
|
|
5451
|
+
[key: string]: any;
|
|
5452
|
+
};
|
|
5453
|
+
constructor(map?: {
|
|
5454
|
+
[key: string]: any;
|
|
5455
|
+
});
|
|
5456
|
+
}
|
|
5457
|
+
export declare class SyncTradeUserpromisedelayRequest extends $tea.Model {
|
|
5458
|
+
authToken?: string;
|
|
5459
|
+
productInstanceId?: string;
|
|
5460
|
+
orderId: string;
|
|
5461
|
+
merchantId: string;
|
|
5462
|
+
delayStartPeriod: number;
|
|
5463
|
+
delayTimeUnit: string;
|
|
5464
|
+
delayTimeValue: number;
|
|
5465
|
+
reason: string;
|
|
5466
|
+
static names(): {
|
|
5467
|
+
[key: string]: string;
|
|
5468
|
+
};
|
|
5469
|
+
static types(): {
|
|
5470
|
+
[key: string]: any;
|
|
5471
|
+
};
|
|
5472
|
+
constructor(map?: {
|
|
5473
|
+
[key: string]: any;
|
|
5474
|
+
});
|
|
5475
|
+
}
|
|
5476
|
+
export declare class SyncTradeUserpromisedelayResponse extends $tea.Model {
|
|
5477
|
+
reqMsgId?: string;
|
|
5478
|
+
resultCode?: string;
|
|
5479
|
+
resultMsg?: string;
|
|
5480
|
+
static names(): {
|
|
5481
|
+
[key: string]: string;
|
|
5482
|
+
};
|
|
5483
|
+
static types(): {
|
|
5484
|
+
[key: string]: any;
|
|
5485
|
+
};
|
|
5486
|
+
constructor(map?: {
|
|
5487
|
+
[key: string]: any;
|
|
5488
|
+
});
|
|
5489
|
+
}
|
|
5490
|
+
export declare class PauseTradeUserpromiseRequest extends $tea.Model {
|
|
5491
|
+
authToken?: string;
|
|
5492
|
+
productInstanceId?: string;
|
|
5493
|
+
orderId: string;
|
|
5494
|
+
merchantId: string;
|
|
5495
|
+
reason: string;
|
|
5496
|
+
static names(): {
|
|
5497
|
+
[key: string]: string;
|
|
5498
|
+
};
|
|
5499
|
+
static types(): {
|
|
5500
|
+
[key: string]: any;
|
|
5501
|
+
};
|
|
5502
|
+
constructor(map?: {
|
|
5503
|
+
[key: string]: any;
|
|
5504
|
+
});
|
|
5505
|
+
}
|
|
5506
|
+
export declare class PauseTradeUserpromiseResponse extends $tea.Model {
|
|
5507
|
+
reqMsgId?: string;
|
|
5508
|
+
resultCode?: string;
|
|
5509
|
+
resultMsg?: string;
|
|
5510
|
+
autoResumeDay?: string;
|
|
5511
|
+
autoWithholdRestartDay?: string;
|
|
5512
|
+
static names(): {
|
|
5513
|
+
[key: string]: string;
|
|
5514
|
+
};
|
|
5515
|
+
static types(): {
|
|
5516
|
+
[key: string]: any;
|
|
5517
|
+
};
|
|
5518
|
+
constructor(map?: {
|
|
5519
|
+
[key: string]: any;
|
|
5520
|
+
});
|
|
5521
|
+
}
|
|
5522
|
+
export declare class ResumeTradeUserpromiseRequest extends $tea.Model {
|
|
5523
|
+
authToken?: string;
|
|
5524
|
+
productInstanceId?: string;
|
|
5525
|
+
orderId: string;
|
|
5526
|
+
merchantId: string;
|
|
5527
|
+
static names(): {
|
|
5528
|
+
[key: string]: string;
|
|
5529
|
+
};
|
|
5530
|
+
static types(): {
|
|
5531
|
+
[key: string]: any;
|
|
5532
|
+
};
|
|
5533
|
+
constructor(map?: {
|
|
5534
|
+
[key: string]: any;
|
|
5535
|
+
});
|
|
5536
|
+
}
|
|
5537
|
+
export declare class ResumeTradeUserpromiseResponse extends $tea.Model {
|
|
5538
|
+
reqMsgId?: string;
|
|
5539
|
+
resultCode?: string;
|
|
5540
|
+
resultMsg?: string;
|
|
5541
|
+
resumeDay?: string;
|
|
5542
|
+
withholdRestartDay?: string;
|
|
5543
|
+
static names(): {
|
|
5544
|
+
[key: string]: string;
|
|
5545
|
+
};
|
|
5546
|
+
static types(): {
|
|
5547
|
+
[key: string]: any;
|
|
5548
|
+
};
|
|
5549
|
+
constructor(map?: {
|
|
5550
|
+
[key: string]: any;
|
|
5551
|
+
});
|
|
5552
|
+
}
|
|
4856
5553
|
export declare class CreateWithholdSignRequest extends $tea.Model {
|
|
4857
5554
|
authToken?: string;
|
|
4858
5555
|
productInstanceId?: string;
|
|
@@ -4985,12 +5682,14 @@ export declare class RepayWithholdPlanRequest extends $tea.Model {
|
|
|
4985
5682
|
authToken?: string;
|
|
4986
5683
|
productInstanceId?: string;
|
|
4987
5684
|
orderId: string;
|
|
4988
|
-
periodNum
|
|
4989
|
-
gmtPay
|
|
4990
|
-
payOffAmount
|
|
5685
|
+
periodNum?: number;
|
|
5686
|
+
gmtPay?: string;
|
|
5687
|
+
payOffAmount?: number;
|
|
4991
5688
|
payOffType?: string;
|
|
4992
5689
|
payOffNo?: string;
|
|
4993
5690
|
payOffBankName?: string;
|
|
5691
|
+
operation?: string;
|
|
5692
|
+
cancelList?: SingleCancelModel[];
|
|
4994
5693
|
static names(): {
|
|
4995
5694
|
[key: string]: string;
|
|
4996
5695
|
};
|
|
@@ -5625,6 +6324,42 @@ export default class Client {
|
|
|
5625
6324
|
queryFundCompensateaccountEx(request: QueryFundCompensateaccountRequest, headers: {
|
|
5626
6325
|
[key: string]: string;
|
|
5627
6326
|
}, runtime: $Util.RuntimeOptions): Promise<QueryFundCompensateaccountResponse>;
|
|
6327
|
+
/**
|
|
6328
|
+
* Description: 资方查询订单融资信息
|
|
6329
|
+
* Summary: 资方查询订单融资信息
|
|
6330
|
+
*/
|
|
6331
|
+
getFundOrderfinanceinfo(request: GetFundOrderfinanceinfoRequest): Promise<GetFundOrderfinanceinfoResponse>;
|
|
6332
|
+
/**
|
|
6333
|
+
* Description: 资方查询订单融资信息
|
|
6334
|
+
* Summary: 资方查询订单融资信息
|
|
6335
|
+
*/
|
|
6336
|
+
getFundOrderfinanceinfoEx(request: GetFundOrderfinanceinfoRequest, headers: {
|
|
6337
|
+
[key: string]: string;
|
|
6338
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetFundOrderfinanceinfoResponse>;
|
|
6339
|
+
/**
|
|
6340
|
+
* Description: 添加分账绑定关系
|
|
6341
|
+
* Summary: 添加分账绑定关系
|
|
6342
|
+
*/
|
|
6343
|
+
addFundDividerelation(request: AddFundDividerelationRequest): Promise<AddFundDividerelationResponse>;
|
|
6344
|
+
/**
|
|
6345
|
+
* Description: 添加分账绑定关系
|
|
6346
|
+
* Summary: 添加分账绑定关系
|
|
6347
|
+
*/
|
|
6348
|
+
addFundDividerelationEx(request: AddFundDividerelationRequest, headers: {
|
|
6349
|
+
[key: string]: string;
|
|
6350
|
+
}, runtime: $Util.RuntimeOptions): Promise<AddFundDividerelationResponse>;
|
|
6351
|
+
/**
|
|
6352
|
+
* Description: 分账绑定关系查询
|
|
6353
|
+
* Summary: 分账绑定关系查询
|
|
6354
|
+
*/
|
|
6355
|
+
queryFundDividerelation(request: QueryFundDividerelationRequest): Promise<QueryFundDividerelationResponse>;
|
|
6356
|
+
/**
|
|
6357
|
+
* Description: 分账绑定关系查询
|
|
6358
|
+
* Summary: 分账绑定关系查询
|
|
6359
|
+
*/
|
|
6360
|
+
queryFundDividerelationEx(request: QueryFundDividerelationRequest, headers: {
|
|
6361
|
+
[key: string]: string;
|
|
6362
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryFundDividerelationResponse>;
|
|
5628
6363
|
/**
|
|
5629
6364
|
* Description: 内部调用,商品信息获取
|
|
5630
6365
|
* Summary: 商品信息获取
|
|
@@ -6419,6 +7154,42 @@ export default class Client {
|
|
|
6419
7154
|
queryInnerTemplateinstanceEx(request: QueryInnerTemplateinstanceRequest, headers: {
|
|
6420
7155
|
[key: string]: string;
|
|
6421
7156
|
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerTemplateinstanceResponse>;
|
|
7157
|
+
/**
|
|
7158
|
+
* Description: 查询租户类目信息详情
|
|
7159
|
+
* Summary: 查询租户类目信息详情
|
|
7160
|
+
*/
|
|
7161
|
+
queryInnerTenantindirectmainclass(request: QueryInnerTenantindirectmainclassRequest): Promise<QueryInnerTenantindirectmainclassResponse>;
|
|
7162
|
+
/**
|
|
7163
|
+
* Description: 查询租户类目信息详情
|
|
7164
|
+
* Summary: 查询租户类目信息详情
|
|
7165
|
+
*/
|
|
7166
|
+
queryInnerTenantindirectmainclassEx(request: QueryInnerTenantindirectmainclassRequest, headers: {
|
|
7167
|
+
[key: string]: string;
|
|
7168
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerTenantindirectmainclassResponse>;
|
|
7169
|
+
/**
|
|
7170
|
+
* Description: 修改租户间联类目类目信息
|
|
7171
|
+
* Summary: 修改租户间联类目类目信息
|
|
7172
|
+
*/
|
|
7173
|
+
updateInnerTenantindirectmainclass(request: UpdateInnerTenantindirectmainclassRequest): Promise<UpdateInnerTenantindirectmainclassResponse>;
|
|
7174
|
+
/**
|
|
7175
|
+
* Description: 修改租户间联类目类目信息
|
|
7176
|
+
* Summary: 修改租户间联类目类目信息
|
|
7177
|
+
*/
|
|
7178
|
+
updateInnerTenantindirectmainclassEx(request: UpdateInnerTenantindirectmainclassRequest, headers: {
|
|
7179
|
+
[key: string]: string;
|
|
7180
|
+
}, runtime: $Util.RuntimeOptions): Promise<UpdateInnerTenantindirectmainclassResponse>;
|
|
7181
|
+
/**
|
|
7182
|
+
* Description: 模板同步上线时强管控字段校验未通过提交后台审核
|
|
7183
|
+
* Summary: 模板同步上线审核提交
|
|
7184
|
+
*/
|
|
7185
|
+
submitInnerTemplatesyncreview(request: SubmitInnerTemplatesyncreviewRequest): Promise<SubmitInnerTemplatesyncreviewResponse>;
|
|
7186
|
+
/**
|
|
7187
|
+
* Description: 模板同步上线时强管控字段校验未通过提交后台审核
|
|
7188
|
+
* Summary: 模板同步上线审核提交
|
|
7189
|
+
*/
|
|
7190
|
+
submitInnerTemplatesyncreviewEx(request: SubmitInnerTemplatesyncreviewRequest, headers: {
|
|
7191
|
+
[key: string]: string;
|
|
7192
|
+
}, runtime: $Util.RuntimeOptions): Promise<SubmitInnerTemplatesyncreviewResponse>;
|
|
6422
7193
|
/**
|
|
6423
7194
|
* Description: 一键投保
|
|
6424
7195
|
* Summary: 投保
|
|
@@ -6503,6 +7274,30 @@ export default class Client {
|
|
|
6503
7274
|
updateMerchantexpandMerchantEx(request: UpdateMerchantexpandMerchantRequest, headers: {
|
|
6504
7275
|
[key: string]: string;
|
|
6505
7276
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateMerchantexpandMerchantResponse>;
|
|
7277
|
+
/**
|
|
7278
|
+
* Description: 添加分账绑定关系
|
|
7279
|
+
* Summary: 添加分账绑定关系
|
|
7280
|
+
*/
|
|
7281
|
+
addMerchantexpandDividerelation(request: AddMerchantexpandDividerelationRequest): Promise<AddMerchantexpandDividerelationResponse>;
|
|
7282
|
+
/**
|
|
7283
|
+
* Description: 添加分账绑定关系
|
|
7284
|
+
* Summary: 添加分账绑定关系
|
|
7285
|
+
*/
|
|
7286
|
+
addMerchantexpandDividerelationEx(request: AddMerchantexpandDividerelationRequest, headers: {
|
|
7287
|
+
[key: string]: string;
|
|
7288
|
+
}, runtime: $Util.RuntimeOptions): Promise<AddMerchantexpandDividerelationResponse>;
|
|
7289
|
+
/**
|
|
7290
|
+
* Description: 分账绑定关系查询
|
|
7291
|
+
* Summary: 分账绑定关系查询
|
|
7292
|
+
*/
|
|
7293
|
+
queryMerchantexpandDividerelation(request: QueryMerchantexpandDividerelationRequest): Promise<QueryMerchantexpandDividerelationResponse>;
|
|
7294
|
+
/**
|
|
7295
|
+
* Description: 分账绑定关系查询
|
|
7296
|
+
* Summary: 分账绑定关系查询
|
|
7297
|
+
*/
|
|
7298
|
+
queryMerchantexpandDividerelationEx(request: QueryMerchantexpandDividerelationRequest, headers: {
|
|
7299
|
+
[key: string]: string;
|
|
7300
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryMerchantexpandDividerelationResponse>;
|
|
6506
7301
|
/**
|
|
6507
7302
|
* Description: 可信身份认证,创建认证
|
|
6508
7303
|
* Summary: 创建认证
|
|
@@ -6539,6 +7334,30 @@ export default class Client {
|
|
|
6539
7334
|
queryRiskEx(request: QueryRiskRequest, headers: {
|
|
6540
7335
|
[key: string]: string;
|
|
6541
7336
|
}, runtime: $Util.RuntimeOptions): Promise<QueryRiskResponse>;
|
|
7337
|
+
/**
|
|
7338
|
+
* Description: 云 api 发起风控分析,获取风险评估
|
|
7339
|
+
* Summary: 云 api 发起风控分析,获取风险评估
|
|
7340
|
+
*/
|
|
7341
|
+
queryRiskGo(request: QueryRiskGoRequest): Promise<QueryRiskGoResponse>;
|
|
7342
|
+
/**
|
|
7343
|
+
* Description: 云 api 发起风控分析,获取风险评估
|
|
7344
|
+
* Summary: 云 api 发起风控分析,获取风险评估
|
|
7345
|
+
*/
|
|
7346
|
+
queryRiskGoEx(request: QueryRiskGoRequest, headers: {
|
|
7347
|
+
[key: string]: string;
|
|
7348
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryRiskGoResponse>;
|
|
7349
|
+
/**
|
|
7350
|
+
* Description: 小程序云调用,上报计量信息
|
|
7351
|
+
* Summary: 小程序云调用,上报计量信息
|
|
7352
|
+
*/
|
|
7353
|
+
uploadInnerRiskcall(request: UploadInnerRiskcallRequest): Promise<UploadInnerRiskcallResponse>;
|
|
7354
|
+
/**
|
|
7355
|
+
* Description: 小程序云调用,上报计量信息
|
|
7356
|
+
* Summary: 小程序云调用,上报计量信息
|
|
7357
|
+
*/
|
|
7358
|
+
uploadInnerRiskcallEx(request: UploadInnerRiskcallRequest, headers: {
|
|
7359
|
+
[key: string]: string;
|
|
7360
|
+
}, runtime: $Util.RuntimeOptions): Promise<UploadInnerRiskcallResponse>;
|
|
6542
7361
|
/**
|
|
6543
7362
|
* Description: 电子合同签署的合同模板查询服务
|
|
6544
7363
|
* Summary: 电子合同签署的合同模板查询服务
|
|
@@ -6839,6 +7658,66 @@ export default class Client {
|
|
|
6839
7658
|
updateTradeOrderEx(request: UpdateTradeOrderRequest, headers: {
|
|
6840
7659
|
[key: string]: string;
|
|
6841
7660
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateTradeOrderResponse>;
|
|
7661
|
+
/**
|
|
7662
|
+
* Description: 融资订单追加预审资金方
|
|
7663
|
+
* Summary: 融资订单追加预审资金方
|
|
7664
|
+
*/
|
|
7665
|
+
addTradeFinanceprecheck(request: AddTradeFinanceprecheckRequest): Promise<AddTradeFinanceprecheckResponse>;
|
|
7666
|
+
/**
|
|
7667
|
+
* Description: 融资订单追加预审资金方
|
|
7668
|
+
* Summary: 融资订单追加预审资金方
|
|
7669
|
+
*/
|
|
7670
|
+
addTradeFinanceprecheckEx(request: AddTradeFinanceprecheckRequest, headers: {
|
|
7671
|
+
[key: string]: string;
|
|
7672
|
+
}, runtime: $Util.RuntimeOptions): Promise<AddTradeFinanceprecheckResponse>;
|
|
7673
|
+
/**
|
|
7674
|
+
* Description: 订单融资信息查询接口
|
|
7675
|
+
* Summary: 订单融资信息查询接口
|
|
7676
|
+
*/
|
|
7677
|
+
getTradeOrderfinanceinfo(request: GetTradeOrderfinanceinfoRequest): Promise<GetTradeOrderfinanceinfoResponse>;
|
|
7678
|
+
/**
|
|
7679
|
+
* Description: 订单融资信息查询接口
|
|
7680
|
+
* Summary: 订单融资信息查询接口
|
|
7681
|
+
*/
|
|
7682
|
+
getTradeOrderfinanceinfoEx(request: GetTradeOrderfinanceinfoRequest, headers: {
|
|
7683
|
+
[key: string]: string;
|
|
7684
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetTradeOrderfinanceinfoResponse>;
|
|
7685
|
+
/**
|
|
7686
|
+
* Description: 订单代扣计划延期
|
|
7687
|
+
* Summary: 订单代扣计划延期
|
|
7688
|
+
*/
|
|
7689
|
+
syncTradeUserpromisedelay(request: SyncTradeUserpromisedelayRequest): Promise<SyncTradeUserpromisedelayResponse>;
|
|
7690
|
+
/**
|
|
7691
|
+
* Description: 订单代扣计划延期
|
|
7692
|
+
* Summary: 订单代扣计划延期
|
|
7693
|
+
*/
|
|
7694
|
+
syncTradeUserpromisedelayEx(request: SyncTradeUserpromisedelayRequest, headers: {
|
|
7695
|
+
[key: string]: string;
|
|
7696
|
+
}, runtime: $Util.RuntimeOptions): Promise<SyncTradeUserpromisedelayResponse>;
|
|
7697
|
+
/**
|
|
7698
|
+
* Description: 订单代扣计划暂停
|
|
7699
|
+
* Summary: 订单代扣计划暂停
|
|
7700
|
+
*/
|
|
7701
|
+
pauseTradeUserpromise(request: PauseTradeUserpromiseRequest): Promise<PauseTradeUserpromiseResponse>;
|
|
7702
|
+
/**
|
|
7703
|
+
* Description: 订单代扣计划暂停
|
|
7704
|
+
* Summary: 订单代扣计划暂停
|
|
7705
|
+
*/
|
|
7706
|
+
pauseTradeUserpromiseEx(request: PauseTradeUserpromiseRequest, headers: {
|
|
7707
|
+
[key: string]: string;
|
|
7708
|
+
}, runtime: $Util.RuntimeOptions): Promise<PauseTradeUserpromiseResponse>;
|
|
7709
|
+
/**
|
|
7710
|
+
* Description: 代扣计划重启
|
|
7711
|
+
* Summary: 代扣计划重启
|
|
7712
|
+
*/
|
|
7713
|
+
resumeTradeUserpromise(request: ResumeTradeUserpromiseRequest): Promise<ResumeTradeUserpromiseResponse>;
|
|
7714
|
+
/**
|
|
7715
|
+
* Description: 代扣计划重启
|
|
7716
|
+
* Summary: 代扣计划重启
|
|
7717
|
+
*/
|
|
7718
|
+
resumeTradeUserpromiseEx(request: ResumeTradeUserpromiseRequest, headers: {
|
|
7719
|
+
[key: string]: string;
|
|
7720
|
+
}, runtime: $Util.RuntimeOptions): Promise<ResumeTradeUserpromiseResponse>;
|
|
6842
7721
|
/**
|
|
6843
7722
|
* Description: 代扣签约创建
|
|
6844
7723
|
* Summary: 代扣签约
|
|
@@ -6889,16 +7768,16 @@ export default class Client {
|
|
|
6889
7768
|
}, runtime: $Util.RuntimeOptions): Promise<CancelWithholdPlanResponse>;
|
|
6890
7769
|
/**
|
|
6891
7770
|
* Description: 重要说明:
|
|
6892
|
-
1.
|
|
7771
|
+
1. 这个接口是取消订单某一、多期代扣计划中以其他方式还款的金额,取消之后代扣不再执行该期计划。
|
|
6893
7772
|
2. 对通过其他方式还款的第三方单号留存;例如:银行流水号或微信流水号。
|
|
6894
|
-
* Summary:
|
|
7773
|
+
* Summary: 单期多期代扣取消
|
|
6895
7774
|
*/
|
|
6896
7775
|
repayWithholdPlan(request: RepayWithholdPlanRequest): Promise<RepayWithholdPlanResponse>;
|
|
6897
7776
|
/**
|
|
6898
7777
|
* Description: 重要说明:
|
|
6899
|
-
1.
|
|
7778
|
+
1. 这个接口是取消订单某一、多期代扣计划中以其他方式还款的金额,取消之后代扣不再执行该期计划。
|
|
6900
7779
|
2. 对通过其他方式还款的第三方单号留存;例如:银行流水号或微信流水号。
|
|
6901
|
-
* Summary:
|
|
7780
|
+
* Summary: 单期多期代扣取消
|
|
6902
7781
|
*/
|
|
6903
7782
|
repayWithholdPlanEx(request: RepayWithholdPlanRequest, headers: {
|
|
6904
7783
|
[key: string]: string;
|