@antchain/ato 1.9.11 → 1.9.20
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 +322 -99
- package/dist/client.js +526 -191
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +801 -326
package/dist/client.d.ts
CHANGED
|
@@ -34,6 +34,33 @@ export declare class Config extends $tea.Model {
|
|
|
34
34
|
[key: string]: any;
|
|
35
35
|
});
|
|
36
36
|
}
|
|
37
|
+
export declare class SubRentRiskItem extends $tea.Model {
|
|
38
|
+
riskName: string;
|
|
39
|
+
riskRank: string;
|
|
40
|
+
riskDesc: string;
|
|
41
|
+
static names(): {
|
|
42
|
+
[key: string]: string;
|
|
43
|
+
};
|
|
44
|
+
static types(): {
|
|
45
|
+
[key: string]: any;
|
|
46
|
+
};
|
|
47
|
+
constructor(map?: {
|
|
48
|
+
[key: string]: any;
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
export declare class StaticDataModuleDetail extends $tea.Model {
|
|
52
|
+
propertyText: string;
|
|
53
|
+
propertyValue: string;
|
|
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
|
+
}
|
|
37
64
|
export declare class FileInfo extends $tea.Model {
|
|
38
65
|
fileName: string;
|
|
39
66
|
fileKey: string;
|
|
@@ -47,7 +74,12 @@ export declare class FileInfo extends $tea.Model {
|
|
|
47
74
|
[key: string]: any;
|
|
48
75
|
});
|
|
49
76
|
}
|
|
50
|
-
export declare class
|
|
77
|
+
export declare class AppletRiskModel extends $tea.Model {
|
|
78
|
+
recordId: string;
|
|
79
|
+
riskRank: string;
|
|
80
|
+
riskName: string;
|
|
81
|
+
riskDesc: string;
|
|
82
|
+
subRiskResultList: SubRentRiskItem[];
|
|
51
83
|
static names(): {
|
|
52
84
|
[key: string]: string;
|
|
53
85
|
};
|
|
@@ -94,13 +126,54 @@ export declare class CompanyInfo extends $tea.Model {
|
|
|
94
126
|
[key: string]: any;
|
|
95
127
|
});
|
|
96
128
|
}
|
|
97
|
-
export declare class
|
|
98
|
-
|
|
99
|
-
|
|
129
|
+
export declare class UserPerformanceInfo extends $tea.Model {
|
|
130
|
+
periodNum: number;
|
|
131
|
+
payDate: string;
|
|
132
|
+
payMoney: number;
|
|
133
|
+
static names(): {
|
|
134
|
+
[key: string]: string;
|
|
135
|
+
};
|
|
136
|
+
static types(): {
|
|
137
|
+
[key: string]: any;
|
|
138
|
+
};
|
|
139
|
+
constructor(map?: {
|
|
140
|
+
[key: string]: any;
|
|
141
|
+
});
|
|
142
|
+
}
|
|
143
|
+
export declare class RiskStrategy extends $tea.Model {
|
|
144
|
+
id: string;
|
|
145
|
+
name: string;
|
|
146
|
+
decision: string;
|
|
147
|
+
sceneCode: string;
|
|
148
|
+
static names(): {
|
|
149
|
+
[key: string]: string;
|
|
150
|
+
};
|
|
151
|
+
static types(): {
|
|
152
|
+
[key: string]: any;
|
|
153
|
+
};
|
|
154
|
+
constructor(map?: {
|
|
155
|
+
[key: string]: any;
|
|
156
|
+
});
|
|
157
|
+
}
|
|
158
|
+
export declare class StaticData extends $tea.Model {
|
|
159
|
+
moduleName: string;
|
|
160
|
+
moduleDetailList: StaticDataModuleDetail[];
|
|
161
|
+
static names(): {
|
|
162
|
+
[key: string]: string;
|
|
163
|
+
};
|
|
164
|
+
static types(): {
|
|
165
|
+
[key: string]: any;
|
|
166
|
+
};
|
|
167
|
+
constructor(map?: {
|
|
168
|
+
[key: string]: any;
|
|
169
|
+
});
|
|
170
|
+
}
|
|
171
|
+
export declare class MerchantAgentPage extends $tea.Model {
|
|
172
|
+
payExpandId: string;
|
|
173
|
+
agentName: string;
|
|
100
174
|
tenantId: string;
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
signStatus: string;
|
|
175
|
+
bizType: string;
|
|
176
|
+
payExpandStatus: string;
|
|
104
177
|
static names(): {
|
|
105
178
|
[key: string]: string;
|
|
106
179
|
};
|
|
@@ -111,10 +184,11 @@ export declare class AgreementPage extends $tea.Model {
|
|
|
111
184
|
[key: string]: any;
|
|
112
185
|
});
|
|
113
186
|
}
|
|
114
|
-
export declare class
|
|
187
|
+
export declare class PriceDetail extends $tea.Model {
|
|
115
188
|
periodNum: number;
|
|
116
|
-
|
|
117
|
-
|
|
189
|
+
depositPrice: string;
|
|
190
|
+
buyoutPrice: string;
|
|
191
|
+
initialRentPrice: string;
|
|
118
192
|
static names(): {
|
|
119
193
|
[key: string]: string;
|
|
120
194
|
};
|
|
@@ -125,9 +199,16 @@ export declare class UserPerformanceInfo extends $tea.Model {
|
|
|
125
199
|
[key: string]: any;
|
|
126
200
|
});
|
|
127
201
|
}
|
|
128
|
-
export declare class
|
|
129
|
-
|
|
130
|
-
|
|
202
|
+
export declare class OrderMsgInfo extends $tea.Model {
|
|
203
|
+
orderId: string;
|
|
204
|
+
msgId: string;
|
|
205
|
+
msgPublishType: string;
|
|
206
|
+
msgCreateTime: string;
|
|
207
|
+
msgStatus: string;
|
|
208
|
+
msgRetryTime: number;
|
|
209
|
+
msgContent: string;
|
|
210
|
+
msgCallbackUrl: string;
|
|
211
|
+
newMsgCallbackUrl: string;
|
|
131
212
|
static names(): {
|
|
132
213
|
[key: string]: string;
|
|
133
214
|
};
|
|
@@ -138,11 +219,7 @@ export declare class RiskScene extends $tea.Model {
|
|
|
138
219
|
[key: string]: any;
|
|
139
220
|
});
|
|
140
221
|
}
|
|
141
|
-
export declare class
|
|
142
|
-
id: string;
|
|
143
|
-
name: string;
|
|
144
|
-
decision: string;
|
|
145
|
-
sceneCode: string;
|
|
222
|
+
export declare class OrderInfo extends $tea.Model {
|
|
146
223
|
static names(): {
|
|
147
224
|
[key: string]: string;
|
|
148
225
|
};
|
|
@@ -153,11 +230,30 @@ export declare class RiskStrategy extends $tea.Model {
|
|
|
153
230
|
[key: string]: any;
|
|
154
231
|
});
|
|
155
232
|
}
|
|
156
|
-
export declare class
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
233
|
+
export declare class ApplicationInfoUpdate extends $tea.Model {
|
|
234
|
+
applicationScene?: string;
|
|
235
|
+
tinyAppId?: string;
|
|
236
|
+
siteName?: string;
|
|
237
|
+
sitUrl?: string;
|
|
238
|
+
merchantName?: string;
|
|
239
|
+
merchantServiceName?: string;
|
|
240
|
+
merchantServiceDesc?: string;
|
|
241
|
+
static names(): {
|
|
242
|
+
[key: string]: string;
|
|
243
|
+
};
|
|
244
|
+
static types(): {
|
|
245
|
+
[key: string]: any;
|
|
246
|
+
};
|
|
247
|
+
constructor(map?: {
|
|
248
|
+
[key: string]: any;
|
|
249
|
+
});
|
|
250
|
+
}
|
|
251
|
+
export declare class AuditInfo extends $tea.Model {
|
|
252
|
+
stage: string;
|
|
253
|
+
auditSubject: string;
|
|
160
254
|
status: string;
|
|
255
|
+
applyDateStr: string;
|
|
256
|
+
failReason: string;
|
|
161
257
|
static names(): {
|
|
162
258
|
[key: string]: string;
|
|
163
259
|
};
|
|
@@ -168,17 +264,7 @@ export declare class RelationPage extends $tea.Model {
|
|
|
168
264
|
[key: string]: any;
|
|
169
265
|
});
|
|
170
266
|
}
|
|
171
|
-
export declare class
|
|
172
|
-
businessLicenseFile?: FileInfo;
|
|
173
|
-
productMainClass?: string;
|
|
174
|
-
companyName?: string;
|
|
175
|
-
companyAliasName?: string;
|
|
176
|
-
tenantId?: string;
|
|
177
|
-
companyMobile?: string;
|
|
178
|
-
companyAddress?: string;
|
|
179
|
-
contactName?: string;
|
|
180
|
-
contactMobile?: string;
|
|
181
|
-
merchantType?: string;
|
|
267
|
+
export declare class OrderGoodsModel extends $tea.Model {
|
|
182
268
|
static names(): {
|
|
183
269
|
[key: string]: string;
|
|
184
270
|
};
|
|
@@ -189,12 +275,39 @@ export declare class CompanyInfoUpdate extends $tea.Model {
|
|
|
189
275
|
[key: string]: any;
|
|
190
276
|
});
|
|
191
277
|
}
|
|
192
|
-
export declare class
|
|
193
|
-
|
|
194
|
-
|
|
278
|
+
export declare class LegalInfoUpdate extends $tea.Model {
|
|
279
|
+
legalName?: string;
|
|
280
|
+
legalCertNo?: string;
|
|
281
|
+
legalCertFrontFile?: FileInfo;
|
|
282
|
+
legalCertBackFile?: FileInfo;
|
|
283
|
+
static names(): {
|
|
284
|
+
[key: string]: string;
|
|
285
|
+
};
|
|
286
|
+
static types(): {
|
|
287
|
+
[key: string]: any;
|
|
288
|
+
};
|
|
289
|
+
constructor(map?: {
|
|
290
|
+
[key: string]: any;
|
|
291
|
+
});
|
|
292
|
+
}
|
|
293
|
+
export declare class PromiseInfo extends $tea.Model {
|
|
294
|
+
static names(): {
|
|
295
|
+
[key: string]: string;
|
|
296
|
+
};
|
|
297
|
+
static types(): {
|
|
298
|
+
[key: string]: any;
|
|
299
|
+
};
|
|
300
|
+
constructor(map?: {
|
|
301
|
+
[key: string]: any;
|
|
302
|
+
});
|
|
303
|
+
}
|
|
304
|
+
export declare class AgreementPage extends $tea.Model {
|
|
305
|
+
agreementId: string;
|
|
306
|
+
merchantName: string;
|
|
195
307
|
tenantId: string;
|
|
196
|
-
|
|
197
|
-
|
|
308
|
+
productMainClass: string;
|
|
309
|
+
agreementType: string;
|
|
310
|
+
signStatus: string;
|
|
198
311
|
static names(): {
|
|
199
312
|
[key: string]: string;
|
|
200
313
|
};
|
|
@@ -205,16 +318,9 @@ export declare class MerchantAgentPage extends $tea.Model {
|
|
|
205
318
|
[key: string]: any;
|
|
206
319
|
});
|
|
207
320
|
}
|
|
208
|
-
export declare class
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
msgPublishType: string;
|
|
212
|
-
msgCreateTime: string;
|
|
213
|
-
msgStatus: string;
|
|
214
|
-
msgRetryTime: number;
|
|
215
|
-
msgContent: string;
|
|
216
|
-
msgCallbackUrl: string;
|
|
217
|
-
newMsgCallbackUrl: string;
|
|
321
|
+
export declare class RiskScene extends $tea.Model {
|
|
322
|
+
sceneCode: string;
|
|
323
|
+
decision: string;
|
|
218
324
|
static names(): {
|
|
219
325
|
[key: string]: string;
|
|
220
326
|
};
|
|
@@ -225,7 +331,32 @@ export declare class OrderMsgInfo extends $tea.Model {
|
|
|
225
331
|
[key: string]: any;
|
|
226
332
|
});
|
|
227
333
|
}
|
|
228
|
-
export declare class
|
|
334
|
+
export declare class RelationPage extends $tea.Model {
|
|
335
|
+
relationId: string;
|
|
336
|
+
companyName: string;
|
|
337
|
+
merchantId: string;
|
|
338
|
+
status: string;
|
|
339
|
+
static names(): {
|
|
340
|
+
[key: string]: string;
|
|
341
|
+
};
|
|
342
|
+
static types(): {
|
|
343
|
+
[key: string]: any;
|
|
344
|
+
};
|
|
345
|
+
constructor(map?: {
|
|
346
|
+
[key: string]: any;
|
|
347
|
+
});
|
|
348
|
+
}
|
|
349
|
+
export declare class CompanyInfoUpdate extends $tea.Model {
|
|
350
|
+
businessLicenseFile?: FileInfo;
|
|
351
|
+
productMainClass?: string;
|
|
352
|
+
companyName?: string;
|
|
353
|
+
companyAliasName?: string;
|
|
354
|
+
tenantId?: string;
|
|
355
|
+
companyMobile?: string;
|
|
356
|
+
companyAddress?: string;
|
|
357
|
+
contactName?: string;
|
|
358
|
+
contactMobile?: string;
|
|
359
|
+
merchantType?: string;
|
|
229
360
|
static names(): {
|
|
230
361
|
[key: string]: string;
|
|
231
362
|
};
|
|
@@ -297,14 +428,10 @@ export declare class PageQuery extends $tea.Model {
|
|
|
297
428
|
[key: string]: any;
|
|
298
429
|
});
|
|
299
430
|
}
|
|
300
|
-
export declare class
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
sitUrl?: string;
|
|
305
|
-
merchantName?: string;
|
|
306
|
-
merchantServiceName?: string;
|
|
307
|
-
merchantServiceDesc?: string;
|
|
431
|
+
export declare class ItemDetail extends $tea.Model {
|
|
432
|
+
goodsCategory: string;
|
|
433
|
+
itemName: string;
|
|
434
|
+
quantity: number;
|
|
308
435
|
static names(): {
|
|
309
436
|
[key: string]: string;
|
|
310
437
|
};
|
|
@@ -330,22 +457,6 @@ export declare class LegalInfo extends $tea.Model {
|
|
|
330
457
|
[key: string]: any;
|
|
331
458
|
});
|
|
332
459
|
}
|
|
333
|
-
export declare class AuditInfo extends $tea.Model {
|
|
334
|
-
stage: string;
|
|
335
|
-
auditSubject: string;
|
|
336
|
-
status: string;
|
|
337
|
-
applyDateStr: string;
|
|
338
|
-
failReason: string;
|
|
339
|
-
static names(): {
|
|
340
|
-
[key: string]: string;
|
|
341
|
-
};
|
|
342
|
-
static types(): {
|
|
343
|
-
[key: string]: any;
|
|
344
|
-
};
|
|
345
|
-
constructor(map?: {
|
|
346
|
-
[key: string]: any;
|
|
347
|
-
});
|
|
348
|
-
}
|
|
349
460
|
export declare class RiskModel extends $tea.Model {
|
|
350
461
|
sceneCode: string;
|
|
351
462
|
score: string;
|
|
@@ -362,32 +473,6 @@ export declare class RiskModel extends $tea.Model {
|
|
|
362
473
|
[key: string]: any;
|
|
363
474
|
});
|
|
364
475
|
}
|
|
365
|
-
export declare class OrderGoodsModel extends $tea.Model {
|
|
366
|
-
static names(): {
|
|
367
|
-
[key: string]: string;
|
|
368
|
-
};
|
|
369
|
-
static types(): {
|
|
370
|
-
[key: string]: any;
|
|
371
|
-
};
|
|
372
|
-
constructor(map?: {
|
|
373
|
-
[key: string]: any;
|
|
374
|
-
});
|
|
375
|
-
}
|
|
376
|
-
export declare class LegalInfoUpdate extends $tea.Model {
|
|
377
|
-
legalName?: string;
|
|
378
|
-
legalCertNo?: string;
|
|
379
|
-
legalCertFrontFile?: FileInfo;
|
|
380
|
-
legalCertBackFile?: FileInfo;
|
|
381
|
-
static names(): {
|
|
382
|
-
[key: string]: string;
|
|
383
|
-
};
|
|
384
|
-
static types(): {
|
|
385
|
-
[key: string]: any;
|
|
386
|
-
};
|
|
387
|
-
constructor(map?: {
|
|
388
|
-
[key: string]: any;
|
|
389
|
-
});
|
|
390
|
-
}
|
|
391
476
|
export declare class XNameValuePair extends $tea.Model {
|
|
392
477
|
name: string;
|
|
393
478
|
value: string;
|
|
@@ -1061,6 +1146,38 @@ export declare class QueryFundCreditResponse extends $tea.Model {
|
|
|
1061
1146
|
[key: string]: any;
|
|
1062
1147
|
});
|
|
1063
1148
|
}
|
|
1149
|
+
export declare class SyncFundFinanceprecheckresultRequest extends $tea.Model {
|
|
1150
|
+
authToken?: string;
|
|
1151
|
+
productInstanceId?: string;
|
|
1152
|
+
orderId: string;
|
|
1153
|
+
merchantId: string;
|
|
1154
|
+
fundId: string;
|
|
1155
|
+
result: string;
|
|
1156
|
+
refuseReason?: string;
|
|
1157
|
+
static names(): {
|
|
1158
|
+
[key: string]: string;
|
|
1159
|
+
};
|
|
1160
|
+
static types(): {
|
|
1161
|
+
[key: string]: any;
|
|
1162
|
+
};
|
|
1163
|
+
constructor(map?: {
|
|
1164
|
+
[key: string]: any;
|
|
1165
|
+
});
|
|
1166
|
+
}
|
|
1167
|
+
export declare class SyncFundFinanceprecheckresultResponse extends $tea.Model {
|
|
1168
|
+
reqMsgId?: string;
|
|
1169
|
+
resultCode?: string;
|
|
1170
|
+
resultMsg?: string;
|
|
1171
|
+
static names(): {
|
|
1172
|
+
[key: string]: string;
|
|
1173
|
+
};
|
|
1174
|
+
static types(): {
|
|
1175
|
+
[key: string]: any;
|
|
1176
|
+
};
|
|
1177
|
+
constructor(map?: {
|
|
1178
|
+
[key: string]: any;
|
|
1179
|
+
});
|
|
1180
|
+
}
|
|
1064
1181
|
export declare class GetInnerProductRequest extends $tea.Model {
|
|
1065
1182
|
authToken?: string;
|
|
1066
1183
|
productInstanceId?: string;
|
|
@@ -1388,6 +1505,7 @@ export declare class PublishInnerTemplateRequest extends $tea.Model {
|
|
|
1388
1505
|
tenantId: string;
|
|
1389
1506
|
templateCode: string;
|
|
1390
1507
|
templateVersionId: string;
|
|
1508
|
+
templateVersion?: string;
|
|
1391
1509
|
static names(): {
|
|
1392
1510
|
[key: string]: string;
|
|
1393
1511
|
};
|
|
@@ -2563,6 +2681,35 @@ export declare class QueryInnerWithholdsignResponse extends $tea.Model {
|
|
|
2563
2681
|
[key: string]: any;
|
|
2564
2682
|
});
|
|
2565
2683
|
}
|
|
2684
|
+
export declare class GetInnerMerchantstaticdataRequest extends $tea.Model {
|
|
2685
|
+
authToken?: string;
|
|
2686
|
+
productInstanceId?: string;
|
|
2687
|
+
tenantId: string;
|
|
2688
|
+
static names(): {
|
|
2689
|
+
[key: string]: string;
|
|
2690
|
+
};
|
|
2691
|
+
static types(): {
|
|
2692
|
+
[key: string]: any;
|
|
2693
|
+
};
|
|
2694
|
+
constructor(map?: {
|
|
2695
|
+
[key: string]: any;
|
|
2696
|
+
});
|
|
2697
|
+
}
|
|
2698
|
+
export declare class GetInnerMerchantstaticdataResponse extends $tea.Model {
|
|
2699
|
+
reqMsgId?: string;
|
|
2700
|
+
resultCode?: string;
|
|
2701
|
+
resultMsg?: string;
|
|
2702
|
+
staticDataList?: StaticData[];
|
|
2703
|
+
static names(): {
|
|
2704
|
+
[key: string]: string;
|
|
2705
|
+
};
|
|
2706
|
+
static types(): {
|
|
2707
|
+
[key: string]: any;
|
|
2708
|
+
};
|
|
2709
|
+
constructor(map?: {
|
|
2710
|
+
[key: string]: any;
|
|
2711
|
+
});
|
|
2712
|
+
}
|
|
2566
2713
|
export declare class RegisterMerchantexpandMerchantRequest extends $tea.Model {
|
|
2567
2714
|
authToken?: string;
|
|
2568
2715
|
productInstanceId?: string;
|
|
@@ -2763,6 +2910,11 @@ export declare class QueryRiskRequest extends $tea.Model {
|
|
|
2763
2910
|
userName: string;
|
|
2764
2911
|
certNo: string;
|
|
2765
2912
|
mobile: string;
|
|
2913
|
+
alipayUserId?: string;
|
|
2914
|
+
source?: string;
|
|
2915
|
+
receiverAddress?: string;
|
|
2916
|
+
itemDetail?: ItemDetail;
|
|
2917
|
+
priceDetail?: PriceDetail;
|
|
2766
2918
|
static names(): {
|
|
2767
2919
|
[key: string]: string;
|
|
2768
2920
|
};
|
|
@@ -2778,6 +2930,7 @@ export declare class QueryRiskResponse extends $tea.Model {
|
|
|
2778
2930
|
resultCode?: string;
|
|
2779
2931
|
resultMsg?: string;
|
|
2780
2932
|
models?: RiskModel[];
|
|
2933
|
+
appletModel?: AppletRiskModel;
|
|
2781
2934
|
static names(): {
|
|
2782
2935
|
[key: string]: string;
|
|
2783
2936
|
};
|
|
@@ -3506,6 +3659,40 @@ export declare class ReplaceTradeUserpromiseResponse extends $tea.Model {
|
|
|
3506
3659
|
[key: string]: any;
|
|
3507
3660
|
});
|
|
3508
3661
|
}
|
|
3662
|
+
export declare class ApplyTradeFinanceprecheckRequest extends $tea.Model {
|
|
3663
|
+
authToken?: string;
|
|
3664
|
+
productInstanceId?: string;
|
|
3665
|
+
orderId: string;
|
|
3666
|
+
merchantId: string;
|
|
3667
|
+
fundId: string;
|
|
3668
|
+
transparentInfo?: string;
|
|
3669
|
+
static names(): {
|
|
3670
|
+
[key: string]: string;
|
|
3671
|
+
};
|
|
3672
|
+
static types(): {
|
|
3673
|
+
[key: string]: any;
|
|
3674
|
+
};
|
|
3675
|
+
constructor(map?: {
|
|
3676
|
+
[key: string]: any;
|
|
3677
|
+
});
|
|
3678
|
+
}
|
|
3679
|
+
export declare class ApplyTradeFinanceprecheckResponse extends $tea.Model {
|
|
3680
|
+
reqMsgId?: string;
|
|
3681
|
+
resultCode?: string;
|
|
3682
|
+
resultMsg?: string;
|
|
3683
|
+
responseData?: string;
|
|
3684
|
+
orderId?: string;
|
|
3685
|
+
merchantId?: string;
|
|
3686
|
+
static names(): {
|
|
3687
|
+
[key: string]: string;
|
|
3688
|
+
};
|
|
3689
|
+
static types(): {
|
|
3690
|
+
[key: string]: any;
|
|
3691
|
+
};
|
|
3692
|
+
constructor(map?: {
|
|
3693
|
+
[key: string]: any;
|
|
3694
|
+
});
|
|
3695
|
+
}
|
|
3509
3696
|
export declare class CreateWithholdSignRequest extends $tea.Model {
|
|
3510
3697
|
authToken?: string;
|
|
3511
3698
|
productInstanceId?: string;
|
|
@@ -4211,6 +4398,18 @@ export default class Client {
|
|
|
4211
4398
|
queryFundCreditEx(request: QueryFundCreditRequest, headers: {
|
|
4212
4399
|
[key: string]: string;
|
|
4213
4400
|
}, runtime: $Util.RuntimeOptions): Promise<QueryFundCreditResponse>;
|
|
4401
|
+
/**
|
|
4402
|
+
* Description: 融资预审结果同步
|
|
4403
|
+
* Summary: 融资预审结果同步
|
|
4404
|
+
*/
|
|
4405
|
+
syncFundFinanceprecheckresult(request: SyncFundFinanceprecheckresultRequest): Promise<SyncFundFinanceprecheckresultResponse>;
|
|
4406
|
+
/**
|
|
4407
|
+
* Description: 融资预审结果同步
|
|
4408
|
+
* Summary: 融资预审结果同步
|
|
4409
|
+
*/
|
|
4410
|
+
syncFundFinanceprecheckresultEx(request: SyncFundFinanceprecheckresultRequest, headers: {
|
|
4411
|
+
[key: string]: string;
|
|
4412
|
+
}, runtime: $Util.RuntimeOptions): Promise<SyncFundFinanceprecheckresultResponse>;
|
|
4214
4413
|
/**
|
|
4215
4414
|
* Description: 内部调用,商品信息获取
|
|
4216
4415
|
* Summary: 商品信息获取
|
|
@@ -4775,6 +4974,18 @@ export default class Client {
|
|
|
4775
4974
|
queryInnerWithholdsignEx(request: QueryInnerWithholdsignRequest, headers: {
|
|
4776
4975
|
[key: string]: string;
|
|
4777
4976
|
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerWithholdsignResponse>;
|
|
4977
|
+
/**
|
|
4978
|
+
* Description: 获取商户进件静态枚举数据
|
|
4979
|
+
* Summary: 获取商户进件静态枚举数据
|
|
4980
|
+
*/
|
|
4981
|
+
getInnerMerchantstaticdata(request: GetInnerMerchantstaticdataRequest): Promise<GetInnerMerchantstaticdataResponse>;
|
|
4982
|
+
/**
|
|
4983
|
+
* Description: 获取商户进件静态枚举数据
|
|
4984
|
+
* Summary: 获取商户进件静态枚举数据
|
|
4985
|
+
*/
|
|
4986
|
+
getInnerMerchantstaticdataEx(request: GetInnerMerchantstaticdataRequest, headers: {
|
|
4987
|
+
[key: string]: string;
|
|
4988
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetInnerMerchantstaticdataResponse>;
|
|
4778
4989
|
/**
|
|
4779
4990
|
* Description: 商户入驻
|
|
4780
4991
|
* Summary: 商户入驻
|
|
@@ -5111,6 +5322,18 @@ export default class Client {
|
|
|
5111
5322
|
replaceTradeUserpromiseEx(request: ReplaceTradeUserpromiseRequest, headers: {
|
|
5112
5323
|
[key: string]: string;
|
|
5113
5324
|
}, runtime: $Util.RuntimeOptions): Promise<ReplaceTradeUserpromiseResponse>;
|
|
5325
|
+
/**
|
|
5326
|
+
* Description: 订单融资预审申请接口
|
|
5327
|
+
* Summary: 订单融资预审申请接口
|
|
5328
|
+
*/
|
|
5329
|
+
applyTradeFinanceprecheck(request: ApplyTradeFinanceprecheckRequest): Promise<ApplyTradeFinanceprecheckResponse>;
|
|
5330
|
+
/**
|
|
5331
|
+
* Description: 订单融资预审申请接口
|
|
5332
|
+
* Summary: 订单融资预审申请接口
|
|
5333
|
+
*/
|
|
5334
|
+
applyTradeFinanceprecheckEx(request: ApplyTradeFinanceprecheckRequest, headers: {
|
|
5335
|
+
[key: string]: string;
|
|
5336
|
+
}, runtime: $Util.RuntimeOptions): Promise<ApplyTradeFinanceprecheckResponse>;
|
|
5114
5337
|
/**
|
|
5115
5338
|
* Description: 代扣签约创建
|
|
5116
5339
|
* Summary: 代扣签约
|