@antchain/ato 1.15.69 → 1.16.35

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 CHANGED
@@ -34,6 +34,20 @@ export declare class Config extends $tea.Model {
34
34
  [key: string]: any;
35
35
  });
36
36
  }
37
+ export declare class ProductSpecOption extends $tea.Model {
38
+ specKey?: string;
39
+ displayName?: string;
40
+ specValue?: 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
+ }
37
51
  export declare class FileInfo extends $tea.Model {
38
52
  fileName: string;
39
53
  fileKey: string;
@@ -60,6 +74,20 @@ export declare class PaymentItem extends $tea.Model {
60
74
  [key: string]: any;
61
75
  });
62
76
  }
77
+ export declare class ProductSpecValue extends $tea.Model {
78
+ specValue?: string;
79
+ imageFileKey?: string;
80
+ largeImageFileKey?: string;
81
+ static names(): {
82
+ [key: string]: string;
83
+ };
84
+ static types(): {
85
+ [key: string]: any;
86
+ };
87
+ constructor(map?: {
88
+ [key: string]: any;
89
+ });
90
+ }
63
91
  export declare class ScalperQueryOrderItem extends $tea.Model {
64
92
  orderItemsName?: string;
65
93
  orderItemsQuantity?: number;
@@ -74,6 +102,46 @@ export declare class ScalperQueryOrderItem extends $tea.Model {
74
102
  [key: string]: any;
75
103
  });
76
104
  }
105
+ export declare class LeasePriceProp extends $tea.Model {
106
+ merchantSkuId?: string;
107
+ productSpecOptionList?: ProductSpecOption[];
108
+ specImageFileKey?: string;
109
+ largeSpecImageFileKey?: string;
110
+ originTotalRentMoney?: number;
111
+ totalRentMoney?: number;
112
+ originDailyRentMoney?: number;
113
+ dailyRentMoney?: number;
114
+ stockQuantity?: number;
115
+ renewPrice?: number;
116
+ buyoutPrice?: number;
117
+ forSale?: boolean;
118
+ static names(): {
119
+ [key: string]: string;
120
+ };
121
+ static types(): {
122
+ [key: string]: any;
123
+ };
124
+ constructor(map?: {
125
+ [key: string]: any;
126
+ });
127
+ }
128
+ export declare class MerchantPerformanceRedeemResultInfo extends $tea.Model {
129
+ redeemWay?: string;
130
+ redeemTime?: string;
131
+ redeemReason?: string;
132
+ redeemType?: string;
133
+ redeemAmount?: number;
134
+ redeemStatus?: string;
135
+ static names(): {
136
+ [key: string]: string;
137
+ };
138
+ static types(): {
139
+ [key: string]: any;
140
+ };
141
+ constructor(map?: {
142
+ [key: string]: any;
143
+ });
144
+ }
77
145
  export declare class SingleTermDetail extends $tea.Model {
78
146
  periodNum: number;
79
147
  payAmount: number;
@@ -87,6 +155,20 @@ export declare class SingleTermDetail extends $tea.Model {
87
155
  [key: string]: any;
88
156
  });
89
157
  }
158
+ export declare class ProductSpecConfig extends $tea.Model {
159
+ specKey?: string;
160
+ displayName?: string;
161
+ specValueList?: ProductSpecValue[];
162
+ static names(): {
163
+ [key: string]: string;
164
+ };
165
+ static types(): {
166
+ [key: string]: any;
167
+ };
168
+ constructor(map?: {
169
+ [key: string]: any;
170
+ });
171
+ }
90
172
  export declare class OperationDivideTransInDetailInfo extends $tea.Model {
91
173
  transInName?: string;
92
174
  transInUserId?: string;
@@ -122,6 +204,7 @@ export declare class OrderRepayStrategy extends $tea.Model {
122
204
  rentalMoney?: number;
123
205
  payDay?: string;
124
206
  paymentItemList?: PaymentItem[];
207
+ noPerformance?: string;
125
208
  static names(): {
126
209
  [key: string]: string;
127
210
  };
@@ -202,6 +285,8 @@ export declare class MerchantOrderRepayStrategy extends $tea.Model {
202
285
  leaseTermIndex?: number;
203
286
  payMoney?: number;
204
287
  toCompensateDate?: string;
288
+ fundId?: string;
289
+ fundCompanyName?: string;
205
290
  static names(): {
206
291
  [key: string]: string;
207
292
  };
@@ -319,6 +404,7 @@ export declare class OrderInfo extends $tea.Model {
319
404
  merchantName?: string;
320
405
  divideStartTermIndex?: number;
321
406
  promotionId?: string;
407
+ fundMode?: string;
322
408
  static names(): {
323
409
  [key: string]: string;
324
410
  };
@@ -563,6 +649,7 @@ export declare class OrderFulfillmentInfo extends $tea.Model {
563
649
  returnTime?: string;
564
650
  returnWay?: string;
565
651
  returnVoucherSerial?: string;
652
+ alipayTradeNo?: string;
566
653
  static names(): {
567
654
  [key: string]: string;
568
655
  };
@@ -677,7 +764,9 @@ export declare class MerchantOrderFulfillmentInfo extends $tea.Model {
677
764
  totalMoney?: number;
678
765
  returnTime?: string;
679
766
  returnVoucherSerial?: string;
767
+ alipayTradeNo?: string;
680
768
  fundCompanyName?: string;
769
+ paymentDescription?: string;
681
770
  static names(): {
682
771
  [key: string]: string;
683
772
  };
@@ -756,6 +845,19 @@ export declare class ApplicationInfo extends $tea.Model {
756
845
  [key: string]: any;
757
846
  });
758
847
  }
848
+ export declare class MerchantPerformanceRepaySupportInfo extends $tea.Model {
849
+ supportRepay?: boolean;
850
+ termIndex?: number;
851
+ static names(): {
852
+ [key: string]: string;
853
+ };
854
+ static types(): {
855
+ [key: string]: any;
856
+ };
857
+ constructor(map?: {
858
+ [key: string]: any;
859
+ });
860
+ }
759
861
  export declare class ItemDetail extends $tea.Model {
760
862
  goodsCategory?: string;
761
863
  itemName?: string;
@@ -948,6 +1050,20 @@ export declare class RiskStrategy extends $tea.Model {
948
1050
  [key: string]: any;
949
1051
  });
950
1052
  }
1053
+ export declare class LeasePricePlan extends $tea.Model {
1054
+ rentalPlan?: string;
1055
+ rentalPeriod?: number;
1056
+ leasePricePropList?: LeasePriceProp[];
1057
+ static names(): {
1058
+ [key: string]: string;
1059
+ };
1060
+ static types(): {
1061
+ [key: string]: any;
1062
+ };
1063
+ constructor(map?: {
1064
+ [key: string]: any;
1065
+ });
1066
+ }
951
1067
  export declare class KnowledgeInfo extends $tea.Model {
952
1068
  tenantId?: string;
953
1069
  id?: number;
@@ -1035,6 +1151,20 @@ export declare class OrderContractInfo extends $tea.Model {
1035
1151
  [key: string]: any;
1036
1152
  });
1037
1153
  }
1154
+ export declare class MerchantPerformanceRedeemInfo extends $tea.Model {
1155
+ supportRedeem?: boolean;
1156
+ supportRedeemTypeList?: string[];
1157
+ merchantPerformanceRedeemResultInfo?: MerchantPerformanceRedeemResultInfo;
1158
+ static names(): {
1159
+ [key: string]: string;
1160
+ };
1161
+ static types(): {
1162
+ [key: string]: any;
1163
+ };
1164
+ constructor(map?: {
1165
+ [key: string]: any;
1166
+ });
1167
+ }
1038
1168
  export declare class PendingEventInfo extends $tea.Model {
1039
1169
  eventId?: string;
1040
1170
  type?: string;
@@ -1096,6 +1226,8 @@ export declare class DataDownloadInfo extends $tea.Model {
1096
1226
  endTime?: string;
1097
1227
  createTime?: string;
1098
1228
  resultInfo?: string;
1229
+ fundMode?: string;
1230
+ loanChannel?: string;
1099
1231
  static names(): {
1100
1232
  [key: string]: string;
1101
1233
  };
@@ -1190,6 +1322,34 @@ export declare class OrderGoodsModel extends $tea.Model {
1190
1322
  [key: string]: any;
1191
1323
  });
1192
1324
  }
1325
+ export declare class PlatformProductInfoResp extends $tea.Model {
1326
+ applyStatus?: string;
1327
+ refuseReason?: string;
1328
+ platformProductId?: string;
1329
+ merchantProductId?: string;
1330
+ productName?: string;
1331
+ firstCoverImageUrl?: string;
1332
+ largeFirstCoverImageUrl?: string;
1333
+ displayStatus?: string;
1334
+ specConfigList?: ProductSpecConfig[];
1335
+ rentalPlan?: string[];
1336
+ rentalPeriod?: number[];
1337
+ supportRenew?: boolean;
1338
+ supportBuyout?: boolean;
1339
+ lowestDailyRentMoney?: number;
1340
+ lowestDailyRentMoneyYuan?: string;
1341
+ highestDailyRentMoney?: number;
1342
+ highestDailyRentMoneyYuan?: string;
1343
+ static names(): {
1344
+ [key: string]: string;
1345
+ };
1346
+ static types(): {
1347
+ [key: string]: any;
1348
+ };
1349
+ constructor(map?: {
1350
+ [key: string]: any;
1351
+ });
1352
+ }
1193
1353
  export declare class DeliveryDetail extends $tea.Model {
1194
1354
  receiverName?: string;
1195
1355
  receiverMobile?: string;
@@ -1221,6 +1381,25 @@ export declare class AgreementPage extends $tea.Model {
1221
1381
  [key: string]: any;
1222
1382
  });
1223
1383
  }
1384
+ export declare class BatchLoanResultData extends $tea.Model {
1385
+ bizNo?: string;
1386
+ status?: string;
1387
+ type?: string;
1388
+ createTime?: string;
1389
+ agreeLoanCount?: number;
1390
+ rejectLoanCount?: number;
1391
+ loanFailCount?: number;
1392
+ fileUrl?: string;
1393
+ static names(): {
1394
+ [key: string]: string;
1395
+ };
1396
+ static types(): {
1397
+ [key: string]: any;
1398
+ };
1399
+ constructor(map?: {
1400
+ [key: string]: any;
1401
+ });
1402
+ }
1224
1403
  export declare class FundMngLoanApplyResult extends $tea.Model {
1225
1404
  loanApplyStatus?: string;
1226
1405
  loanFailReason?: string;
@@ -1393,6 +1572,20 @@ export declare class LegalInfo extends $tea.Model {
1393
1572
  [key: string]: any;
1394
1573
  });
1395
1574
  }
