@antchain/ato 1.9.11 → 1.9.19
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 +265 -107
- package/dist/client.js +444 -211
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +660 -337
package/dist/client.d.ts
CHANGED
|
@@ -34,9 +34,9 @@ export declare class Config extends $tea.Model {
|
|
|
34
34
|
[key: string]: any;
|
|
35
35
|
});
|
|
36
36
|
}
|
|
37
|
-
export declare class
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
export declare class StaticDataModuleDetail extends $tea.Model {
|
|
38
|
+
propertyText: string;
|
|
39
|
+
propertyValue: string;
|
|
40
40
|
static names(): {
|
|
41
41
|
[key: string]: string;
|
|
42
42
|
};
|
|
@@ -47,7 +47,9 @@ export declare class FileInfo extends $tea.Model {
|
|
|
47
47
|
[key: string]: any;
|
|
48
48
|
});
|
|
49
49
|
}
|
|
50
|
-
export declare class
|
|
50
|
+
export declare class FileInfo extends $tea.Model {
|
|
51
|
+
fileName: string;
|
|
52
|
+
fileKey: string;
|
|
51
53
|
static names(): {
|
|
52
54
|
[key: string]: string;
|
|
53
55
|
};
|
|
@@ -94,13 +96,10 @@ export declare class CompanyInfo extends $tea.Model {
|
|
|
94
96
|
[key: string]: any;
|
|
95
97
|
});
|
|
96
98
|
}
|
|
97
|
-
export declare class
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
productMainClass: string;
|
|
102
|
-
agreementType: string;
|
|
103
|
-
signStatus: string;
|
|
99
|
+
export declare class UserPerformanceInfo extends $tea.Model {
|
|
100
|
+
periodNum: number;
|
|
101
|
+
payDate: string;
|
|
102
|
+
payMoney: number;
|
|
104
103
|
static names(): {
|
|
105
104
|
[key: string]: string;
|
|
106
105
|
};
|
|
@@ -111,10 +110,11 @@ export declare class AgreementPage extends $tea.Model {
|
|
|
111
110
|
[key: string]: any;
|
|
112
111
|
});
|
|
113
112
|
}
|
|
114
|
-
export declare class
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
113
|
+
export declare class RiskStrategy extends $tea.Model {
|
|
114
|
+
id: string;
|
|
115
|
+
name: string;
|
|
116
|
+
decision: string;
|
|
117
|
+
sceneCode: string;
|
|
118
118
|
static names(): {
|
|
119
119
|
[key: string]: string;
|
|
120
120
|
};
|
|
@@ -125,9 +125,9 @@ export declare class UserPerformanceInfo extends $tea.Model {
|
|
|
125
125
|
[key: string]: any;
|
|
126
126
|
});
|
|
127
127
|
}
|
|
128
|
-
export declare class
|
|
129
|
-
|
|
130
|
-
|
|
128
|
+
export declare class StaticData extends $tea.Model {
|
|
129
|
+
moduleName: string;
|
|
130
|
+
moduleDetailList: StaticDataModuleDetail[];
|
|
131
131
|
static names(): {
|
|
132
132
|
[key: string]: string;
|
|
133
133
|
};
|
|
@@ -138,11 +138,12 @@ export declare class RiskScene extends $tea.Model {
|
|
|
138
138
|
[key: string]: any;
|
|
139
139
|
});
|
|
140
140
|
}
|
|
141
|
-
export declare class
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
141
|
+
export declare class MerchantAgentPage extends $tea.Model {
|
|
142
|
+
payExpandId: string;
|
|
143
|
+
agentName: string;
|
|
144
|
+
tenantId: string;
|
|
145
|
+
bizType: string;
|
|
146
|
+
payExpandStatus: string;
|
|
146
147
|
static names(): {
|
|
147
148
|
[key: string]: string;
|
|
148
149
|
};
|
|
@@ -153,11 +154,16 @@ export declare class RiskStrategy extends $tea.Model {
|
|
|
153
154
|
[key: string]: any;
|
|
154
155
|
});
|
|
155
156
|
}
|
|
156
|
-
export declare class
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
157
|
+
export declare class OrderMsgInfo extends $tea.Model {
|
|
158
|
+
orderId: string;
|
|
159
|
+
msgId: string;
|
|
160
|
+
msgPublishType: string;
|
|
161
|
+
msgCreateTime: string;
|
|
162
|
+
msgStatus: string;
|
|
163
|
+
msgRetryTime: number;
|
|
164
|
+
msgContent: string;
|
|
165
|
+
msgCallbackUrl: string;
|
|
166
|
+
newMsgCallbackUrl: string;
|
|
161
167
|
static names(): {
|
|
162
168
|
[key: string]: string;
|
|
163
169
|
};
|
|
@@ -168,17 +174,7 @@ export declare class RelationPage extends $tea.Model {
|
|
|
168
174
|
[key: string]: any;
|
|
169
175
|
});
|
|
170
176
|
}
|
|
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;
|
|
177
|
+
export declare class OrderInfo extends $tea.Model {
|
|
182
178
|
static names(): {
|
|
183
179
|
[key: string]: string;
|
|
184
180
|
};
|
|
@@ -189,12 +185,14 @@ export declare class CompanyInfoUpdate extends $tea.Model {
|
|
|
189
185
|
[key: string]: any;
|
|
190
186
|
});
|
|
191
187
|
}
|
|
192
|
-
export declare class
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
188
|
+
export declare class ApplicationInfoUpdate extends $tea.Model {
|
|
189
|
+
applicationScene?: string;
|
|
190
|
+
tinyAppId?: string;
|
|
191
|
+
siteName?: string;
|
|
192
|
+
sitUrl?: string;
|
|
193
|
+
merchantName?: string;
|
|
194
|
+
merchantServiceName?: string;
|
|
195
|
+
merchantServiceDesc?: string;
|
|
198
196
|
static names(): {
|
|
199
197
|
[key: string]: string;
|
|
200
198
|
};
|
|
@@ -205,16 +203,12 @@ export declare class MerchantAgentPage extends $tea.Model {
|
|
|
205
203
|
[key: string]: any;
|
|
206
204
|
});
|
|
207
205
|
}
|
|
208
|
-
export declare class
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
msgRetryTime: number;
|
|
215
|
-
msgContent: string;
|
|
216
|
-
msgCallbackUrl: string;
|
|
217
|
-
newMsgCallbackUrl: string;
|
|
206
|
+
export declare class AuditInfo extends $tea.Model {
|
|
207
|
+
stage: string;
|
|
208
|
+
auditSubject: string;
|
|
209
|
+
status: string;
|
|
210
|
+
applyDateStr: string;
|
|
211
|
+
failReason: string;
|
|
218
212
|
static names(): {
|
|
219
213
|
[key: string]: string;
|
|
220
214
|
};
|
|
@@ -225,7 +219,7 @@ export declare class OrderMsgInfo extends $tea.Model {
|
|
|
225
219
|
[key: string]: any;
|
|
226
220
|
});
|
|
227
221
|
}
|
|
228
|
-
export declare class
|
|
222
|
+
export declare class OrderGoodsModel extends $tea.Model {
|
|
229
223
|
static names(): {
|
|
230
224
|
[key: string]: string;
|
|
231
225
|
};
|
|
@@ -236,15 +230,11 @@ export declare class OrderInfo extends $tea.Model {
|
|
|
236
230
|
[key: string]: any;
|
|
237
231
|
});
|
|
238
232
|
}
|
|
239
|
-
export declare class
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
totalAmount?: number;
|
|
245
|
-
paidAmount?: number;
|
|
246
|
-
receiptAmount?: number;
|
|
247
|
-
gmtPay?: string;
|
|
233
|
+
export declare class LegalInfoUpdate extends $tea.Model {
|
|
234
|
+
legalName?: string;
|
|
235
|
+
legalCertNo?: string;
|
|
236
|
+
legalCertFrontFile?: FileInfo;
|
|
237
|
+
legalCertBackFile?: FileInfo;
|
|
248
238
|
static names(): {
|
|
249
239
|
[key: string]: string;
|
|
250
240
|
};
|
|
@@ -255,14 +245,24 @@ export declare class ActivePayOrder extends $tea.Model {
|
|
|
255
245
|
[key: string]: any;
|
|
256
246
|
});
|
|
257
247
|
}
|
|
258
|
-
export declare class
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
248
|
+
export declare class PromiseInfo extends $tea.Model {
|
|
249
|
+
static names(): {
|
|
250
|
+
[key: string]: string;
|
|
251
|
+
};
|
|
252
|
+
static types(): {
|
|
253
|
+
[key: string]: any;
|
|
254
|
+
};
|
|
255
|
+
constructor(map?: {
|
|
256
|
+
[key: string]: any;
|
|
257
|
+
});
|
|
258
|
+
}
|
|
259
|
+
export declare class AgreementPage extends $tea.Model {
|
|
260
|
+
agreementId: string;
|
|
263
261
|
merchantName: string;
|
|
264
|
-
|
|
265
|
-
|
|
262
|
+
tenantId: string;
|
|
263
|
+
productMainClass: string;
|
|
264
|
+
agreementType: string;
|
|
265
|
+
signStatus: string;
|
|
266
266
|
static names(): {
|
|
267
267
|
[key: string]: string;
|
|
268
268
|
};
|
|
@@ -273,7 +273,9 @@ export declare class ApplicationInfo extends $tea.Model {
|
|
|
273
273
|
[key: string]: any;
|
|
274
274
|
});
|
|
275
275
|
}
|
|
276
|
-
export declare class
|
|
276
|
+
export declare class RiskScene extends $tea.Model {
|
|
277
|
+
sceneCode: string;
|
|
278
|
+
decision: string;
|
|
277
279
|
static names(): {
|
|
278
280
|
[key: string]: string;
|
|
279
281
|
};
|
|
@@ -284,9 +286,11 @@ export declare class GoodsInfo extends $tea.Model {
|
|
|
284
286
|
[key: string]: any;
|
|
285
287
|
});
|
|
286
288
|
}
|
|
287
|
-
export declare class
|
|
288
|
-
|
|
289
|
-
|
|
289
|
+
export declare class RelationPage extends $tea.Model {
|
|
290
|
+
relationId: string;
|
|
291
|
+
companyName: string;
|
|
292
|
+
merchantId: string;
|
|
293
|
+
status: string;
|
|
290
294
|
static names(): {
|
|
291
295
|
[key: string]: string;
|
|
292
296
|
};
|
|
@@ -297,14 +301,17 @@ export declare class PageQuery extends $tea.Model {
|
|
|
297
301
|
[key: string]: any;
|
|
298
302
|
});
|
|
299
303
|
}
|
|
300
|
-
export declare class
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
304
|
+
export declare class CompanyInfoUpdate extends $tea.Model {
|
|
305
|
+
businessLicenseFile?: FileInfo;
|
|
306
|
+
productMainClass?: string;
|
|
307
|
+
companyName?: string;
|
|
308
|
+
companyAliasName?: string;
|
|
309
|
+
tenantId?: string;
|
|
310
|
+
companyMobile?: string;
|
|
311
|
+
companyAddress?: string;
|
|
312
|
+
contactName?: string;
|
|
313
|
+
contactMobile?: string;
|
|
314
|
+
merchantType?: string;
|
|
308
315
|
static names(): {
|
|
309
316
|
[key: string]: string;
|
|
310
317
|
};
|
|
@@ -315,11 +322,15 @@ export declare class ApplicationInfoUpdate extends $tea.Model {
|
|
|
315
322
|
[key: string]: any;
|
|
316
323
|
});
|
|
317
324
|
}
|
|
318
|
-
export declare class
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
325
|
+
export declare class ActivePayOrder extends $tea.Model {
|
|
326
|
+
tradeNo: string;
|
|
327
|
+
tradeStatus: string;
|
|
328
|
+
statusReasonCode?: string;
|
|
329
|
+
statusReasonMsg?: string;
|
|
330
|
+
totalAmount?: number;
|
|
331
|
+
paidAmount?: number;
|
|
332
|
+
receiptAmount?: number;
|
|
333
|
+
gmtPay?: string;
|
|
323
334
|
static names(): {
|
|
324
335
|
[key: string]: string;
|
|
325
336
|
};
|
|
@@ -330,12 +341,14 @@ export declare class LegalInfo extends $tea.Model {
|
|
|
330
341
|
[key: string]: any;
|
|
331
342
|
});
|
|
332
343
|
}
|
|
333
|
-
export declare class
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
344
|
+
export declare class ApplicationInfo extends $tea.Model {
|
|
345
|
+
applicationScene: string;
|
|
346
|
+
tinyAppId: string;
|
|
347
|
+
siteName: string;
|
|
348
|
+
sitUrl: string;
|
|
349
|
+
merchantName: string;
|
|
350
|
+
merchantServiceName: string;
|
|
351
|
+
merchantServiceDesc: string;
|
|
339
352
|
static names(): {
|
|
340
353
|
[key: string]: string;
|
|
341
354
|
};
|
|
@@ -346,12 +359,7 @@ export declare class AuditInfo extends $tea.Model {
|
|
|
346
359
|
[key: string]: any;
|
|
347
360
|
});
|
|
348
361
|
}
|
|
349
|
-
export declare class
|
|
350
|
-
sceneCode: string;
|
|
351
|
-
score: string;
|
|
352
|
-
delinquencyRate?: string;
|
|
353
|
-
riskAdvice?: string;
|
|
354
|
-
riskRank?: string;
|
|
362
|
+
export declare class GoodsInfo extends $tea.Model {
|
|
355
363
|
static names(): {
|
|
356
364
|
[key: string]: string;
|
|
357
365
|
};
|
|
@@ -362,7 +370,9 @@ export declare class RiskModel extends $tea.Model {
|
|
|
362
370
|
[key: string]: any;
|
|
363
371
|
});
|
|
364
372
|
}
|
|
365
|
-
export declare class
|
|
373
|
+
export declare class PageQuery extends $tea.Model {
|
|
374
|
+
pageSize: number;
|
|
375
|
+
pageIndex: number;
|
|
366
376
|
static names(): {
|
|
367
377
|
[key: string]: string;
|
|
368
378
|
};
|
|
@@ -373,11 +383,27 @@ export declare class OrderGoodsModel extends $tea.Model {
|
|
|
373
383
|
[key: string]: any;
|
|
374
384
|
});
|
|
375
385
|
}
|
|
376
|
-
export declare class
|
|
377
|
-
legalName
|
|
378
|
-
legalCertNo
|
|
379
|
-
legalCertFrontFile
|
|
380
|
-
legalCertBackFile
|
|
386
|
+
export declare class LegalInfo extends $tea.Model {
|
|
387
|
+
legalName: string;
|
|
388
|
+
legalCertNo: string;
|
|
389
|
+
legalCertFrontFile: FileInfo;
|
|
390
|
+
legalCertBackFile: FileInfo;
|
|
391
|
+
static names(): {
|
|
392
|
+
[key: string]: string;
|
|
393
|
+
};
|
|
394
|
+
static types(): {
|
|
395
|
+
[key: string]: any;
|
|
396
|
+
};
|
|
397
|
+
constructor(map?: {
|
|
398
|
+
[key: string]: any;
|
|
399
|
+
});
|
|
400
|
+
}
|
|
401
|
+
export declare class RiskModel extends $tea.Model {
|
|
402
|
+
sceneCode: string;
|
|
403
|
+
score: string;
|
|
404
|
+
delinquencyRate?: string;
|
|
405
|
+
riskAdvice?: string;
|
|
406
|
+
riskRank?: string;
|
|
381
407
|
static names(): {
|
|
382
408
|
[key: string]: string;
|
|
383
409
|
};
|
|
@@ -1061,6 +1087,38 @@ export declare class QueryFundCreditResponse extends $tea.Model {
|
|
|
1061
1087
|
[key: string]: any;
|
|
1062
1088
|
});
|
|
1063
1089
|
}
|
|
1090
|
+
export declare class SyncFundFinanceprecheckresultRequest extends $tea.Model {
|
|
1091
|
+
authToken?: string;
|
|
1092
|
+
productInstanceId?: string;
|
|
1093
|
+
orderId: string;
|
|
1094
|
+
merchantId: string;
|
|
1095
|
+
fundId: string;
|
|
1096
|
+
result: string;
|
|
1097
|
+
refuseReason?: string;
|
|
1098
|
+
static names(): {
|
|
1099
|
+
[key: string]: string;
|
|
1100
|
+
};
|
|
1101
|
+
static types(): {
|
|
1102
|
+
[key: string]: any;
|
|
1103
|
+
};
|
|
1104
|
+
constructor(map?: {
|
|
1105
|
+
[key: string]: any;
|
|
1106
|
+
});
|
|
1107
|
+
}
|
|
1108
|
+
export declare class SyncFundFinanceprecheckresultResponse extends $tea.Model {
|
|
1109
|
+
reqMsgId?: string;
|
|
1110
|
+
resultCode?: string;
|
|
1111
|
+
resultMsg?: string;
|
|
1112
|
+
static names(): {
|
|
1113
|
+
[key: string]: string;
|
|
1114
|
+
};
|
|
1115
|
+
static types(): {
|
|
1116
|
+
[key: string]: any;
|
|
1117
|
+
};
|
|
1118
|
+
constructor(map?: {
|
|
1119
|
+
[key: string]: any;
|
|
1120
|
+
});
|
|
1121
|
+
}
|
|
1064
1122
|
export declare class GetInnerProductRequest extends $tea.Model {
|
|
1065
1123
|
authToken?: string;
|
|
1066
1124
|
productInstanceId?: string;
|
|
@@ -1388,6 +1446,7 @@ export declare class PublishInnerTemplateRequest extends $tea.Model {
|
|
|
1388
1446
|
tenantId: string;
|
|
1389
1447
|
templateCode: string;
|
|
1390
1448
|
templateVersionId: string;
|
|
1449
|
+
templateVersion?: string;
|
|
1391
1450
|
static names(): {
|
|
1392
1451
|
[key: string]: string;
|
|
1393
1452
|
};
|
|
@@ -2563,6 +2622,35 @@ export declare class QueryInnerWithholdsignResponse extends $tea.Model {
|
|
|
2563
2622
|
[key: string]: any;
|
|
2564
2623
|
});
|
|
2565
2624
|
}
|
|
2625
|
+
export declare class GetInnerMerchantstaticdataRequest extends $tea.Model {
|
|
2626
|
+
authToken?: string;
|
|
2627
|
+
productInstanceId?: string;
|
|
2628
|
+
tenantId: string;
|
|
2629
|
+
static names(): {
|
|
2630
|
+
[key: string]: string;
|
|
2631
|
+
};
|
|
2632
|
+
static types(): {
|
|
2633
|
+
[key: string]: any;
|
|
2634
|
+
};
|
|
2635
|
+
constructor(map?: {
|
|
2636
|
+
[key: string]: any;
|
|
2637
|
+
});
|
|
2638
|
+
}
|
|
2639
|
+
export declare class GetInnerMerchantstaticdataResponse extends $tea.Model {
|
|
2640
|
+
reqMsgId?: string;
|
|
2641
|
+
resultCode?: string;
|
|
2642
|
+
resultMsg?: string;
|
|
2643
|
+
staticDataList?: StaticData[];
|
|
2644
|
+
static names(): {
|
|
2645
|
+
[key: string]: string;
|
|
2646
|
+
};
|
|
2647
|
+
static types(): {
|
|
2648
|
+
[key: string]: any;
|
|
2649
|
+
};
|
|
2650
|
+
constructor(map?: {
|
|
2651
|
+
[key: string]: any;
|
|
2652
|
+
});
|
|
2653
|
+
}
|
|
2566
2654
|
export declare class RegisterMerchantexpandMerchantRequest extends $tea.Model {
|
|
2567
2655
|
authToken?: string;
|
|
2568
2656
|
productInstanceId?: string;
|
|
@@ -3506,6 +3594,40 @@ export declare class ReplaceTradeUserpromiseResponse extends $tea.Model {
|
|
|
3506
3594
|
[key: string]: any;
|
|
3507
3595
|
});
|
|
3508
3596
|
}
|
|
3597
|
+
export declare class ApplyTradeFinanceprecheckRequest extends $tea.Model {
|
|
3598
|
+
authToken?: string;
|
|
3599
|
+
productInstanceId?: string;
|
|
3600
|
+
orderId: string;
|
|
3601
|
+
merchantId: string;
|
|
3602
|
+
fundId: string;
|
|
3603
|
+
transparentInfo?: string;
|
|
3604
|
+
static names(): {
|
|
3605
|
+
[key: string]: string;
|
|
3606
|
+
};
|
|
3607
|
+
static types(): {
|
|
3608
|
+
[key: string]: any;
|
|
3609
|
+
};
|
|
3610
|
+
constructor(map?: {
|
|
3611
|
+
[key: string]: any;
|
|
3612
|
+
});
|
|
3613
|
+
}
|
|
3614
|
+
export declare class ApplyTradeFinanceprecheckResponse extends $tea.Model {
|
|
3615
|
+
reqMsgId?: string;
|
|
3616
|
+
resultCode?: string;
|
|
3617
|
+
resultMsg?: string;
|
|
3618
|
+
responseData?: string;
|
|
3619
|
+
orderId?: string;
|
|
3620
|
+
merchantId?: string;
|
|
3621
|
+
static names(): {
|
|
3622
|
+
[key: string]: string;
|
|
3623
|
+
};
|
|
3624
|
+
static types(): {
|
|
3625
|
+
[key: string]: any;
|
|
3626
|
+
};
|
|
3627
|
+
constructor(map?: {
|
|
3628
|
+
[key: string]: any;
|
|
3629
|
+
});
|
|
3630
|
+
}
|
|
3509
3631
|
export declare class CreateWithholdSignRequest extends $tea.Model {
|
|
3510
3632
|
authToken?: string;
|
|
3511
3633
|
productInstanceId?: string;
|
|
@@ -4211,6 +4333,18 @@ export default class Client {
|
|
|
4211
4333
|
queryFundCreditEx(request: QueryFundCreditRequest, headers: {
|
|
4212
4334
|
[key: string]: string;
|
|
4213
4335
|
}, runtime: $Util.RuntimeOptions): Promise<QueryFundCreditResponse>;
|
|
4336
|
+
/**
|
|
4337
|
+
* Description: 融资预审结果同步
|
|
4338
|
+
* Summary: 融资预审结果同步
|
|
4339
|
+
*/
|
|
4340
|
+
syncFundFinanceprecheckresult(request: SyncFundFinanceprecheckresultRequest): Promise<SyncFundFinanceprecheckresultResponse>;
|
|
4341
|
+
/**
|
|
4342
|
+
* Description: 融资预审结果同步
|
|
4343
|
+
* Summary: 融资预审结果同步
|
|
4344
|
+
*/
|
|
4345
|
+
syncFundFinanceprecheckresultEx(request: SyncFundFinanceprecheckresultRequest, headers: {
|
|
4346
|
+
[key: string]: string;
|
|
4347
|
+
}, runtime: $Util.RuntimeOptions): Promise<SyncFundFinanceprecheckresultResponse>;
|
|
4214
4348
|
/**
|
|
4215
4349
|
* Description: 内部调用,商品信息获取
|
|
4216
4350
|
* Summary: 商品信息获取
|
|
@@ -4775,6 +4909,18 @@ export default class Client {
|
|
|
4775
4909
|
queryInnerWithholdsignEx(request: QueryInnerWithholdsignRequest, headers: {
|
|
4776
4910
|
[key: string]: string;
|
|
4777
4911
|
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerWithholdsignResponse>;
|
|
4912
|
+
/**
|
|
4913
|
+
* Description: 获取商户进件静态枚举数据
|
|
4914
|
+
* Summary: 获取商户进件静态枚举数据
|
|
4915
|
+
*/
|
|
4916
|
+
getInnerMerchantstaticdata(request: GetInnerMerchantstaticdataRequest): Promise<GetInnerMerchantstaticdataResponse>;
|
|
4917
|
+
/**
|
|
4918
|
+
* Description: 获取商户进件静态枚举数据
|
|
4919
|
+
* Summary: 获取商户进件静态枚举数据
|
|
4920
|
+
*/
|
|
4921
|
+
getInnerMerchantstaticdataEx(request: GetInnerMerchantstaticdataRequest, headers: {
|
|
4922
|
+
[key: string]: string;
|
|
4923
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetInnerMerchantstaticdataResponse>;
|
|
4778
4924
|
/**
|
|
4779
4925
|
* Description: 商户入驻
|
|
4780
4926
|
* Summary: 商户入驻
|
|
@@ -5111,6 +5257,18 @@ export default class Client {
|
|
|
5111
5257
|
replaceTradeUserpromiseEx(request: ReplaceTradeUserpromiseRequest, headers: {
|
|
5112
5258
|
[key: string]: string;
|
|
5113
5259
|
}, runtime: $Util.RuntimeOptions): Promise<ReplaceTradeUserpromiseResponse>;
|
|
5260
|
+
/**
|
|
5261
|
+
* Description: 订单融资预审申请接口
|
|
5262
|
+
* Summary: 订单融资预审申请接口
|
|
5263
|
+
*/
|
|
5264
|
+
applyTradeFinanceprecheck(request: ApplyTradeFinanceprecheckRequest): Promise<ApplyTradeFinanceprecheckResponse>;
|
|
5265
|
+
/**
|
|
5266
|
+
* Description: 订单融资预审申请接口
|
|
5267
|
+
* Summary: 订单融资预审申请接口
|
|
5268
|
+
*/
|
|
5269
|
+
applyTradeFinanceprecheckEx(request: ApplyTradeFinanceprecheckRequest, headers: {
|
|
5270
|
+
[key: string]: string;
|
|
5271
|
+
}, runtime: $Util.RuntimeOptions): Promise<ApplyTradeFinanceprecheckResponse>;
|
|
5114
5272
|
/**
|
|
5115
5273
|
* Description: 代扣签约创建
|
|
5116
5274
|
* Summary: 代扣签约
|