1575
+ export declare class TemplateArgs extends $tea.Model {
1576
+ templateId: string;
1577
+ templateVersion?: string;
1578
+ templateArgs?: string;
1579
+ static names(): {
1580
+ [key: string]: string;
1581
+ };
1582
+ static types(): {
1583
+ [key: string]: any;
1584
+ };
1585
+ constructor(map?: {
1586
+ [key: string]: any;
1587
+ });
1588
+ }
1396
1589
  export declare class OrderFinanceInfo extends $tea.Model {
1397
1590
  totalMoney?: number;
1398
1591
  applyStatus?: string;
@@ -1465,6 +1658,39 @@ export declare class TransferBrokerUserdataResponse extends $tea.Model {
1465
1658
  [key: string]: any;
1466
1659
  });
1467
1660
  }
1661
+ export declare class CreateJdFunddividerelationRequest extends $tea.Model {
1662
+ authToken?: string;
1663
+ productInstanceId?: string;
1664
+ subjectMerchantId: string;
1665
+ devideTenantId: string;
1666
+ devideMerchantId: string;
1667
+ contractFiles?: FileInfo[];
1668
+ desc?: string;
1669
+ static names(): {
1670
+ [key: string]: string;
1671
+ };
1672
+ static types(): {
1673
+ [key: string]: any;
1674
+ };
1675
+ constructor(map?: {
1676
+ [key: string]: any;
1677
+ });
1678
+ }
1679
+ export declare class CreateJdFunddividerelationResponse extends $tea.Model {
1680
+ reqMsgId?: string;
1681
+ resultCode?: string;
1682
+ resultMsg?: string;
1683
+ relationId?: string;
1684
+ static names(): {
1685
+ [key: string]: string;
1686
+ };
1687
+ static types(): {
1688
+ [key: string]: any;
1689
+ };
1690
+ constructor(map?: {
1691
+ [key: string]: any;
1692
+ });
1693
+ }
1468
1694
  export declare class QueryInnerFundmngdemoRequest extends $tea.Model {
1469
1695
  authToken?: string;
1470
1696
  productInstanceId?: string;
@@ -1508,6 +1734,8 @@ export declare class PagequeryInnerFundmngfinanceorderRequest extends $tea.Model
1508
1734
  loanStatus?: string;
1509
1735
  fundName?: string;
1510
1736
  isLoanApplyFail?: boolean;
1737
+ fundMode?: string;
1738
+ traceId: string;
1511
1739
  pageInfo: PageQuery;
1512
1740
  static names(): {
1513
1741
  [key: string]: string;
@@ -1543,6 +1771,10 @@ export declare class SubmitInnerFundmngdatadownloadRequest extends $tea.Model {
1543
1771
  startTime: string;
1544
1772
  endTime: string;
1545
1773
  type: string;
1774
+ merchantId?: string;
1775
+ fundMode?: string;
1776
+ loanChannel?: string;
1777
+ traceId: string;
1546
1778
  static names(): {
1547
1779
  [key: string]: string;
1548
1780
  };
@@ -1557,6 +1789,9 @@ export declare class SubmitInnerFundmngdatadownloadResponse extends $tea.Model {
1557
1789
  reqMsgId?: string;
1558
1790
  resultCode?: string;
1559
1791
  resultMsg?: string;
1792
+ downloadType?: string;
1793
+ downloadUrl?: string;
1794
+ status?: string;
1560
1795
  static names(): {
1561
1796
  [key: string]: string;
1562
1797
  };
@@ -1573,6 +1808,8 @@ export declare class PagequeryInnerFundmngdatadownloadRequest extends $tea.Model
1573
1808
  fundTenantId: string;
1574
1809
  status?: string;
1575
1810
  pageInfo: PageQuery;
1811
+ type?: string[];
1812
+ traceId: string;
1576
1813
  static names(): {
1577
1814
  [key: string]: string;
1578
1815
  };
@@ -1604,6 +1841,7 @@ export declare class DeleteInnerFundmngdatadownloadRequest extends $tea.Model {
1604
1841
  productInstanceId?: string;
1605
1842
  fundTenantId: string;
1606
1843
  bizNo: string;
1844
+ traceId: string;
1607
1845
  static names(): {
1608
1846
  [key: string]: string;
1609
1847
  };
@@ -1635,6 +1873,7 @@ export declare class QueryInnerFundmngmerchantpayitemRequest extends $tea.Model
1635
1873
  tenantId: string;
1636
1874
  merchantId: string;
1637
1875
  fundId: string;
1876
+ traceId: string;
1638
1877
  static names(): {
1639
1878
  [key: string]: string;
1640
1879
  };
@@ -1675,6 +1914,7 @@ export declare class CreateInnerFundmngmerchantpromiseRequest extends $tea.Model
1675
1914
  divideAlipayLoginId: string;
1676
1915
  compensateAlipayUserId: string;
1677
1916
  compensateAlipayLoginId: string;
1917
+ traceId: string;
1678
1918
  static names(): {
1679
1919
  [key: string]: string;
1680
1920
  };
@@ -1708,6 +1948,7 @@ export declare class QueryInnerFundmngloanapplyRequest extends $tea.Model {
1708
1948
  fundId: string;
1709
1949
  merchantId: string;
1710
1950
  orderId: string;
1951
+ traceId: string;
1711
1952
  static names(): {
1712
1953
  [key: string]: string;
1713
1954
  };
@@ -1748,7 +1989,8 @@ export declare class QueryInnerFundmngaccountinfoRequest extends $tea.Model {
1748
1989
  authToken?: string;
1749
1990
  productInstanceId?: string;
1750
1991
  fundTenantId: string;
1751
- fundId: string;
1992
+ fundId?: string;
1993
+ traceId: string;
1752
1994
  static names(): {
1753
1995
  [key: string]: string;
1754
1996
  };
@@ -1783,9 +2025,16 @@ export declare class SyncInnerFundmngloanresultsRequest extends $tea.Model {
1783
2025
  merchantId: string;
1784
2026
  fundId: string;
1785
2027
  type: string;
2028
+ fundMode: string;
1786
2029
  financeLoanResults?: string;
1787
2030
  merchantPromiseInfo?: string;
1788
2031
  promotionId?: string;
2032
+ payStartTermIndex?: number;
2033
+ divideAlipayUserId?: string;
2034
+ divideAlipayLoginId?: string;
2035
+ compensateAlipayUserId?: string;
2036
+ compensateAlipayLoginId?: string;
2037
+ traceId: string;
1789
2038
  static names(): {
1790
2039
  [key: string]: string;
1791
2040
  };
@@ -1823,6 +2072,7 @@ export declare class CreateInnerFundmngcreditRequest extends $tea.Model {
1823
2072
  creditName: string;
1824
2073
  creditFileKey?: string;
1825
2074
  creditContent?: string;
2075
+ traceId: string;
1826
2076
  static names(): {
1827
2077
  [key: string]: string;
1828
2078
  };
@@ -1857,6 +2107,7 @@ export declare class QueryInnerFundmngcreditRequest extends $tea.Model {
1857
2107
  fundId: string;
1858
2108
  orderNoType: string;
1859
2109
  orderNo: string;
2110
+ traceId: string;
1860
2111
  static names(): {
1861
2112
  [key: string]: string;
1862
2113
  };
@@ -1890,6 +2141,7 @@ export declare class DetailInnerFundmngorderRequest extends $tea.Model {
1890
2141
  tenantId: string;
1891
2142
  merchantId: string;
1892
2143
  orderId: string;
2144
+ traceId: string;
1893
2145
  static names(): {
1894
2146
  [key: string]: string;
1895
2147
  };
@@ -1918,6 +2170,8 @@ export declare class DetailInnerFundmngorderResponse extends $tea.Model {
1918
2170
  merchantOrderRepayStrategy?: MerchantOrderRepayStrategy[];
1919
2171
  merchantOrderFulfillmentInfo?: MerchantOrderFulfillmentInfo[];
1920
2172
  fundMngLoanApplayResult?: FundMngLoanApplyResult;
2173
+ merchantPerformanceRedeemInfo?: MerchantPerformanceRedeemInfo;
2174
+ merchantPerformanceRepaySupportInfo?: MerchantPerformanceRepaySupportInfo[];
1921
2175
  static names(): {
1922
2176
  [key: string]: string;
1923
2177
  };
@@ -1936,6 +2190,7 @@ export declare class QueryInnerFundmngmerchantperformanceRequest extends $tea.Mo
1936
2190
  fundTenantId: string;
1937
2191
  fundId: string;
1938
2192
  orderId: string;
2193
+ traceId: string;
1939
2194
  static names(): {
1940
2195
  [key: string]: string;
1941
2196
  };
@@ -1960,6 +2215,325 @@ export declare class QueryInnerFundmngmerchantperformanceResponse extends $tea.M
1960
2215
  [key: string]: any;
1961
2216
  });
1962
2217
  }
2218
+ export declare class RepayInnerFundmngmerchantperformanceRequest extends $tea.Model {
2219
+ authToken?: string;
2220
+ productInstanceId?: string;
2221
+ fundTenantId: string;
2222
+ tenantId: string;
2223
+ fundId: string;
2224
+ merchantId: string;
2225
+ orderId: string;
2226
+ termIndex: number;
2227
+ amount: number;
2228
+ paymentDescription: string;
2229
+ traceId: string;
2230
+ static names(): {
2231
+ [key: string]: string;
2232
+ };
2233
+ static types(): {
2234
+ [key: string]: any;
2235
+ };
2236
+ constructor(map?: {
2237
+ [key: string]: any;
2238
+ });
2239
+ }
2240
+ export declare class RepayInnerFundmngmerchantperformanceResponse extends $tea.Model {
2241
+ reqMsgId?: string;
2242
+ resultCode?: string;
2243
+ resultMsg?: string;
2244
+ static names(): {
2245
+ [key: string]: string;
2246
+ };
2247
+ static types(): {
2248
+ [key: string]: any;
2249
+ };
2250
+ constructor(map?: {
2251
+ [key: string]: any;
2252
+ });
2253
+ }
2254
+ export declare class RedeemInnerFundmngmerchantperformanceRequest extends $tea.Model {
2255
+ authToken?: string;
2256
+ productInstanceId?: string;
2257
+ fundTenantId: string;
2258
+ tenantId: string;
2259
+ fundId: string;
2260
+ merchantId: string;
2261
+ orderId: string;
2262
+ redeemWay: string;
2263
+ redeemReason: string;
2264
+ redeemAmount?: number;
2265
+ redeemType?: string;
2266
+ traceId: string;
2267
+ static names(): {
2268
+ [key: string]: string;
2269
+ };
2270
+ static types(): {
2271
+ [key: string]: any;
2272
+ };
2273
+ constructor(map?: {
2274
+ [key: string]: any;
2275
+ });
2276
+ }
2277
+ export declare class RedeemInnerFundmngmerchantperformanceResponse extends $tea.Model {
2278
+ reqMsgId?: string;
2279
+ resultCode?: string;
2280
+ resultMsg?: string;
2281
+ static names(): {
2282
+ [key: string]: string;
2283
+ };
2284
+ static types(): {
2285
+ [key: string]: any;
2286
+ };
2287
+ constructor(map?: {
2288
+ [key: string]: any;
2289
+ });
2290
+ }
2291
+ export declare class SubmitInnerFundmngbatchloanRequest extends $tea.Model {
2292
+ authToken?: string;
2293
+ productInstanceId?: string;
2294
+ fundTenantId: string;
2295
+ merchantCompensateStartDay?: number;
2296
+ divideAlipayUserId: string;
2297
+ divideAlipayLoginId: string;
2298
+ compensateAlipayUserId: string;
2299
+ compensateAlipayLoginId: string;
2300
+ fundMode: string;
2301
+ fileInfo: FileInfo;
2302
+ traceId: string;
2303
+ paidRole?: string;
2304
+ paidCompanyId?: string;
2305
+ loanChannel?: string;
2306
+ static names(): {
2307
+ [key: string]: string;
2308
+ };
2309
+ static types(): {
2310
+ [key: string]: any;
2311
+ };
2312
+ constructor(map?: {
2313
+ [key: string]: any;
2314
+ });
2315
+ }
2316
+ export declare class SubmitInnerFundmngbatchloanResponse extends $tea.Model {
2317
+ reqMsgId?: string;
2318
+ resultCode?: string;
2319
+ resultMsg?: string;
2320
+ static names(): {
2321
+ [key: string]: string;
2322
+ };
2323
+ static types(): {
2324
+ [key: string]: any;
2325
+ };
2326
+ constructor(map?: {
2327
+ [key: string]: any;
2328
+ });
2329
+ }
2330
+ export declare class PreviewInnerFundmngbatchloanRequest extends $tea.Model {
2331
+ authToken?: string;
2332
+ productInstanceId?: string;
2333
+ fundTenantId: string;
2334
+ fileInfo: FileInfo;
2335
+ traceId: string;
2336
+ fundMode?: string;
2337
+ loanChannel?: string;
2338
+ static names(): {
2339
+ [key: string]: string;
2340
+ };
2341
+ static types(): {
2342
+ [key: string]: any;
2343
+ };
2344
+ constructor(map?: {
2345
+ [key: string]: any;
2346
+ });
2347
+ }
2348
+ export declare class PreviewInnerFundmngbatchloanResponse extends $tea.Model {
2349
+ reqMsgId?: string;
2350
+ resultCode?: string;
2351
+ resultMsg?: string;
2352
+ agreeLoanCount?: number;
2353
+ rejectLoanCount?: number;
2354
+ importFailCount?: number;
2355
+ fileUrl?: string;
2356
+ static names(): {
2357
+ [key: string]: string;
2358
+ };
2359
+ static types(): {
2360
+ [key: string]: any;
2361
+ };
2362
+ constructor(map?: {
2363
+ [key: string]: any;
2364
+ });
2365
+ }
2366
+ export declare class PagequeryInnerFundmngbatchloanRequest extends $tea.Model {
2367
+ authToken?: string;
2368
+ productInstanceId?: string;
2369
+ fundTenantId: string;
2370
+ startTime?: string;
2371
+ endTime?: string;
2372
+ pageInfo: PageQuery;
2373
+ traceId: string;
2374
+ static names(): {
2375
+ [key: string]: string;
2376
+ };
2377
+ static types(): {
2378
+ [key: string]: any;
2379
+ };
2380
+ constructor(map?: {
2381
+ [key: string]: any;
2382
+ });
2383
+ }
2384
+ export declare class PagequeryInnerFundmngbatchloanResponse extends $tea.Model {
2385
+ reqMsgId?: string;
2386
+ resultCode?: string;
2387
+ resultMsg?: string;
2388
+ total?: number;
2389
+ data?: BatchLoanResultData[];
2390
+ static names(): {
2391
+ [key: string]: string;
2392
+ };
2393
+ static types(): {
2394
+ [key: string]: any;
2395
+ };
2396
+ constructor(map?: {
2397
+ [key: string]: any;
2398
+ });
2399
+ }
2400
+ export declare class RenderInnerFundmngmerchantpromiseRequest extends $tea.Model {
2401
+ authToken?: string;
2402
+ productInstanceId?: string;
2403
+ fundTenantId: string;
2404
+ fileInfo: FileInfo;
2405
+ traceId: string;
2406
+ fundId: string;
2407
+ tenantId: string;
2408
+ merchantId: string;
2409
+ orderId: string;
2410
+ payStartTermIndex: number;
2411
+ fundMode: string;
2412
+ static names(): {
2413
+ [key: string]: string;
2414
+ };
2415
+ static types(): {
2416
+ [key: string]: any;
2417
+ };
2418
+ constructor(map?: {
2419
+ [key: string]: any;
2420
+ });
2421
+ }
2422
+ export declare class RenderInnerFundmngmerchantpromiseResponse extends $tea.Model {
2423
+ reqMsgId?: string;
2424
+ resultCode?: string;
2425
+ resultMsg?: string;
2426
+ merchantPromiseInfo?: string;
2427
+ static names(): {
2428
+ [key: string]: string;
2429
+ };
2430
+ static types(): {
2431
+ [key: string]: any;
2432
+ };
2433
+ constructor(map?: {
2434
+ [key: string]: any;
2435
+ });
2436
+ }
2437
+ export declare class InitInnerFundmngmerchantpromiseRequest extends $tea.Model {
2438
+ authToken?: string;
2439
+ productInstanceId?: string;
2440
+ fundTenantId: string;
2441
+ fundId: string;
2442
+ tenantId: string;
2443
+ merchantId: string;
2444
+ orderId: string;
2445
+ payStartTermIndex: number;
2446
+ traceId: string;
2447
+ static names(): {
2448
+ [key: string]: string;
2449
+ };
2450
+ static types(): {
2451
+ [key: string]: any;
2452
+ };
2453
+ constructor(map?: {
2454
+ [key: string]: any;
2455
+ });
2456
+ }
2457
+ export declare class InitInnerFundmngmerchantpromiseResponse extends $tea.Model {
2458
+ reqMsgId?: string;
2459
+ resultCode?: string;
2460
+ resultMsg?: string;
2461
+ merchantPromiseInfo?: string;
2462
+ static names(): {
2463
+ [key: string]: string;
2464
+ };
2465
+ static types(): {
2466
+ [key: string]: any;
2467
+ };
2468
+ constructor(map?: {
2469
+ [key: string]: any;
2470
+ });
2471
+ }
2472
+ export declare class SubmitInnerFundmngpendingeventRequest extends $tea.Model {
2473
+ authToken?: string;
2474
+ productInstanceId?: string;
2475
+ fundTenantId: string;
2476
+ eventId: string;
2477
+ action: string;
2478
+ traceId: string;
2479
+ static names(): {
2480
+ [key: string]: string;
2481
+ };
2482
+ static types(): {
2483
+ [key: string]: any;
2484
+ };
2485
+ constructor(map?: {
2486
+ [key: string]: any;
2487
+ });
2488
+ }
2489
+ export declare class SubmitInnerFundmngpendingeventResponse extends $tea.Model {
2490
+ reqMsgId?: string;
2491
+ resultCode?: string;
2492
+ resultMsg?: string;
2493
+ static names(): {
2494
+ [key: string]: string;
2495
+ };
2496
+ static types(): {
2497
+ [key: string]: any;
2498
+ };
2499
+ constructor(map?: {
2500
+ [key: string]: any;
2501
+ });
2502
+ }
2503
+ export declare class PagequeryInnerFundmngpendingeventRequest extends $tea.Model {
2504
+ authToken?: string;
2505
+ productInstanceId?: string;
2506
+ fundTenantId: string;
2507
+ statusList: string[];
2508
+ pendingCode: string;
2509
+ pageInfo: PageQuery;
2510
+ traceId: string;
2511
+ static names(): {
2512
+ [key: string]: string;
2513
+ };
2514
+ static types(): {
2515
+ [key: string]: any;
2516
+ };
2517
+ constructor(map?: {
2518
+ [key: string]: any;
2519
+ });
2520
+ }
2521
+ export declare class PagequeryInnerFundmngpendingeventResponse extends $tea.Model {
2522
+ reqMsgId?: string;
2523
+ resultCode?: string;
2524
+ resultMsg?: string;
2525
+ total?: number;
2526
+ pendingEventInfo?: string;
2527
+ static names(): {
2528
+ [key: string]: string;
2529
+ };
2530
+ static types(): {
2531
+ [key: string]: any;
2532
+ };
2533
+ constructor(map?: {
2534
+ [key: string]: any;
2535
+ });
2536
+ }
1963
2537
  export declare class SyncFundSplittingRequest extends $tea.Model {
1964
2538
  authToken?: string;
1965
2539
  productInstanceId?: string;
@@ -2497,6 +3071,7 @@ export declare class GetFundOrderfullinfoRequest extends $tea.Model {
2497
3071
  orderId: string;
2498
3072
  merchantId: string;
2499
3073
  fundId: string;
3074
+ bizType?: string;
2500
3075
  static names(): {
2501
3076
  [key: string]: string;
2502
3077
  };
@@ -3203,9 +3778,77 @@ export declare class ConfirmFundCompensateRequest extends $tea.Model {
3203
3778
  authToken?: string;
3204
3779
  productInstanceId?: string;
3205
3780
  fundId: string;
3206
- merchantTenantId: string;
3207
- merchantId: string;
3208
- type?: string;
3781
+ merchantTenantId: string;
3782
+ merchantId: string;
3783
+ type?: string;
3784
+ static names(): {
3785
+ [key: string]: string;
3786
+ };
3787
+ static types(): {
3788
+ [key: string]: any;
3789
+ };
3790
+ constructor(map?: {
3791
+ [key: string]: any;
3792
+ });
3793
+ }
3794
+ export declare class ConfirmFundCompensateResponse extends $tea.Model {
3795
+ reqMsgId?: string;
3796
+ resultCode?: string;
3797
+ resultMsg?: string;
3798
+ static names(): {
3799
+ [key: string]: string;
3800
+ };
3801
+ static types(): {
3802
+ [key: string]: any;
3803
+ };
3804
+ constructor(map?: {
3805
+ [key: string]: any;
3806
+ });
3807
+ }
3808
+ export declare class SubmitFundFlowRequest extends $tea.Model {
3809
+ authToken?: string;
3810
+ productInstanceId?: string;
3811
+ tenantId: string;
3812
+ orderId: string;
3813
+ merchantId: string;
3814
+ merchantSignTag: string;
3815
+ fundId: string;
3816
+ fundSignTag: string;
3817
+ fundAutoSign?: boolean;
3818
+ templateList: TemplateArgs[];
3819
+ businessScene: string;
3820
+ static names(): {
3821
+ [key: string]: string;
3822
+ };
3823
+ static types(): {
3824
+ [key: string]: any;
3825
+ };
3826
+ constructor(map?: {
3827
+ [key: string]: any;
3828
+ });
3829
+ }
3830
+ export declare class SubmitFundFlowResponse extends $tea.Model {
3831
+ reqMsgId?: string;
3832
+ resultCode?: string;
3833
+ resultMsg?: string;
3834
+ signNo?: string;
3835
+ signInfo?: string;
3836
+ static names(): {
3837
+ [key: string]: string;
3838
+ };
3839
+ static types(): {
3840
+ [key: string]: any;
3841
+ };
3842
+ constructor(map?: {
3843
+ [key: string]: any;
3844
+ });
3845
+ }
3846
+ export declare class CancelFundFlowRequest extends $tea.Model {
3847
+ authToken?: string;
3848
+ productInstanceId?: string;
3849
+ signNo: string;
3850
+ fundId: string;
3851
+ revokeReason?: string;
3209
3852
  static names(): {
3210
3853
  [key: string]: string;
3211
3854
  };
@@ -3216,7 +3859,7 @@ export declare class ConfirmFundCompensateRequest extends $tea.Model {
3216
3859
  [key: string]: any;
3217
3860
  });
3218
3861
  }
3219
- export declare class ConfirmFundCompensateResponse extends $tea.Model {
3862
+ export declare class CancelFundFlowResponse extends $tea.Model {
3220
3863
  reqMsgId?: string;
3221
3864
  resultCode?: string;
3222
3865
  resultMsg?: string;
@@ -4688,6 +5331,7 @@ export declare class CreateInnerWithholdsignRequest extends $tea.Model {
4688
5331
  merchantTenantId: string;
4689
5332
  orderId: string;
4690
5333
  alipayUserId?: string;
5334
+ flowId?: string;
4691
5335
  static names(): {
4692
5336
  [key: string]: string;
4693
5337
  };
@@ -6823,6 +7467,8 @@ export declare class DetailInnerAgreementterminateResponse extends $tea.Model {
6823
7467
  externalAgreementNo?: string;
6824
7468
  agreementNo?: string;
6825
7469
  handleStatus?: string;
7470
+ merchantHandleDurationType?: string;
7471
+ merchantHandleDuration?: string;
6826
7472
  static names(): {
6827
7473
  [key: string]: string;
6828
7474
  };
@@ -6922,11 +7568,326 @@ export declare class OperateInnerAgreementterminatezfbdirectResponse extends $te
6922
7568
  reqMsgId?: string;
6923
7569
  resultCode?: string;
6924
7570
  resultMsg?: string;
6925
- zfbDirectTerminate?: boolean;
6926
- atoHandle?: boolean;
6927
- toastText?: string;
6928
- jumpUrl?: string;
6929
- jumpUrlText?: string;
7571
+ zfbDirectTerminate?: boolean;
7572
+ atoHandle?: boolean;
7573
+ toastText?: string;
7574
+ jumpUrl?: string;
7575
+ jumpUrlText?: string;
7576
+ static names(): {
7577
+ [key: string]: string;
7578
+ };
7579
+ static types(): {
7580
+ [key: string]: any;
7581
+ };
7582
+ constructor(map?: {
7583
+ [key: string]: any;
7584
+ });
7585
+ }
7586
+ export declare class QueryInnerAgreementterminateconfigRequest extends $tea.Model {
7587
+ authToken?: string;
7588
+ productInstanceId?: string;
7589
+ tenantId: string;
7590
+ static names(): {
7591
+ [key: string]: string;
7592
+ };
7593
+ static types(): {
7594
+ [key: string]: any;
7595
+ };
7596
+ constructor(map?: {
7597
+ [key: string]: any;
7598
+ });
7599
+ }
7600
+ export declare class QueryInnerAgreementterminateconfigResponse extends $tea.Model {
7601
+ reqMsgId?: string;
7602
+ resultCode?: string;
7603
+ resultMsg?: string;
7604
+ timeoutHour?: string;
7605
+ timeoutDay?: string;
7606
+ hideTerminateOrder?: boolean;
7607
+ static names(): {
7608
+ [key: string]: string;
7609
+ };
7610
+ static types(): {
7611
+ [key: string]: any;
7612
+ };
7613
+ constructor(map?: {
7614
+ [key: string]: any;
7615
+ });
7616
+ }
7617
+ export declare class CountInnerAgreementterminateRequest extends $tea.Model {
7618
+ authToken?: string;
7619
+ productInstanceId?: string;
7620
+ tenantId: string;
7621
+ merchantHandleDurationType?: string;
7622
+ orderId?: string;
7623
+ terminateApplyId?: string;
7624
+ gmtTerminateApplyStartTime?: string;
7625
+ gmtTerminateApplyEndTime?: string;
7626
+ static names(): {
7627
+ [key: string]: string;
7628
+ };
7629
+ static types(): {
7630
+ [key: string]: any;
7631
+ };
7632
+ constructor(map?: {
7633
+ [key: string]: any;
7634
+ });
7635
+ }
7636
+ export declare class CountInnerAgreementterminateResponse extends $tea.Model {
7637
+ reqMsgId?: string;
7638
+ resultCode?: string;
7639
+ resultMsg?: string;
7640
+ unHandleStatusNum?: number;
7641
+ handingStatusNum?: number;
7642
+ finishedStatusNum?: number;
7643
+ timeoutStatusNum?: number;
7644
+ static names(): {
7645
+ [key: string]: string;
7646
+ };
7647
+ static types(): {
7648
+ [key: string]: any;
7649
+ };
7650
+ constructor(map?: {
7651
+ [key: string]: any;
7652
+ });
7653
+ }
7654
+ export declare class QueryInnerAgreementterminateorderRequest extends $tea.Model {
7655
+ authToken?: string;
7656
+ productInstanceId?: string;
7657
+ tenantId: string;
7658
+ orderId: string;
7659
+ terminateApplyId: string;
7660
+ static names(): {
7661
+ [key: string]: string;
7662
+ };
7663
+ static types(): {
7664
+ [key: string]: any;
7665
+ };
7666
+ constructor(map?: {
7667
+ [key: string]: any;
7668
+ });
7669
+ }
7670
+ export declare class QueryInnerAgreementterminateorderResponse extends $tea.Model {
7671
+ reqMsgId?: string;
7672
+ resultCode?: string;
7673
+ resultMsg?: string;
7674
+ orderId?: string;
7675
+ agreementNo?: string;
7676
+ productTotalCount?: number;
7677
+ orderInfo?: OrderInfo;
7678
+ orderUserInfo?: OrderUserInfo;
7679
+ orderFulfillmentInfoList?: OrderFulfillmentInfo[];
7680
+ orderPromiseInfo?: OrderPromiseInfo;
7681
+ orderProductInfoList?: OrderProductInfo[];
7682
+ operateDivideInfoList?: OperateDivideInfo[];
7683
+ orderContractInfoList?: OrderContractInfo[];
7684
+ static names(): {
7685
+ [key: string]: string;
7686
+ };
7687
+ static types(): {
7688
+ [key: string]: any;
7689
+ };
7690
+ constructor(map?: {
7691
+ [key: string]: any;
7692
+ });
7693
+ }
7694
+ export declare class PagequeryInnerPlatformproductRequest extends $tea.Model {
7695
+ authToken?: string;
7696
+ productInstanceId?: string;
7697
+ pageInfo?: PageQuery;
7698
+ tenantId?: string;
7699
+ productName?: string;
7700
+ primaryCategory?: string;
7701
+ secondaryCategory?: string;
7702
+ onlyShowApplied?: boolean;
7703
+ static names(): {
7704
+ [key: string]: string;
7705
+ };
7706
+ static types(): {
7707
+ [key: string]: any;
7708
+ };
7709
+ constructor(map?: {
7710
+ [key: string]: any;
7711
+ });
7712
+ }
7713
+ export declare class PagequeryInnerPlatformproductResponse extends $tea.Model {
7714
+ reqMsgId?: string;
7715
+ resultCode?: string;
7716
+ resultMsg?: string;
7717
+ totalCount?: number;
7718
+ platformProductInfoList?: PlatformProductInfoResp[];
7719
+ static names(): {
7720
+ [key: string]: string;
7721
+ };
7722
+ static types(): {
7723
+ [key: string]: any;
7724
+ };
7725
+ constructor(map?: {
7726
+ [key: string]: any;
7727
+ });
7728
+ }
7729
+ export declare class DetailInnerPlatformproductRequest extends $tea.Model {
7730
+ authToken?: string;
7731
+ productInstanceId?: string;
7732
+ tenantId?: string;
7733
+ platformProductId?: string;
7734
+ merchantProductId?: string;
7735
+ static names(): {
7736
+ [key: string]: string;
7737
+ };
7738
+ static types(): {
7739
+ [key: string]: any;
7740
+ };
7741
+ constructor(map?: {
7742
+ [key: string]: any;
7743
+ });
7744
+ }
7745
+ export declare class DetailInnerPlatformproductResponse extends $tea.Model {
7746
+ reqMsgId?: string;
7747
+ resultCode?: string;
7748
+ resultMsg?: string;
7749
+ platformProductId?: string;
7750
+ merchantProductId?: string;
7751
+ primaryCategory?: string;
7752
+ secondaryCategory?: string;
7753
+ productName?: string;
7754
+ productCondition?: string;
7755
+ productDescription?: string;
7756
+ coverImageUrlList?: string[];
7757
+ largeCoverImageUrlList?: string[];
7758
+ detailImageUrlList?: string[];
7759
+ largeDetailImageUrlList?: string[];
7760
+ specConfigList?: ProductSpecConfig[];
7761
+ rentalPlan?: string[];
7762
+ rentalPeriod?: number[];
7763
+ supportRenew?: boolean;
7764
+ supportBuyout?: boolean;
7765
+ leasePricePlanList?: LeasePricePlan[];
7766
+ freeShippingOut?: boolean;
7767
+ freeShippingBack?: boolean;
7768
+ shippingDurationType?: string;
7769
+ valueAddedServiceIntro?: string;
7770
+ detailPageIntro?: string;
7771
+ servicePromiseIntro?: string[];
7772
+ platformConfigParamList?: string[];
7773
+ allowApplyTenantIdList?: string[];
7774
+ applyStatus?: string;
7775
+ refuseReason?: string;
7776
+ rentalPlanIntro?: string;
7777
+ static names(): {
7778
+ [key: string]: string;
7779
+ };
7780
+ static types(): {
7781
+ [key: string]: any;
7782
+ };
7783
+ constructor(map?: {
7784
+ [key: string]: any;
7785
+ });
7786
+ }
7787
+ export declare class SubmitInnerPlatformproductRequest extends $tea.Model {
7788
+ authToken?: string;
7789
+ productInstanceId?: string;
7790
+ tenantId?: string;
7791
+ operateType?: string;
7792
+ platformProductId?: string;
7793
+ merchantProductId?: string;
7794
+ rentalPlan?: string[];
7795
+ rentalPeriod?: number[];
7796
+ supportRenew?: boolean;
7797
+ supportBuyout?: boolean;
7798
+ leasePricePlanList?: LeasePricePlan[];
7799
+ freeShippingOut?: boolean;
7800
+ freeShippingBack?: boolean;
7801
+ shippingDurationType?: string;
7802
+ valueAddedServiceIntro?: string;
7803
+ detailPageIntro?: string;
7804
+ servicePromiseIntro?: string[];
7805
+ rentalPlanIntro?: string;
7806
+ static names(): {
7807
+ [key: string]: string;
7808
+ };
7809
+ static types(): {
7810
+ [key: string]: any;
7811
+ };
7812
+ constructor(map?: {
7813
+ [key: string]: any;
7814
+ });
7815
+ }
7816
+ export declare class SubmitInnerPlatformproductResponse extends $tea.Model {
7817
+ reqMsgId?: string;
7818
+ resultCode?: string;
7819
+ resultMsg?: string;
7820
+ platformProductId?: string;
7821
+ merchantProductId?: string;
7822
+ static names(): {
7823
+ [key: string]: string;
7824
+ };
7825
+ static types(): {
7826
+ [key: string]: any;
7827
+ };
7828
+ constructor(map?: {
7829
+ [key: string]: any;
7830
+ });
7831
+ }
7832
+ export declare class ReclaimInnerPlatformproductRequest extends $tea.Model {
7833
+ authToken?: string;
7834
+ productInstanceId?: string;
7835
+ tenantId?: string;
7836
+ platformProductId?: string;
7837
+ merchantProductId?: string;
7838
+ static names(): {
7839
+ [key: string]: string;
7840
+ };
7841
+ static types(): {
7842
+ [key: string]: any;
7843
+ };
7844
+ constructor(map?: {
7845
+ [key: string]: any;
7846
+ });
7847
+ }
7848
+ export declare class ReclaimInnerPlatformproductResponse extends $tea.Model {
7849
+ reqMsgId?: string;
7850
+ resultCode?: string;
7851
+ resultMsg?: string;
7852
+ static names(): {
7853
+ [key: string]: string;
7854
+ };
7855
+ static types(): {
7856
+ [key: string]: any;
7857
+ };
7858
+ constructor(map?: {
7859
+ [key: string]: any;
7860
+ });
7861
+ }
7862
+ export declare class SetInnerPlatformproductRequest extends $tea.Model {
7863
+ authToken?: string;
7864
+ productInstanceId?: string;
7865
+ tenantId?: string;
7866
+ merchantSkuId?: string;
7867
+ productSpecOptionList?: ProductSpecOption[];
7868
+ specImageFileKey?: string;
7869
+ originTotalRentMoney?: number;
7870
+ totalRentMoney?: number;
7871
+ originDailyRentMoney?: number;
7872
+ dailyRentMoney?: number;
7873
+ stockQuantity?: number;
7874
+ renewPrice?: number;
7875
+ buyoutPrice?: number;
7876
+ forSale?: boolean;
7877
+ static names(): {
7878
+ [key: string]: string;
7879
+ };
7880
+ static types(): {
7881
+ [key: string]: any;
7882
+ };
7883
+ constructor(map?: {
7884
+ [key: string]: any;
7885
+ });
7886
+ }
7887
+ export declare class SetInnerPlatformproductResponse extends $tea.Model {
7888
+ reqMsgId?: string;
7889
+ resultCode?: string;
7890
+ resultMsg?: string;
6930
7891
  static names(): {
6931
7892
  [key: string]: string;
6932
7893
  };
@@ -6937,10 +7898,12 @@ export declare class OperateInnerAgreementterminatezfbdirectResponse extends $te
6937
7898
  [key: string]: any;
6938
7899
  });
6939
7900
  }
6940
- export declare class QueryInnerAgreementterminateconfigRequest extends $tea.Model {
7901
+ export declare class QueryInnerAuthagreementRequest extends $tea.Model {
6941
7902
  authToken?: string;
6942
7903
  productInstanceId?: string;
6943
7904
  tenantId: string;
7905
+ subjectType: string;
7906
+ agreementCode: string;
6944
7907
  static names(): {
6945
7908
  [key: string]: string;
6946
7909
  };
@@ -6951,12 +7914,11 @@ export declare class QueryInnerAgreementterminateconfigRequest extends $tea.Mode
6951
7914
  [key: string]: any;
6952
7915
  });
6953
7916
  }
6954
- export declare class QueryInnerAgreementterminateconfigResponse extends $tea.Model {
7917
+ export declare class QueryInnerAuthagreementResponse extends $tea.Model {
6955
7918
  reqMsgId?: string;
6956
7919
  resultCode?: string;
6957
7920
  resultMsg?: string;
6958
- timeoutHour?: string;
6959
- timeoutDay?: string;
7921
+ agreed?: boolean;
6960
7922
  static names(): {
6961
7923
  [key: string]: string;
6962
7924
  };
@@ -6967,15 +7929,13 @@ export declare class QueryInnerAgreementterminateconfigResponse extends $tea.Mod
6967
7929
  [key: string]: any;
6968
7930
  });
6969
7931
  }
6970
- export declare class CountInnerAgreementterminateRequest extends $tea.Model {
7932
+ export declare class ConfirmInnerAuthagreementRequest extends $tea.Model {
6971
7933
  authToken?: string;
6972
7934
  productInstanceId?: string;
6973
7935
  tenantId: string;
6974
- merchantHandleDurationType?: string;
6975
- orderId?: string;
6976
- terminateApplyId?: string;
6977
- gmtTerminateApplyStartTime?: string;
6978
- gmtTerminateApplyEndTime?: string;
7936
+ subjectType: string;
7937
+ agreementCode: string;
7938
+ agreementVersion?: number;
6979
7939
  static names(): {
6980
7940
  [key: string]: string;
6981
7941
  };
@@ -6986,14 +7946,10 @@ export declare class CountInnerAgreementterminateRequest extends $tea.Model {
6986
7946
  [key: string]: any;
6987
7947
  });
6988
7948
  }
6989
- export declare class CountInnerAgreementterminateResponse extends $tea.Model {
7949
+ export declare class ConfirmInnerAuthagreementResponse extends $tea.Model {
6990
7950
  reqMsgId?: string;
6991
7951
  resultCode?: string;
6992
7952
  resultMsg?: string;
6993
- unHandleStatusNum?: number;
6994
- handingStatusNum?: number;
6995
- finishedStatusNum?: number;
6996
- timeoutStatusNum?: number;
6997
7953
  static names(): {
6998
7954
  [key: string]: string;
6999
7955
  };
@@ -7301,6 +8257,45 @@ export declare class QueryMerchantexpandDividerelationResponse extends $tea.Mode
7301
8257
  [key: string]: any;
7302
8258
  });
7303
8259
  }
8260
+ export declare class BindMerchantexpandSettlecardRequest extends $tea.Model {
8261
+ authToken?: string;
8262
+ productInstanceId?: string;
8263
+ merchantId: string;
8264
+ accountNo: string;
8265
+ accountName: string;
8266
+ bankProvince: string;
8267
+ bankCity: string;
8268
+ usageType: string;
8269
+ accountType: string;
8270
+ bankBranchName: string;
8271
+ bankName: string;
8272
+ bankInstId: string;
8273
+ bankCode?: string;
8274
+ static names(): {
8275
+ [key: string]: string;
8276
+ };
8277
+ static types(): {
8278
+ [key: string]: any;
8279
+ };
8280
+ constructor(map?: {
8281
+ [key: string]: any;
8282
+ });
8283
+ }
8284
+ export declare class BindMerchantexpandSettlecardResponse extends $tea.Model {
8285
+ reqMsgId?: string;
8286
+ resultCode?: string;
8287
+ resultMsg?: string;
8288
+ payExpandId?: string;
8289
+ static names(): {
8290
+ [key: string]: string;
8291
+ };
8292
+ static types(): {
8293
+ [key: string]: any;
8294
+ };
8295
+ constructor(map?: {
8296
+ [key: string]: any;
8297
+ });
8298
+ }
7304
8299
  export declare class CreateRealpersonFacevrfRequest extends $tea.Model {
7305
8300
  authToken?: string;
7306
8301
  productInstanceId?: string;
@@ -8296,6 +9291,7 @@ export declare class TransferTradeFinanceRequest extends $tea.Model {
8296
9291
  fundIdList: string[];
8297
9292
  fundSignMode: string;
8298
9293
  divideStartTermIndex: number;
9294
+ fundMode?: string;
8299
9295
  static names(): {
8300
9296
  [key: string]: string;
8301
9297
  };
@@ -8549,6 +9545,102 @@ export declare class SyncTradePromoorderinfoResponse extends $tea.Model {
8549
9545
  [key: string]: any;
8550
9546
  });
8551
9547
  }
9548
+ export declare class SyncTradePlatformorderauditRequest extends $tea.Model {
9549
+ authToken?: string;
9550
+ productInstanceId?: string;
9551
+ merchantId: string;
9552
+ platformOrderId: string;
9553
+ operation: string;
9554
+ static names(): {
9555
+ [key: string]: string;
9556
+ };
9557
+ static types(): {
9558
+ [key: string]: any;
9559
+ };
9560
+ constructor(map?: {
9561
+ [key: string]: any;
9562
+ });
9563
+ }
9564
+ export declare class SyncTradePlatformorderauditResponse extends $tea.Model {
9565
+ reqMsgId?: string;
9566
+ resultCode?: string;
9567
+ resultMsg?: string;
9568
+ static names(): {
9569
+ [key: string]: string;
9570
+ };
9571
+ static types(): {
9572
+ [key: string]: any;
9573
+ };
9574
+ constructor(map?: {
9575
+ [key: string]: any;
9576
+ });
9577
+ }
9578
+ export declare class SyncTradeReceiptorderfullinfoRequest extends $tea.Model {
9579
+ authToken?: string;
9580
+ productInstanceId?: string;
9581
+ orderId: string;
9582
+ merchantId: string;
9583
+ merchantName: string;
9584
+ bizScene: string;
9585
+ bizType: string;
9586
+ receiptOrderInfo: string;
9587
+ productInfo: string;
9588
+ static names(): {
9589
+ [key: string]: string;
9590
+ };
9591
+ static types(): {
9592
+ [key: string]: any;
9593
+ };
9594
+ constructor(map?: {
9595
+ [key: string]: any;
9596
+ });
9597
+ }
9598
+ export declare class SyncTradeReceiptorderfullinfoResponse extends $tea.Model {
9599
+ reqMsgId?: string;
9600
+ resultCode?: string;
9601
+ resultMsg?: string;
9602
+ responseData?: string;
9603
+ static names(): {
9604
+ [key: string]: string;
9605
+ };
9606
+ static types(): {
9607
+ [key: string]: any;
9608
+ };
9609
+ constructor(map?: {
9610
+ [key: string]: any;
9611
+ });
9612
+ }
9613
+ export declare class GetTradeOrderfullinfoRequest extends $tea.Model {
9614
+ authToken?: string;
9615
+ productInstanceId?: string;
9616
+ orderId: string;
9617
+ merchantId: string;
9618
+ bizType: string;
9619
+ static names(): {
9620
+ [key: string]: string;
9621
+ };
9622
+ static types(): {
9623
+ [key: string]: any;
9624
+ };
9625
+ constructor(map?: {
9626
+ [key: string]: any;
9627
+ });
9628
+ }
9629
+ export declare class GetTradeOrderfullinfoResponse extends $tea.Model {
9630
+ reqMsgId?: string;
9631
+ resultCode?: string;
9632
+ resultMsg?: string;
9633
+ responseData?: string;
9634
+ static names(): {
9635
+ [key: string]: string;
9636
+ };
9637
+ static types(): {
9638
+ [key: string]: any;
9639
+ };
9640
+ constructor(map?: {
9641
+ [key: string]: any;
9642
+ });
9643
+ }
8552
9644
  export declare class CreateWithholdSignRequest extends $tea.Model {
8553
9645
  authToken?: string;
8554
9646
  productInstanceId?: string;
@@ -9134,6 +10226,18 @@ export default class Client {
9134
10226
  transferBrokerUserdataEx(request: TransferBrokerUserdataRequest, headers: {
9135
10227
  [key: string]: string;
9136
10228
  }, runtime: $Util.RuntimeOptions): Promise<TransferBrokerUserdataResponse>;
10229
+ /**
10230
+ * Description: 京东分账关系绑定
10231
+ * Summary: 京东分账关系绑定
10232
+ */
10233
+ createJdFunddividerelation(request: CreateJdFunddividerelationRequest): Promise<CreateJdFunddividerelationResponse>;
10234
+ /**
10235
+ * Description: 京东分账关系绑定
10236
+ * Summary: 京东分账关系绑定
10237
+ */
10238
+ createJdFunddividerelationEx(request: CreateJdFunddividerelationRequest, headers: {
10239
+ [key: string]: string;
10240
+ }, runtime: $Util.RuntimeOptions): Promise<CreateJdFunddividerelationResponse>;
9137
10241
  /**
9138
10242
  * Description: 资方管理系统demo
9139
10243
  * Summary: 资方管理系统demo
@@ -9302,6 +10406,116 @@ export default class Client {
9302
10406
  queryInnerFundmngmerchantperformanceEx(request: QueryInnerFundmngmerchantperformanceRequest, headers: {
9303
10407
  [key: string]: string;
9304
10408
  }, runtime: $Util.RuntimeOptions): Promise<QueryInnerFundmngmerchantperformanceResponse>;
10409
+ /**
10410
+ * Description: 调用说明:
10411
+ 1. 当商户通过其他方式还款后,通过此接口同步信息,同步完成后会将扣款进行取消
10412
+ * Summary: 资方控制台商户履约其他方式还款
10413
+ */
10414
+ repayInnerFundmngmerchantperformance(request: RepayInnerFundmngmerchantperformanceRequest): Promise<RepayInnerFundmngmerchantperformanceResponse>;
10415
+ /**
10416
+ * Description: 调用说明:
10417
+ 1. 当商户通过其他方式还款后,通过此接口同步信息,同步完成后会将扣款进行取消
10418
+ * Summary: 资方控制台商户履约其他方式还款
10419
+ */
10420
+ repayInnerFundmngmerchantperformanceEx(request: RepayInnerFundmngmerchantperformanceRequest, headers: {
10421
+ [key: string]: string;
10422
+ }, runtime: $Util.RuntimeOptions): Promise<RepayInnerFundmngmerchantperformanceResponse>;
10423
+ /**
10424
+ * Description: 资方调用,赎回商户履约
10425
+ * Summary: 资方控制台商户履约赎回
10426
+ */
10427
+ redeemInnerFundmngmerchantperformance(request: RedeemInnerFundmngmerchantperformanceRequest): Promise<RedeemInnerFundmngmerchantperformanceResponse>;
10428
+ /**
10429
+ * Description: 资方调用,赎回商户履约
10430
+ * Summary: 资方控制台商户履约赎回
10431
+ */
10432
+ redeemInnerFundmngmerchantperformanceEx(request: RedeemInnerFundmngmerchantperformanceRequest, headers: {
10433
+ [key: string]: string;
10434
+ }, runtime: $Util.RuntimeOptions): Promise<RedeemInnerFundmngmerchantperformanceResponse>;
10435
+ /**
10436
+ * Description: 资方控制台提交批量放款
10437
+ * Summary: 资方控制台提交批量放款
10438
+ */
10439
+ submitInnerFundmngbatchloan(request: SubmitInnerFundmngbatchloanRequest): Promise<SubmitInnerFundmngbatchloanResponse>;
10440
+ /**
10441
+ * Description: 资方控制台提交批量放款
10442
+ * Summary: 资方控制台提交批量放款
10443
+ */
10444
+ submitInnerFundmngbatchloanEx(request: SubmitInnerFundmngbatchloanRequest, headers: {
10445
+ [key: string]: string;
10446
+ }, runtime: $Util.RuntimeOptions): Promise<SubmitInnerFundmngbatchloanResponse>;
10447
+ /**
10448
+ * Description: 资方控制台批量放款提交前预览
10449
+ * Summary: 资方控制台批量放款提交前预览
10450
+ */
10451
+ previewInnerFundmngbatchloan(request: PreviewInnerFundmngbatchloanRequest): Promise<PreviewInnerFundmngbatchloanResponse>;
10452
+ /**
10453
+ * Description: 资方控制台批量放款提交前预览
10454
+ * Summary: 资方控制台批量放款提交前预览
10455
+ */
10456
+ previewInnerFundmngbatchloanEx(request: PreviewInnerFundmngbatchloanRequest, headers: {
10457
+ [key: string]: string;
10458
+ }, runtime: $Util.RuntimeOptions): Promise<PreviewInnerFundmngbatchloanResponse>;
10459
+ /**
10460
+ * Description: 资方控制台批量放款记录分页查询
10461
+ * Summary: 资方控制台批量放款记录分页查询
10462
+ */
10463
+ pagequeryInnerFundmngbatchloan(request: PagequeryInnerFundmngbatchloanRequest): Promise<PagequeryInnerFundmngbatchloanResponse>;
10464
+ /**
10465
+ * Description: 资方控制台批量放款记录分页查询
10466
+ * Summary: 资方控制台批量放款记录分页查询
10467
+ */
10468
+ pagequeryInnerFundmngbatchloanEx(request: PagequeryInnerFundmngbatchloanRequest, headers: {
10469
+ [key: string]: string;
10470
+ }, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerFundmngbatchloanResponse>;
10471
+ /**
10472
+ * Description: 解析资方上传的商户履约计划文件,渲染在免研控制台页面
10473
+ * Summary: 商户履约计划渲染
10474
+ */
10475
+ renderInnerFundmngmerchantpromise(request: RenderInnerFundmngmerchantpromiseRequest): Promise<RenderInnerFundmngmerchantpromiseResponse>;
10476
+ /**
10477
+ * Description: 解析资方上传的商户履约计划文件,渲染在免研控制台页面
10478
+ * Summary: 商户履约计划渲染
10479
+ */
10480
+ renderInnerFundmngmerchantpromiseEx(request: RenderInnerFundmngmerchantpromiseRequest, headers: {
10481
+ [key: string]: string;
10482
+ }, runtime: $Util.RuntimeOptions): Promise<RenderInnerFundmngmerchantpromiseResponse>;
10483
+ /**
10484
+ * Description: 商户履约计划初始化
10485
+ * Summary: 商户履约计划初始化
10486
+ */
10487
+ initInnerFundmngmerchantpromise(request: InitInnerFundmngmerchantpromiseRequest): Promise<InitInnerFundmngmerchantpromiseResponse>;
10488
+ /**
10489
+ * Description: 商户履约计划初始化
10490
+ * Summary: 商户履约计划初始化
10491
+ */
10492
+ initInnerFundmngmerchantpromiseEx(request: InitInnerFundmngmerchantpromiseRequest, headers: {
10493
+ [key: string]: string;
10494
+ }, runtime: $Util.RuntimeOptions): Promise<InitInnerFundmngmerchantpromiseResponse>;
10495
+ /**
10496
+ * Description: 资方待办事件处理
10497
+ * Summary: 资方待办事件处理
10498
+ */
10499
+ submitInnerFundmngpendingevent(request: SubmitInnerFundmngpendingeventRequest): Promise<SubmitInnerFundmngpendingeventResponse>;
10500
+ /**
10501
+ * Description: 资方待办事件处理
10502
+ * Summary: 资方待办事件处理
10503
+ */
10504
+ submitInnerFundmngpendingeventEx(request: SubmitInnerFundmngpendingeventRequest, headers: {
10505
+ [key: string]: string;
10506
+ }, runtime: $Util.RuntimeOptions): Promise<SubmitInnerFundmngpendingeventResponse>;
10507
+ /**
10508
+ * Description: 资方待办事件查询
10509
+ * Summary: 资方待办事件查询
10510
+ */
10511
+ pagequeryInnerFundmngpendingevent(request: PagequeryInnerFundmngpendingeventRequest): Promise<PagequeryInnerFundmngpendingeventResponse>;
10512
+ /**
10513
+ * Description: 资方待办事件查询
10514
+ * Summary: 资方待办事件查询
10515
+ */
10516
+ pagequeryInnerFundmngpendingeventEx(request: PagequeryInnerFundmngpendingeventRequest, headers: {
10517
+ [key: string]: string;
10518
+ }, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerFundmngpendingeventResponse>;
9305
10519
  /**
9306
10520
  * Description: 分账流水同步
9307
10521
  * Summary: 【仅测试环境生效】分账流水同步
@@ -9399,13 +10613,13 @@ export default class Client {
9399
10613
  [key: string]: string;
9400
10614
  }, runtime: $Util.RuntimeOptions): Promise<RefuseFundFlowResponse>;
9401
10615
  /**
9402
- * Description: 资方调用,授权通过e签宝进行落签
9403
- * Summary: 资方e签宝落签接口
10616
+ * Description: 资方合同落签
10617
+ * Summary: 资方合同落签
9404
10618
  */
9405
10619
  authFundFlow(request: AuthFundFlowRequest): Promise<AuthFundFlowResponse>;
9406
10620
  /**
9407
- * Description: 资方调用,授权通过e签宝进行落签
9408
- * Summary: 资方e签宝落签接口
10621
+ * Description: 资方合同落签
10622
+ * Summary: 资方合同落签
9409
10623
  */
9410
10624
  authFundFlowEx(request: AuthFundFlowRequest, headers: {
9411
10625
  [key: string]: string;
@@ -9495,13 +10709,13 @@ export default class Client {
9495
10709
  [key: string]: string;
9496
10710
  }, runtime: $Util.RuntimeOptions): Promise<GetFundMerchantperformanceResponse>;
9497
10711
  /**
9498
- * Description: 资方查询订单详情
9499
- * Summary: 资方查询订单详情
10712
+ * Description: 资方调用、订单详情获取
10713
+ * Summary: 资方调用、订单详情获取
9500
10714
  */
9501
10715
  getFundOrderfullinfo(request: GetFundOrderfullinfoRequest): Promise<GetFundOrderfullinfoResponse>;
9502
10716
  /**
9503
- * Description: 资方查询订单详情
9504
- * Summary: 资方查询订单详情
10717
+ * Description: 资方调用、订单详情获取
10718
+ * Summary: 资方调用、订单详情获取
9505
10719
  */
9506
10720
  getFundOrderfullinfoEx(request: GetFundOrderfullinfoRequest, headers: {
9507
10721
  [key: string]: string;
@@ -9766,6 +10980,30 @@ export default class Client {
9766
10980
  confirmFundCompensateEx(request: ConfirmFundCompensateRequest, headers: {
9767
10981
  [key: string]: string;
9768
10982
  }, runtime: $Util.RuntimeOptions): Promise<ConfirmFundCompensateResponse>;
10983
+ /**
10984
+ * Description: 资方提交合同签署
10985
+ * Summary: 资方提交合同签署
10986
+ */
10987
+ submitFundFlow(request: SubmitFundFlowRequest): Promise<SubmitFundFlowResponse>;
10988
+ /**
10989
+ * Description: 资方提交合同签署
10990
+ * Summary: 资方提交合同签署
10991
+ */
10992
+ submitFundFlowEx(request: SubmitFundFlowRequest, headers: {
10993
+ [key: string]: string;
10994
+ }, runtime: $Util.RuntimeOptions): Promise<SubmitFundFlowResponse>;
10995
+ /**
10996
+ * Description: 资方合同流程撤销
10997
+ * Summary: 资方合同流程撤销
10998
+ */
10999
+ cancelFundFlow(request: CancelFundFlowRequest): Promise<CancelFundFlowResponse>;
11000
+ /**
11001
+ * Description: 资方合同流程撤销
11002
+ * Summary: 资方合同流程撤销
11003
+ */
11004
+ cancelFundFlowEx(request: CancelFundFlowRequest, headers: {
11005
+ [key: string]: string;
11006
+ }, runtime: $Util.RuntimeOptions): Promise<CancelFundFlowResponse>;
9769
11007
  /**
9770
11008
  * Description: 内部调用,商品信息获取
9771
11009
  * Summary: 商品信息获取
@@ -11162,6 +12400,102 @@ export default class Client {
11162
12400
  countInnerAgreementterminateEx(request: CountInnerAgreementterminateRequest, headers: {
11163
12401
  [key: string]: string;
11164
12402
  }, runtime: $Util.RuntimeOptions): Promise<CountInnerAgreementterminateResponse>;
12403
+ /**
12404
+ * Description: 代扣异步解约-商户侧间连二级户或者为特殊直连下级商户需要查询订单详情
12405
+ * Summary: 代扣异步解约商户侧二级户查询订单
12406
+ */
12407
+ queryInnerAgreementterminateorder(request: QueryInnerAgreementterminateorderRequest): Promise<QueryInnerAgreementterminateorderResponse>;
12408
+ /**
12409
+ * Description: 代扣异步解约-商户侧间连二级户或者为特殊直连下级商户需要查询订单详情
12410
+ * Summary: 代扣异步解约商户侧二级户查询订单
12411
+ */
12412
+ queryInnerAgreementterminateorderEx(request: QueryInnerAgreementterminateorderRequest, headers: {
12413
+ [key: string]: string;
12414
+ }, runtime: $Util.RuntimeOptions): Promise<QueryInnerAgreementterminateorderResponse>;
12415
+ /**
12416
+ * Description: 随时享商户侧商品列表查询
12417
+ * Summary: 随时享商户侧商品列表查询
12418
+ */
12419
+ pagequeryInnerPlatformproduct(request: PagequeryInnerPlatformproductRequest): Promise<PagequeryInnerPlatformproductResponse>;
12420
+ /**
12421
+ * Description: 随时享商户侧商品列表查询
12422
+ * Summary: 随时享商户侧商品列表查询
12423
+ */
12424
+ pagequeryInnerPlatformproductEx(request: PagequeryInnerPlatformproductRequest, headers: {
12425
+ [key: string]: string;
12426
+ }, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerPlatformproductResponse>;
12427
+ /**
12428
+ * Description: 随时享商户侧商品详情查询
12429
+ * Summary: 随时享商户侧商品详情查询
12430
+ */
12431
+ detailInnerPlatformproduct(request: DetailInnerPlatformproductRequest): Promise<DetailInnerPlatformproductResponse>;
12432
+ /**
12433
+ * Description: 随时享商户侧商品详情查询
12434
+ * Summary: 随时享商户侧商品详情查询
12435
+ */
12436
+ detailInnerPlatformproductEx(request: DetailInnerPlatformproductRequest, headers: {
12437
+ [key: string]: string;
12438
+ }, runtime: $Util.RuntimeOptions): Promise<DetailInnerPlatformproductResponse>;
12439
+ /**
12440
+ * Description: 随时享商户侧商品报名或者编辑
12441
+ * Summary: 随时享商户侧商品报名或者编辑
12442
+ */
12443
+ submitInnerPlatformproduct(request: SubmitInnerPlatformproductRequest): Promise<SubmitInnerPlatformproductResponse>;
12444
+ /**
12445
+ * Description: 随时享商户侧商品报名或者编辑
12446
+ * Summary: 随时享商户侧商品报名或者编辑
12447
+ */
12448
+ submitInnerPlatformproductEx(request: SubmitInnerPlatformproductRequest, headers: {
12449
+ [key: string]: string;
12450
+ }, runtime: $Util.RuntimeOptions): Promise<SubmitInnerPlatformproductResponse>;
12451
+ /**
12452
+ * Description: 随时享商户侧商品报名退出
12453
+ * Summary: 随时享商户侧商品报名退出
12454
+ */
12455
+ reclaimInnerPlatformproduct(request: ReclaimInnerPlatformproductRequest): Promise<ReclaimInnerPlatformproductResponse>;
12456
+ /**
12457
+ * Description: 随时享商户侧商品报名退出
12458
+ * Summary: 随时享商户侧商品报名退出
12459
+ */
12460
+ reclaimInnerPlatformproductEx(request: ReclaimInnerPlatformproductRequest, headers: {
12461
+ [key: string]: string;
12462
+ }, runtime: $Util.RuntimeOptions): Promise<ReclaimInnerPlatformproductResponse>;
12463
+ /**
12464
+ * Description: 随时享商户侧商品租赁价格配置
12465
+ * Summary: 随时享商户侧商品租赁价格配置
12466
+ */
12467
+ setInnerPlatformproduct(request: SetInnerPlatformproductRequest): Promise<SetInnerPlatformproductResponse>;
12468
+ /**
12469
+ * Description: 随时享商户侧商品租赁价格配置
12470
+ * Summary: 随时享商户侧商品租赁价格配置
12471
+ */
12472
+ setInnerPlatformproductEx(request: SetInnerPlatformproductRequest, headers: {
12473
+ [key: string]: string;
12474
+ }, runtime: $Util.RuntimeOptions): Promise<SetInnerPlatformproductResponse>;
12475
+ /**
12476
+ * Description: 查询授权协议状态
12477
+ * Summary: 授权协议状态查询
12478
+ */
12479
+ queryInnerAuthagreement(request: QueryInnerAuthagreementRequest): Promise<QueryInnerAuthagreementResponse>;
12480
+ /**
12481
+ * Description: 查询授权协议状态
12482
+ * Summary: 授权协议状态查询
12483
+ */
12484
+ queryInnerAuthagreementEx(request: QueryInnerAuthagreementRequest, headers: {
12485
+ [key: string]: string;
12486
+ }, runtime: $Util.RuntimeOptions): Promise<QueryInnerAuthagreementResponse>;
12487
+ /**
12488
+ * Description: 访问需授权的业务功能是进行协议授权确认
12489
+ * Summary: 协议授权确认
12490
+ */
12491
+ confirmInnerAuthagreement(request: ConfirmInnerAuthagreementRequest): Promise<ConfirmInnerAuthagreementResponse>;
12492
+ /**
12493
+ * Description: 访问需授权的业务功能是进行协议授权确认
12494
+ * Summary: 协议授权确认
12495
+ */
12496
+ confirmInnerAuthagreementEx(request: ConfirmInnerAuthagreementRequest, headers: {
12497
+ [key: string]: string;
12498
+ }, runtime: $Util.RuntimeOptions): Promise<ConfirmInnerAuthagreementResponse>;
11165
12499
  /**
11166
12500
  * Description: 一键投保
11167
12501
  * Summary: 投保
@@ -11270,6 +12604,18 @@ export default class Client {
11270
12604
  queryMerchantexpandDividerelationEx(request: QueryMerchantexpandDividerelationRequest, headers: {
11271
12605
  [key: string]: string;
11272
12606
  }, runtime: $Util.RuntimeOptions): Promise<QueryMerchantexpandDividerelationResponse>;
12607
+ /**
12608
+ * Description: 二级户进件绑定结算卡信息
12609
+ * Summary: 二级户进件绑定结算卡信息
12610
+ */
12611
+ bindMerchantexpandSettlecard(request: BindMerchantexpandSettlecardRequest): Promise<BindMerchantexpandSettlecardResponse>;
12612
+ /**
12613
+ * Description: 二级户进件绑定结算卡信息
12614
+ * Summary: 二级户进件绑定结算卡信息
12615
+ */
12616
+ bindMerchantexpandSettlecardEx(request: BindMerchantexpandSettlecardRequest, headers: {
12617
+ [key: string]: string;
12618
+ }, runtime: $Util.RuntimeOptions): Promise<BindMerchantexpandSettlecardResponse>;
11273
12619
  /**
11274
12620
  * Description: 可信身份认证,创建认证
11275
12621
  * Summary: 创建认证
@@ -11702,6 +13048,42 @@ export default class Client {
11702
13048
  syncTradePromoorderinfoEx(request: SyncTradePromoorderinfoRequest, headers: {
11703
13049
  [key: string]: string;
11704
13050
  }, runtime: $Util.RuntimeOptions): Promise<SyncTradePromoorderinfoResponse>;
13051
+ /**
13052
+ * Description: 商家端订单接单同步接口
13053
+ * Summary: 商家端同步接口
13054
+ */
13055
+ syncTradePlatformorderaudit(request: SyncTradePlatformorderauditRequest): Promise<SyncTradePlatformorderauditResponse>;
13056
+ /**
13057
+ * Description: 商家端订单接单同步接口
13058
+ * Summary: 商家端同步接口
13059
+ */
13060
+ syncTradePlatformorderauditEx(request: SyncTradePlatformorderauditRequest, headers: {
13061
+ [key: string]: string;
13062
+ }, runtime: $Util.RuntimeOptions): Promise<SyncTradePlatformorderauditResponse>;
13063
+ /**
13064
+ * Description: 资产订单同步
13065
+ * Summary: 资产订单同步
13066
+ */
13067
+ syncTradeReceiptorderfullinfo(request: SyncTradeReceiptorderfullinfoRequest): Promise<SyncTradeReceiptorderfullinfoResponse>;
13068
+ /**
13069
+ * Description: 资产订单同步
13070
+ * Summary: 资产订单同步
13071
+ */
13072
+ syncTradeReceiptorderfullinfoEx(request: SyncTradeReceiptorderfullinfoRequest, headers: {
13073
+ [key: string]: string;
13074
+ }, runtime: $Util.RuntimeOptions): Promise<SyncTradeReceiptorderfullinfoResponse>;
13075
+ /**
13076
+ * Description: 订单信息查询(新)
13077
+ * Summary: 订单获取
13078
+ */
13079
+ getTradeOrderfullinfo(request: GetTradeOrderfullinfoRequest): Promise<GetTradeOrderfullinfoResponse>;
13080
+ /**
13081
+ * Description: 订单信息查询(新)
13082
+ * Summary: 订单获取
13083
+ */
13084
+ getTradeOrderfullinfoEx(request: GetTradeOrderfullinfoRequest, headers: {
13085
+ [key: string]: string;
13086
+ }, runtime: $Util.RuntimeOptions): Promise<GetTradeOrderfullinfoResponse>;
11705
13087
  /**
11706
13088
  * Description: 代扣签约创建
11707
13089
  * Summary: 代扣签约