@antchain/ato 1.15.23 → 1.15.67
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 +1281 -98
- package/dist/client.js +3771 -1965
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +5962 -3313
package/dist/client.d.ts
CHANGED
|
@@ -47,6 +47,19 @@ export declare class FileInfo extends $tea.Model {
|
|
|
47
47
|
[key: string]: any;
|
|
48
48
|
});
|
|
49
49
|
}
|
|
50
|
+
export declare class PaymentItem extends $tea.Model {
|
|
51
|
+
amount?: number;
|
|
52
|
+
paymentType?: string;
|
|
53
|
+
static names(): {
|
|
54
|
+
[key: string]: string;
|
|
55
|
+
};
|
|
56
|
+
static types(): {
|
|
57
|
+
[key: string]: any;
|
|
58
|
+
};
|
|
59
|
+
constructor(map?: {
|
|
60
|
+
[key: string]: any;
|
|
61
|
+
});
|
|
62
|
+
}
|
|
50
63
|
export declare class ScalperQueryOrderItem extends $tea.Model {
|
|
51
64
|
orderItemsName?: string;
|
|
52
65
|
orderItemsQuantity?: number;
|
|
@@ -108,6 +121,7 @@ export declare class OrderRepayStrategy extends $tea.Model {
|
|
|
108
121
|
termIndex?: number;
|
|
109
122
|
rentalMoney?: number;
|
|
110
123
|
payDay?: string;
|
|
124
|
+
paymentItemList?: PaymentItem[];
|
|
111
125
|
static names(): {
|
|
112
126
|
[key: string]: string;
|
|
113
127
|
};
|
|
@@ -170,6 +184,34 @@ export declare class AppletRiskModel extends $tea.Model {
|
|
|
170
184
|
[key: string]: any;
|
|
171
185
|
});
|
|
172
186
|
}
|
|
187
|
+
export declare class OrderWithholdContractInfo extends $tea.Model {
|
|
188
|
+
withholdingContractId?: string;
|
|
189
|
+
contractStatus?: string;
|
|
190
|
+
static names(): {
|
|
191
|
+
[key: string]: string;
|
|
192
|
+
};
|
|
193
|
+
static types(): {
|
|
194
|
+
[key: string]: any;
|
|
195
|
+
};
|
|
196
|
+
constructor(map?: {
|
|
197
|
+
[key: string]: any;
|
|
198
|
+
});
|
|
199
|
+
}
|
|
200
|
+
export declare class MerchantOrderRepayStrategy extends $tea.Model {
|
|
201
|
+
termIndex?: number;
|
|
202
|
+
leaseTermIndex?: number;
|
|
203
|
+
payMoney?: number;
|
|
204
|
+
toCompensateDate?: string;
|
|
205
|
+
static names(): {
|
|
206
|
+
[key: string]: string;
|
|
207
|
+
};
|
|
208
|
+
static types(): {
|
|
209
|
+
[key: string]: any;
|
|
210
|
+
};
|
|
211
|
+
constructor(map?: {
|
|
212
|
+
[key: string]: any;
|
|
213
|
+
});
|
|
214
|
+
}
|
|
173
215
|
export declare class ExpandProcessInfo extends $tea.Model {
|
|
174
216
|
processNode?: string;
|
|
175
217
|
isSubmitted?: boolean;
|
|
@@ -273,6 +315,10 @@ export declare class OrderInfo extends $tea.Model {
|
|
|
273
315
|
logisticType?: string;
|
|
274
316
|
dueMode?: number;
|
|
275
317
|
downPayment?: number;
|
|
318
|
+
merchantId?: string;
|
|
319
|
+
merchantName?: string;
|
|
320
|
+
divideStartTermIndex?: number;
|
|
321
|
+
promotionId?: string;
|
|
276
322
|
static names(): {
|
|
277
323
|
[key: string]: string;
|
|
278
324
|
};
|
|
@@ -361,6 +407,23 @@ export declare class LegalInfoUpdate extends $tea.Model {
|
|
|
361
407
|
[key: string]: any;
|
|
362
408
|
});
|
|
363
409
|
}
|
|
410
|
+
export declare class InnerCreditInfo extends $tea.Model {
|
|
411
|
+
contentId?: string;
|
|
412
|
+
contentType?: string;
|
|
413
|
+
creditName?: string;
|
|
414
|
+
creditFileUrl?: string;
|
|
415
|
+
creditContent?: string;
|
|
416
|
+
createTime?: string;
|
|
417
|
+
static names(): {
|
|
418
|
+
[key: string]: string;
|
|
419
|
+
};
|
|
420
|
+
static types(): {
|
|
421
|
+
[key: string]: any;
|
|
422
|
+
};
|
|
423
|
+
constructor(map?: {
|
|
424
|
+
[key: string]: any;
|
|
425
|
+
});
|
|
426
|
+
}
|
|
364
427
|
export declare class PromiseInfo extends $tea.Model {
|
|
365
428
|
static names(): {
|
|
366
429
|
[key: string]: string;
|
|
@@ -498,6 +561,8 @@ export declare class OrderFulfillmentInfo extends $tea.Model {
|
|
|
498
561
|
realRepayMoney?: number;
|
|
499
562
|
rentalMoney?: number;
|
|
500
563
|
returnTime?: string;
|
|
564
|
+
returnWay?: string;
|
|
565
|
+
returnVoucherSerial?: string;
|
|
501
566
|
static names(): {
|
|
502
567
|
[key: string]: string;
|
|
503
568
|
};
|
|
@@ -603,6 +668,42 @@ export declare class CompanySummaryInfo extends $tea.Model {
|
|
|
603
668
|
[key: string]: any;
|
|
604
669
|
});
|
|
605
670
|
}
|
|
671
|
+
export declare class MerchantOrderFulfillmentInfo extends $tea.Model {
|
|
672
|
+
termIndex?: number;
|
|
673
|
+
leaseTermIndex?: number;
|
|
674
|
+
rentalReturnState?: string;
|
|
675
|
+
returnWay?: string;
|
|
676
|
+
payType?: string;
|
|
677
|
+
totalMoney?: number;
|
|
678
|
+
returnTime?: string;
|
|
679
|
+
returnVoucherSerial?: string;
|
|
680
|
+
fundCompanyName?: string;
|
|
681
|
+
static names(): {
|
|
682
|
+
[key: string]: string;
|
|
683
|
+
};
|
|
684
|
+
static types(): {
|
|
685
|
+
[key: string]: any;
|
|
686
|
+
};
|
|
687
|
+
constructor(map?: {
|
|
688
|
+
[key: string]: any;
|
|
689
|
+
});
|
|
690
|
+
}
|
|
691
|
+
export declare class TerminateApplyEvidence extends $tea.Model {
|
|
692
|
+
terminateApplyReason?: string;
|
|
693
|
+
terminateApplyRefer?: string;
|
|
694
|
+
userPhoneNum?: string;
|
|
695
|
+
terminateApplyEvidences?: string[];
|
|
696
|
+
terminateOperateTime?: string;
|
|
697
|
+
static names(): {
|
|
698
|
+
[key: string]: string;
|
|
699
|
+
};
|
|
700
|
+
static types(): {
|
|
701
|
+
[key: string]: any;
|
|
702
|
+
};
|
|
703
|
+
constructor(map?: {
|
|
704
|
+
[key: string]: any;
|
|
705
|
+
});
|
|
706
|
+
}
|
|
606
707
|
export declare class OrderSearchInfo extends $tea.Model {
|
|
607
708
|
orderId?: string;
|
|
608
709
|
agreementNo?: string;
|
|
@@ -623,6 +724,19 @@ export declare class OrderSearchInfo extends $tea.Model {
|
|
|
623
724
|
[key: string]: any;
|
|
624
725
|
});
|
|
625
726
|
}
|
|
727
|
+
export declare class OrderLogisticInfo extends $tea.Model {
|
|
728
|
+
logisticOrderId?: string;
|
|
729
|
+
logisticStatus?: string;
|
|
730
|
+
static names(): {
|
|
731
|
+
[key: string]: string;
|
|
732
|
+
};
|
|
733
|
+
static types(): {
|
|
734
|
+
[key: string]: any;
|
|
735
|
+
};
|
|
736
|
+
constructor(map?: {
|
|
737
|
+
[key: string]: any;
|
|
738
|
+
});
|
|
739
|
+
}
|
|
626
740
|
export declare class ApplicationInfo extends $tea.Model {
|
|
627
741
|
applicationScene: string;
|
|
628
742
|
tinyAppId: string;
|
|
@@ -889,6 +1003,20 @@ export declare class MarketingScoreInfo extends $tea.Model {
|
|
|
889
1003
|
[key: string]: any;
|
|
890
1004
|
});
|
|
891
1005
|
}
|
|
1006
|
+
export declare class MerchantSupportEvidence extends $tea.Model {
|
|
1007
|
+
merchantOperateTime?: string;
|
|
1008
|
+
merchantRefuseReason?: string;
|
|
1009
|
+
merchantRefuseEvidences?: string[];
|
|
1010
|
+
static names(): {
|
|
1011
|
+
[key: string]: string;
|
|
1012
|
+
};
|
|
1013
|
+
static types(): {
|
|
1014
|
+
[key: string]: any;
|
|
1015
|
+
};
|
|
1016
|
+
constructor(map?: {
|
|
1017
|
+
[key: string]: any;
|
|
1018
|
+
});
|
|
1019
|
+
}
|
|
892
1020
|
export declare class OrderContractInfo extends $tea.Model {
|
|
893
1021
|
signNo?: string;
|
|
894
1022
|
signTime?: string;
|
|
@@ -1093,6 +1221,19 @@ export declare class AgreementPage extends $tea.Model {
|
|
|
1093
1221
|
[key: string]: any;
|
|
1094
1222
|
});
|
|
1095
1223
|
}
|
|
1224
|
+
export declare class FundMngLoanApplyResult extends $tea.Model {
|
|
1225
|
+
loanApplyStatus?: string;
|
|
1226
|
+
loanFailReason?: string;
|
|
1227
|
+
static names(): {
|
|
1228
|
+
[key: string]: string;
|
|
1229
|
+
};
|
|
1230
|
+
static types(): {
|
|
1231
|
+
[key: string]: any;
|
|
1232
|
+
};
|
|
1233
|
+
constructor(map?: {
|
|
1234
|
+
[key: string]: any;
|
|
1235
|
+
});
|
|
1236
|
+
}
|
|
1096
1237
|
export declare class FarmingQueryModel extends $tea.Model {
|
|
1097
1238
|
outOrderNo?: string;
|
|
1098
1239
|
orderNo?: string;
|
|
@@ -1206,9 +1347,531 @@ export declare class GoodsInfo extends $tea.Model {
|
|
|
1206
1347
|
[key: string]: any;
|
|
1207
1348
|
});
|
|
1208
1349
|
}
|
|
1209
|
-
export declare class PageQuery extends $tea.Model {
|
|
1210
|
-
pageSize: number;
|
|
1211
|
-
pageIndex: number;
|
|
1350
|
+
export declare class PageQuery extends $tea.Model {
|
|
1351
|
+
pageSize: number;
|
|
1352
|
+
pageIndex: number;
|
|
1353
|
+
static names(): {
|
|
1354
|
+
[key: string]: string;
|
|
1355
|
+
};
|
|
1356
|
+
static types(): {
|
|
1357
|
+
[key: string]: any;
|
|
1358
|
+
};
|
|
1359
|
+
constructor(map?: {
|
|
1360
|
+
[key: string]: any;
|
|
1361
|
+
});
|
|
1362
|
+
}
|
|
1363
|
+
export declare class AgreementTerminateApplyInfo extends $tea.Model {
|
|
1364
|
+
orderId?: string;
|
|
1365
|
+
terminateApplyId?: string;
|
|
1366
|
+
orderGmtCreate?: string;
|
|
1367
|
+
gmtTerminateApply?: string;
|
|
1368
|
+
handleStatus?: string;
|
|
1369
|
+
merchantHandleDuration?: string;
|
|
1370
|
+
merchantHandleDurationType?: string;
|
|
1371
|
+
static names(): {
|
|
1372
|
+
[key: string]: string;
|
|
1373
|
+
};
|
|
1374
|
+
static types(): {
|
|
1375
|
+
[key: string]: any;
|
|
1376
|
+
};
|
|
1377
|
+
constructor(map?: {
|
|
1378
|
+
[key: string]: any;
|
|
1379
|
+
});
|
|
1380
|
+
}
|
|
1381
|
+
export declare class LegalInfo extends $tea.Model {
|
|
1382
|
+
legalName: string;
|
|
1383
|
+
legalCertNo: string;
|
|
1384
|
+
legalCertFrontFile: FileInfo;
|
|
1385
|
+
legalCertBackFile: FileInfo;
|
|
1386
|
+
static names(): {
|
|
1387
|
+
[key: string]: string;
|
|
1388
|
+
};
|
|
1389
|
+
static types(): {
|
|
1390
|
+
[key: string]: any;
|
|
1391
|
+
};
|
|
1392
|
+
constructor(map?: {
|
|
1393
|
+
[key: string]: any;
|
|
1394
|
+
});
|
|
1395
|
+
}
|
|
1396
|
+
export declare class OrderFinanceInfo extends $tea.Model {
|
|
1397
|
+
totalMoney?: number;
|
|
1398
|
+
applyStatus?: string;
|
|
1399
|
+
loanApplyDate?: string;
|
|
1400
|
+
loanTime?: string;
|
|
1401
|
+
loanSerialNumber?: string;
|
|
1402
|
+
fundDivideAlipayLogonId?: string;
|
|
1403
|
+
fundDivideAlipayUid?: string;
|
|
1404
|
+
fundWithholdAlipayLogonId?: string;
|
|
1405
|
+
fundWithholdAlipayUid?: string;
|
|
1406
|
+
feePaidRole?: string;
|
|
1407
|
+
loanChannel?: string;
|
|
1408
|
+
loanPayeeAccount?: string;
|
|
1409
|
+
paidCompanyId?: string;
|
|
1410
|
+
bankName?: string;
|
|
1411
|
+
financeStatus?: string;
|
|
1412
|
+
paymentItemList?: string[];
|
|
1413
|
+
transferCompensateInAccountType?: string;
|
|
1414
|
+
static names(): {
|
|
1415
|
+
[key: string]: string;
|
|
1416
|
+
};
|
|
1417
|
+
static types(): {
|
|
1418
|
+
[key: string]: any;
|
|
1419
|
+
};
|
|
1420
|
+
constructor(map?: {
|
|
1421
|
+
[key: string]: any;
|
|
1422
|
+
});
|
|
1423
|
+
}
|
|
1424
|
+
export declare class XNameValuePair extends $tea.Model {
|
|
1425
|
+
name: string;
|
|
1426
|
+
value: string;
|
|
1427
|
+
static names(): {
|
|
1428
|
+
[key: string]: string;
|
|
1429
|
+
};
|
|
1430
|
+
static types(): {
|
|
1431
|
+
[key: string]: any;
|
|
1432
|
+
};
|
|
1433
|
+
constructor(map?: {
|
|
1434
|
+
[key: string]: any;
|
|
1435
|
+
});
|
|
1436
|
+
}
|
|
1437
|
+
export declare class TransferBrokerUserdataRequest extends $tea.Model {
|
|
1438
|
+
authToken?: string;
|
|
1439
|
+
productInstanceId?: string;
|
|
1440
|
+
dataId: string;
|
|
1441
|
+
dataType: string;
|
|
1442
|
+
dataContent: string;
|
|
1443
|
+
static names(): {
|
|
1444
|
+
[key: string]: string;
|
|
1445
|
+
};
|
|
1446
|
+
static types(): {
|
|
1447
|
+
[key: string]: any;
|
|
1448
|
+
};
|
|
1449
|
+
constructor(map?: {
|
|
1450
|
+
[key: string]: any;
|
|
1451
|
+
});
|
|
1452
|
+
}
|
|
1453
|
+
export declare class TransferBrokerUserdataResponse extends $tea.Model {
|
|
1454
|
+
reqMsgId?: string;
|
|
1455
|
+
resultCode?: string;
|
|
1456
|
+
resultMsg?: string;
|
|
1457
|
+
dataId?: string;
|
|
1458
|
+
static names(): {
|
|
1459
|
+
[key: string]: string;
|
|
1460
|
+
};
|
|
1461
|
+
static types(): {
|
|
1462
|
+
[key: string]: any;
|
|
1463
|
+
};
|
|
1464
|
+
constructor(map?: {
|
|
1465
|
+
[key: string]: any;
|
|
1466
|
+
});
|
|
1467
|
+
}
|
|
1468
|
+
export declare class QueryInnerFundmngdemoRequest extends $tea.Model {
|
|
1469
|
+
authToken?: string;
|
|
1470
|
+
productInstanceId?: string;
|
|
1471
|
+
name: string;
|
|
1472
|
+
static names(): {
|
|
1473
|
+
[key: string]: string;
|
|
1474
|
+
};
|
|
1475
|
+
static types(): {
|
|
1476
|
+
[key: string]: any;
|
|
1477
|
+
};
|
|
1478
|
+
constructor(map?: {
|
|
1479
|
+
[key: string]: any;
|
|
1480
|
+
});
|
|
1481
|
+
}
|
|
1482
|
+
export declare class QueryInnerFundmngdemoResponse extends $tea.Model {
|
|
1483
|
+
reqMsgId?: string;
|
|
1484
|
+
resultCode?: string;
|
|
1485
|
+
resultMsg?: string;
|
|
1486
|
+
responseName?: string;
|
|
1487
|
+
static names(): {
|
|
1488
|
+
[key: string]: string;
|
|
1489
|
+
};
|
|
1490
|
+
static types(): {
|
|
1491
|
+
[key: string]: any;
|
|
1492
|
+
};
|
|
1493
|
+
constructor(map?: {
|
|
1494
|
+
[key: string]: any;
|
|
1495
|
+
});
|
|
1496
|
+
}
|
|
1497
|
+
export declare class PagequeryInnerFundmngfinanceorderRequest extends $tea.Model {
|
|
1498
|
+
authToken?: string;
|
|
1499
|
+
productInstanceId?: string;
|
|
1500
|
+
fundTenantId: string;
|
|
1501
|
+
orderId?: string;
|
|
1502
|
+
assetPackageId?: string;
|
|
1503
|
+
signNo?: string;
|
|
1504
|
+
merchantName?: string;
|
|
1505
|
+
merchantId?: string;
|
|
1506
|
+
financeApplyTimeStart?: string;
|
|
1507
|
+
financeApplyTimeEnd?: string;
|
|
1508
|
+
loanStatus?: string;
|
|
1509
|
+
fundName?: string;
|
|
1510
|
+
isLoanApplyFail?: boolean;
|
|
1511
|
+
pageInfo: PageQuery;
|
|
1512
|
+
static names(): {
|
|
1513
|
+
[key: string]: string;
|
|
1514
|
+
};
|
|
1515
|
+
static types(): {
|
|
1516
|
+
[key: string]: any;
|
|
1517
|
+
};
|
|
1518
|
+
constructor(map?: {
|
|
1519
|
+
[key: string]: any;
|
|
1520
|
+
});
|
|
1521
|
+
}
|
|
1522
|
+
export declare class PagequeryInnerFundmngfinanceorderResponse extends $tea.Model {
|
|
1523
|
+
reqMsgId?: string;
|
|
1524
|
+
resultCode?: string;
|
|
1525
|
+
resultMsg?: string;
|
|
1526
|
+
totalCount?: number;
|
|
1527
|
+
items?: string;
|
|
1528
|
+
loanApplyFailCount?: number;
|
|
1529
|
+
static names(): {
|
|
1530
|
+
[key: string]: string;
|
|
1531
|
+
};
|
|
1532
|
+
static types(): {
|
|
1533
|
+
[key: string]: any;
|
|
1534
|
+
};
|
|
1535
|
+
constructor(map?: {
|
|
1536
|
+
[key: string]: any;
|
|
1537
|
+
});
|
|
1538
|
+
}
|
|
1539
|
+
export declare class SubmitInnerFundmngdatadownloadRequest extends $tea.Model {
|
|
1540
|
+
authToken?: string;
|
|
1541
|
+
productInstanceId?: string;
|
|
1542
|
+
fundTenantId: string;
|
|
1543
|
+
startTime: string;
|
|
1544
|
+
endTime: string;
|
|
1545
|
+
type: string;
|
|
1546
|
+
static names(): {
|
|
1547
|
+
[key: string]: string;
|
|
1548
|
+
};
|
|
1549
|
+
static types(): {
|
|
1550
|
+
[key: string]: any;
|
|
1551
|
+
};
|
|
1552
|
+
constructor(map?: {
|
|
1553
|
+
[key: string]: any;
|
|
1554
|
+
});
|
|
1555
|
+
}
|
|
1556
|
+
export declare class SubmitInnerFundmngdatadownloadResponse extends $tea.Model {
|
|
1557
|
+
reqMsgId?: string;
|
|
1558
|
+
resultCode?: string;
|
|
1559
|
+
resultMsg?: string;
|
|
1560
|
+
static names(): {
|
|
1561
|
+
[key: string]: string;
|
|
1562
|
+
};
|
|
1563
|
+
static types(): {
|
|
1564
|
+
[key: string]: any;
|
|
1565
|
+
};
|
|
1566
|
+
constructor(map?: {
|
|
1567
|
+
[key: string]: any;
|
|
1568
|
+
});
|
|
1569
|
+
}
|
|
1570
|
+
export declare class PagequeryInnerFundmngdatadownloadRequest extends $tea.Model {
|
|
1571
|
+
authToken?: string;
|
|
1572
|
+
productInstanceId?: string;
|
|
1573
|
+
fundTenantId: string;
|
|
1574
|
+
status?: string;
|
|
1575
|
+
pageInfo: PageQuery;
|
|
1576
|
+
static names(): {
|
|
1577
|
+
[key: string]: string;
|
|
1578
|
+
};
|
|
1579
|
+
static types(): {
|
|
1580
|
+
[key: string]: any;
|
|
1581
|
+
};
|
|
1582
|
+
constructor(map?: {
|
|
1583
|
+
[key: string]: any;
|
|
1584
|
+
});
|
|
1585
|
+
}
|
|
1586
|
+
export declare class PagequeryInnerFundmngdatadownloadResponse extends $tea.Model {
|
|
1587
|
+
reqMsgId?: string;
|
|
1588
|
+
resultCode?: string;
|
|
1589
|
+
resultMsg?: string;
|
|
1590
|
+
total?: number;
|
|
1591
|
+
dataDownloadInfo?: DataDownloadInfo[];
|
|
1592
|
+
static names(): {
|
|
1593
|
+
[key: string]: string;
|
|
1594
|
+
};
|
|
1595
|
+
static types(): {
|
|
1596
|
+
[key: string]: any;
|
|
1597
|
+
};
|
|
1598
|
+
constructor(map?: {
|
|
1599
|
+
[key: string]: any;
|
|
1600
|
+
});
|
|
1601
|
+
}
|
|
1602
|
+
export declare class DeleteInnerFundmngdatadownloadRequest extends $tea.Model {
|
|
1603
|
+
authToken?: string;
|
|
1604
|
+
productInstanceId?: string;
|
|
1605
|
+
fundTenantId: string;
|
|
1606
|
+
bizNo: string;
|
|
1607
|
+
static names(): {
|
|
1608
|
+
[key: string]: string;
|
|
1609
|
+
};
|
|
1610
|
+
static types(): {
|
|
1611
|
+
[key: string]: any;
|
|
1612
|
+
};
|
|
1613
|
+
constructor(map?: {
|
|
1614
|
+
[key: string]: any;
|
|
1615
|
+
});
|
|
1616
|
+
}
|
|
1617
|
+
export declare class DeleteInnerFundmngdatadownloadResponse extends $tea.Model {
|
|
1618
|
+
reqMsgId?: string;
|
|
1619
|
+
resultCode?: string;
|
|
1620
|
+
resultMsg?: string;
|
|
1621
|
+
static names(): {
|
|
1622
|
+
[key: string]: string;
|
|
1623
|
+
};
|
|
1624
|
+
static types(): {
|
|
1625
|
+
[key: string]: any;
|
|
1626
|
+
};
|
|
1627
|
+
constructor(map?: {
|
|
1628
|
+
[key: string]: any;
|
|
1629
|
+
});
|
|
1630
|
+
}
|
|
1631
|
+
export declare class QueryInnerFundmngmerchantpayitemRequest extends $tea.Model {
|
|
1632
|
+
authToken?: string;
|
|
1633
|
+
productInstanceId?: string;
|
|
1634
|
+
fundTenantId: string;
|
|
1635
|
+
tenantId: string;
|
|
1636
|
+
merchantId: string;
|
|
1637
|
+
fundId: string;
|
|
1638
|
+
static names(): {
|
|
1639
|
+
[key: string]: string;
|
|
1640
|
+
};
|
|
1641
|
+
static types(): {
|
|
1642
|
+
[key: string]: any;
|
|
1643
|
+
};
|
|
1644
|
+
constructor(map?: {
|
|
1645
|
+
[key: string]: any;
|
|
1646
|
+
});
|
|
1647
|
+
}
|
|
1648
|
+
export declare class QueryInnerFundmngmerchantpayitemResponse extends $tea.Model {
|
|
1649
|
+
reqMsgId?: string;
|
|
1650
|
+
resultCode?: string;
|
|
1651
|
+
resultMsg?: string;
|
|
1652
|
+
paymentItem?: string;
|
|
1653
|
+
static names(): {
|
|
1654
|
+
[key: string]: string;
|
|
1655
|
+
};
|
|
1656
|
+
static types(): {
|
|
1657
|
+
[key: string]: any;
|
|
1658
|
+
};
|
|
1659
|
+
constructor(map?: {
|
|
1660
|
+
[key: string]: any;
|
|
1661
|
+
});
|
|
1662
|
+
}
|
|
1663
|
+
export declare class CreateInnerFundmngmerchantpromiseRequest extends $tea.Model {
|
|
1664
|
+
authToken?: string;
|
|
1665
|
+
productInstanceId?: string;
|
|
1666
|
+
fundTenantId: string;
|
|
1667
|
+
tenantId: string;
|
|
1668
|
+
orderId: string;
|
|
1669
|
+
merchantId: string;
|
|
1670
|
+
fundId: string;
|
|
1671
|
+
merchantPayType: string;
|
|
1672
|
+
merchantCompensateStartDay: number;
|
|
1673
|
+
payStartTermIndex: number;
|
|
1674
|
+
divideAlipayUserId: string;
|
|
1675
|
+
divideAlipayLoginId: string;
|
|
1676
|
+
compensateAlipayUserId: string;
|
|
1677
|
+
compensateAlipayLoginId: string;
|
|
1678
|
+
static names(): {
|
|
1679
|
+
[key: string]: string;
|
|
1680
|
+
};
|
|
1681
|
+
static types(): {
|
|
1682
|
+
[key: string]: any;
|
|
1683
|
+
};
|
|
1684
|
+
constructor(map?: {
|
|
1685
|
+
[key: string]: any;
|
|
1686
|
+
});
|
|
1687
|
+
}
|
|
1688
|
+
export declare class CreateInnerFundmngmerchantpromiseResponse extends $tea.Model {
|
|
1689
|
+
reqMsgId?: string;
|
|
1690
|
+
resultCode?: string;
|
|
1691
|
+
resultMsg?: string;
|
|
1692
|
+
merchantPromiseInfo?: string;
|
|
1693
|
+
static names(): {
|
|
1694
|
+
[key: string]: string;
|
|
1695
|
+
};
|
|
1696
|
+
static types(): {
|
|
1697
|
+
[key: string]: any;
|
|
1698
|
+
};
|
|
1699
|
+
constructor(map?: {
|
|
1700
|
+
[key: string]: any;
|
|
1701
|
+
});
|
|
1702
|
+
}
|
|
1703
|
+
export declare class QueryInnerFundmngloanapplyRequest extends $tea.Model {
|
|
1704
|
+
authToken?: string;
|
|
1705
|
+
productInstanceId?: string;
|
|
1706
|
+
fundTenantId: string;
|
|
1707
|
+
tenantId: string;
|
|
1708
|
+
fundId: string;
|
|
1709
|
+
merchantId: string;
|
|
1710
|
+
orderId: string;
|
|
1711
|
+
static names(): {
|
|
1712
|
+
[key: string]: string;
|
|
1713
|
+
};
|
|
1714
|
+
static types(): {
|
|
1715
|
+
[key: string]: any;
|
|
1716
|
+
};
|
|
1717
|
+
constructor(map?: {
|
|
1718
|
+
[key: string]: any;
|
|
1719
|
+
});
|
|
1720
|
+
}
|
|
1721
|
+
export declare class QueryInnerFundmngloanapplyResponse extends $tea.Model {
|
|
1722
|
+
reqMsgId?: string;
|
|
1723
|
+
resultCode?: string;
|
|
1724
|
+
resultMsg?: string;
|
|
1725
|
+
financeLoanApplyStatus?: string;
|
|
1726
|
+
merchantPayType?: string;
|
|
1727
|
+
merchantCompensateStartDay?: number;
|
|
1728
|
+
payStartTermIndex?: number;
|
|
1729
|
+
paymentItem?: string;
|
|
1730
|
+
divideAlipayUserId?: string;
|
|
1731
|
+
divideAlipayLoginId?: string;
|
|
1732
|
+
compensateAlipayUserId?: string;
|
|
1733
|
+
compensateAlipayLoginId?: string;
|
|
1734
|
+
merchantPromiseInfo?: string;
|
|
1735
|
+
financeLoanResults?: string;
|
|
1736
|
+
financeLoanResultSyncFailReason?: string;
|
|
1737
|
+
static names(): {
|
|
1738
|
+
[key: string]: string;
|
|
1739
|
+
};
|
|
1740
|
+
static types(): {
|
|
1741
|
+
[key: string]: any;
|
|
1742
|
+
};
|
|
1743
|
+
constructor(map?: {
|
|
1744
|
+
[key: string]: any;
|
|
1745
|
+
});
|
|
1746
|
+
}
|
|
1747
|
+
export declare class QueryInnerFundmngaccountinfoRequest extends $tea.Model {
|
|
1748
|
+
authToken?: string;
|
|
1749
|
+
productInstanceId?: string;
|
|
1750
|
+
fundTenantId: string;
|
|
1751
|
+
fundId: string;
|
|
1752
|
+
static names(): {
|
|
1753
|
+
[key: string]: string;
|
|
1754
|
+
};
|
|
1755
|
+
static types(): {
|
|
1756
|
+
[key: string]: any;
|
|
1757
|
+
};
|
|
1758
|
+
constructor(map?: {
|
|
1759
|
+
[key: string]: any;
|
|
1760
|
+
});
|
|
1761
|
+
}
|
|
1762
|
+
export declare class QueryInnerFundmngaccountinfoResponse extends $tea.Model {
|
|
1763
|
+
reqMsgId?: string;
|
|
1764
|
+
resultCode?: string;
|
|
1765
|
+
resultMsg?: string;
|
|
1766
|
+
fundAccountInfo?: string;
|
|
1767
|
+
static names(): {
|
|
1768
|
+
[key: string]: string;
|
|
1769
|
+
};
|
|
1770
|
+
static types(): {
|
|
1771
|
+
[key: string]: any;
|
|
1772
|
+
};
|
|
1773
|
+
constructor(map?: {
|
|
1774
|
+
[key: string]: any;
|
|
1775
|
+
});
|
|
1776
|
+
}
|
|
1777
|
+
export declare class SyncInnerFundmngloanresultsRequest extends $tea.Model {
|
|
1778
|
+
authToken?: string;
|
|
1779
|
+
productInstanceId?: string;
|
|
1780
|
+
fundTenantId: string;
|
|
1781
|
+
tenantId: string;
|
|
1782
|
+
orderId: string;
|
|
1783
|
+
merchantId: string;
|
|
1784
|
+
fundId: string;
|
|
1785
|
+
type: string;
|
|
1786
|
+
financeLoanResults?: string;
|
|
1787
|
+
merchantPromiseInfo?: string;
|
|
1788
|
+
promotionId?: string;
|
|
1789
|
+
static names(): {
|
|
1790
|
+
[key: string]: string;
|
|
1791
|
+
};
|
|
1792
|
+
static types(): {
|
|
1793
|
+
[key: string]: any;
|
|
1794
|
+
};
|
|
1795
|
+
constructor(map?: {
|
|
1796
|
+
[key: string]: any;
|
|
1797
|
+
});
|
|
1798
|
+
}
|
|
1799
|
+
export declare class SyncInnerFundmngloanresultsResponse extends $tea.Model {
|
|
1800
|
+
reqMsgId?: string;
|
|
1801
|
+
resultCode?: string;
|
|
1802
|
+
resultMsg?: string;
|
|
1803
|
+
static names(): {
|
|
1804
|
+
[key: string]: string;
|
|
1805
|
+
};
|
|
1806
|
+
static types(): {
|
|
1807
|
+
[key: string]: any;
|
|
1808
|
+
};
|
|
1809
|
+
constructor(map?: {
|
|
1810
|
+
[key: string]: any;
|
|
1811
|
+
});
|
|
1812
|
+
}
|
|
1813
|
+
export declare class CreateInnerFundmngcreditRequest extends $tea.Model {
|
|
1814
|
+
authToken?: string;
|
|
1815
|
+
productInstanceId?: string;
|
|
1816
|
+
tenantId: string;
|
|
1817
|
+
merchantId: string;
|
|
1818
|
+
fundTenantId: string;
|
|
1819
|
+
fundId: string;
|
|
1820
|
+
orderNoType: string;
|
|
1821
|
+
orderNo: string;
|
|
1822
|
+
contentType: string;
|
|
1823
|
+
creditName: string;
|
|
1824
|
+
creditFileKey?: string;
|
|
1825
|
+
creditContent?: string;
|
|
1826
|
+
static names(): {
|
|
1827
|
+
[key: string]: string;
|
|
1828
|
+
};
|
|
1829
|
+
static types(): {
|
|
1830
|
+
[key: string]: any;
|
|
1831
|
+
};
|
|
1832
|
+
constructor(map?: {
|
|
1833
|
+
[key: string]: any;
|
|
1834
|
+
});
|
|
1835
|
+
}
|
|
1836
|
+
export declare class CreateInnerFundmngcreditResponse extends $tea.Model {
|
|
1837
|
+
reqMsgId?: string;
|
|
1838
|
+
resultCode?: string;
|
|
1839
|
+
resultMsg?: string;
|
|
1840
|
+
contentId?: string;
|
|
1841
|
+
static names(): {
|
|
1842
|
+
[key: string]: string;
|
|
1843
|
+
};
|
|
1844
|
+
static types(): {
|
|
1845
|
+
[key: string]: any;
|
|
1846
|
+
};
|
|
1847
|
+
constructor(map?: {
|
|
1848
|
+
[key: string]: any;
|
|
1849
|
+
});
|
|
1850
|
+
}
|
|
1851
|
+
export declare class QueryInnerFundmngcreditRequest extends $tea.Model {
|
|
1852
|
+
authToken?: string;
|
|
1853
|
+
productInstanceId?: string;
|
|
1854
|
+
tenantId: string;
|
|
1855
|
+
merchantId: string;
|
|
1856
|
+
fundTenantId: string;
|
|
1857
|
+
fundId: string;
|
|
1858
|
+
orderNoType: string;
|
|
1859
|
+
orderNo: string;
|
|
1860
|
+
static names(): {
|
|
1861
|
+
[key: string]: string;
|
|
1862
|
+
};
|
|
1863
|
+
static types(): {
|
|
1864
|
+
[key: string]: any;
|
|
1865
|
+
};
|
|
1866
|
+
constructor(map?: {
|
|
1867
|
+
[key: string]: any;
|
|
1868
|
+
});
|
|
1869
|
+
}
|
|
1870
|
+
export declare class QueryInnerFundmngcreditResponse extends $tea.Model {
|
|
1871
|
+
reqMsgId?: string;
|
|
1872
|
+
resultCode?: string;
|
|
1873
|
+
resultMsg?: string;
|
|
1874
|
+
creditList?: InnerCreditInfo[];
|
|
1212
1875
|
static names(): {
|
|
1213
1876
|
[key: string]: string;
|
|
1214
1877
|
};
|
|
@@ -1219,11 +1882,14 @@ export declare class PageQuery extends $tea.Model {
|
|
|
1219
1882
|
[key: string]: any;
|
|
1220
1883
|
});
|
|
1221
1884
|
}
|
|
1222
|
-
export declare class
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1885
|
+
export declare class DetailInnerFundmngorderRequest extends $tea.Model {
|
|
1886
|
+
authToken?: string;
|
|
1887
|
+
productInstanceId?: string;
|
|
1888
|
+
fundTenantId: string;
|
|
1889
|
+
fundId: string;
|
|
1890
|
+
tenantId: string;
|
|
1891
|
+
merchantId: string;
|
|
1892
|
+
orderId: string;
|
|
1227
1893
|
static names(): {
|
|
1228
1894
|
[key: string]: string;
|
|
1229
1895
|
};
|
|
@@ -1234,9 +1900,24 @@ export declare class LegalInfo extends $tea.Model {
|
|
|
1234
1900
|
[key: string]: any;
|
|
1235
1901
|
});
|
|
1236
1902
|
}
|
|
1237
|
-
export declare class
|
|
1238
|
-
|
|
1239
|
-
|
|
1903
|
+
export declare class DetailInnerFundmngorderResponse extends $tea.Model {
|
|
1904
|
+
reqMsgId?: string;
|
|
1905
|
+
resultCode?: string;
|
|
1906
|
+
resultMsg?: string;
|
|
1907
|
+
orderId?: string;
|
|
1908
|
+
orderInfo?: OrderInfo;
|
|
1909
|
+
orderLogisticInfoList?: OrderLogisticInfo[];
|
|
1910
|
+
orderUserInfo?: OrderUserInfo;
|
|
1911
|
+
orderFinanceInfo?: OrderFinanceInfo;
|
|
1912
|
+
orderFulfillmentInfoList?: OrderFulfillmentInfo[];
|
|
1913
|
+
orderPromiseInfo?: OrderRepayStrategy[];
|
|
1914
|
+
orderProductInfoList?: OrderProductInfo[];
|
|
1915
|
+
orderContractInfoList?: OrderContractInfo[];
|
|
1916
|
+
orderWithholdContractInfo?: OrderWithholdContractInfo;
|
|
1917
|
+
orderCreditInfo?: InnerCreditInfo[];
|
|
1918
|
+
merchantOrderRepayStrategy?: MerchantOrderRepayStrategy[];
|
|
1919
|
+
merchantOrderFulfillmentInfo?: MerchantOrderFulfillmentInfo[];
|
|
1920
|
+
fundMngLoanApplayResult?: FundMngLoanApplyResult;
|
|
1240
1921
|
static names(): {
|
|
1241
1922
|
[key: string]: string;
|
|
1242
1923
|
};
|
|
@@ -1247,12 +1928,14 @@ export declare class XNameValuePair extends $tea.Model {
|
|
|
1247
1928
|
[key: string]: any;
|
|
1248
1929
|
});
|
|
1249
1930
|
}
|
|
1250
|
-
export declare class
|
|
1931
|
+
export declare class QueryInnerFundmngmerchantperformanceRequest extends $tea.Model {
|
|
1251
1932
|
authToken?: string;
|
|
1252
1933
|
productInstanceId?: string;
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1934
|
+
tenantId: string;
|
|
1935
|
+
merchantId: string;
|
|
1936
|
+
fundTenantId: string;
|
|
1937
|
+
fundId: string;
|
|
1938
|
+
orderId: string;
|
|
1256
1939
|
static names(): {
|
|
1257
1940
|
[key: string]: string;
|
|
1258
1941
|
};
|
|
@@ -1263,11 +1946,10 @@ export declare class TransferBrokerUserdataRequest extends $tea.Model {
|
|
|
1263
1946
|
[key: string]: any;
|
|
1264
1947
|
});
|
|
1265
1948
|
}
|
|
1266
|
-
export declare class
|
|
1949
|
+
export declare class QueryInnerFundmngmerchantperformanceResponse extends $tea.Model {
|
|
1267
1950
|
reqMsgId?: string;
|
|
1268
1951
|
resultCode?: string;
|
|
1269
1952
|
resultMsg?: string;
|
|
1270
|
-
dataId?: string;
|
|
1271
1953
|
static names(): {
|
|
1272
1954
|
[key: string]: string;
|
|
1273
1955
|
};
|
|
@@ -5607,11 +6289,222 @@ export declare class SubmitInnerKnowledgebaseinfoRequest extends $tea.Model {
|
|
|
5607
6289
|
authToken?: string;
|
|
5608
6290
|
productInstanceId?: string;
|
|
5609
6291
|
tenantId: string;
|
|
5610
|
-
brandNameSnapshot: string;
|
|
5611
|
-
merchantPhoneSnapshot: string;
|
|
5612
|
-
merchantAppLinkSnapshot?: string;
|
|
5613
|
-
hasLogo: boolean;
|
|
5614
|
-
fileInfo?: FileInfo;
|
|
6292
|
+
brandNameSnapshot: string;
|
|
6293
|
+
merchantPhoneSnapshot: string;
|
|
6294
|
+
merchantAppLinkSnapshot?: string;
|
|
6295
|
+
hasLogo: boolean;
|
|
6296
|
+
fileInfo?: FileInfo;
|
|
6297
|
+
static names(): {
|
|
6298
|
+
[key: string]: string;
|
|
6299
|
+
};
|
|
6300
|
+
static types(): {
|
|
6301
|
+
[key: string]: any;
|
|
6302
|
+
};
|
|
6303
|
+
constructor(map?: {
|
|
6304
|
+
[key: string]: any;
|
|
6305
|
+
});
|
|
6306
|
+
}
|
|
6307
|
+
export declare class SubmitInnerKnowledgebaseinfoResponse extends $tea.Model {
|
|
6308
|
+
reqMsgId?: string;
|
|
6309
|
+
resultCode?: string;
|
|
6310
|
+
resultMsg?: string;
|
|
6311
|
+
static names(): {
|
|
6312
|
+
[key: string]: string;
|
|
6313
|
+
};
|
|
6314
|
+
static types(): {
|
|
6315
|
+
[key: string]: any;
|
|
6316
|
+
};
|
|
6317
|
+
constructor(map?: {
|
|
6318
|
+
[key: string]: any;
|
|
6319
|
+
});
|
|
6320
|
+
}
|
|
6321
|
+
export declare class QueryInnerKnowledgebaseinfoRequest extends $tea.Model {
|
|
6322
|
+
authToken?: string;
|
|
6323
|
+
productInstanceId?: string;
|
|
6324
|
+
tenantId: string;
|
|
6325
|
+
static names(): {
|
|
6326
|
+
[key: string]: string;
|
|
6327
|
+
};
|
|
6328
|
+
static types(): {
|
|
6329
|
+
[key: string]: any;
|
|
6330
|
+
};
|
|
6331
|
+
constructor(map?: {
|
|
6332
|
+
[key: string]: any;
|
|
6333
|
+
});
|
|
6334
|
+
}
|
|
6335
|
+
export declare class QueryInnerKnowledgebaseinfoResponse extends $tea.Model {
|
|
6336
|
+
reqMsgId?: string;
|
|
6337
|
+
resultCode?: string;
|
|
6338
|
+
resultMsg?: string;
|
|
6339
|
+
merchantBaseInfo?: MerchantBaseInfo;
|
|
6340
|
+
static names(): {
|
|
6341
|
+
[key: string]: string;
|
|
6342
|
+
};
|
|
6343
|
+
static types(): {
|
|
6344
|
+
[key: string]: any;
|
|
6345
|
+
};
|
|
6346
|
+
constructor(map?: {
|
|
6347
|
+
[key: string]: any;
|
|
6348
|
+
});
|
|
6349
|
+
}
|
|
6350
|
+
export declare class SubmitInnerKnowledgecategoryRequest extends $tea.Model {
|
|
6351
|
+
authToken?: string;
|
|
6352
|
+
productInstanceId?: string;
|
|
6353
|
+
tenantId: string;
|
|
6354
|
+
static names(): {
|
|
6355
|
+
[key: string]: string;
|
|
6356
|
+
};
|
|
6357
|
+
static types(): {
|
|
6358
|
+
[key: string]: any;
|
|
6359
|
+
};
|
|
6360
|
+
constructor(map?: {
|
|
6361
|
+
[key: string]: any;
|
|
6362
|
+
});
|
|
6363
|
+
}
|
|
6364
|
+
export declare class SubmitInnerKnowledgecategoryResponse extends $tea.Model {
|
|
6365
|
+
reqMsgId?: string;
|
|
6366
|
+
resultCode?: string;
|
|
6367
|
+
resultMsg?: string;
|
|
6368
|
+
static names(): {
|
|
6369
|
+
[key: string]: string;
|
|
6370
|
+
};
|
|
6371
|
+
static types(): {
|
|
6372
|
+
[key: string]: any;
|
|
6373
|
+
};
|
|
6374
|
+
constructor(map?: {
|
|
6375
|
+
[key: string]: any;
|
|
6376
|
+
});
|
|
6377
|
+
}
|
|
6378
|
+
export declare class QueryInnerKnowledgecategorylibraryRequest extends $tea.Model {
|
|
6379
|
+
authToken?: string;
|
|
6380
|
+
productInstanceId?: string;
|
|
6381
|
+
tenantId: string;
|
|
6382
|
+
static names(): {
|
|
6383
|
+
[key: string]: string;
|
|
6384
|
+
};
|
|
6385
|
+
static types(): {
|
|
6386
|
+
[key: string]: any;
|
|
6387
|
+
};
|
|
6388
|
+
constructor(map?: {
|
|
6389
|
+
[key: string]: any;
|
|
6390
|
+
});
|
|
6391
|
+
}
|
|
6392
|
+
export declare class QueryInnerKnowledgecategorylibraryResponse extends $tea.Model {
|
|
6393
|
+
reqMsgId?: string;
|
|
6394
|
+
resultCode?: string;
|
|
6395
|
+
resultMsg?: string;
|
|
6396
|
+
libraryId?: string;
|
|
6397
|
+
libraryName?: string;
|
|
6398
|
+
categoryId?: string;
|
|
6399
|
+
total?: number;
|
|
6400
|
+
static names(): {
|
|
6401
|
+
[key: string]: string;
|
|
6402
|
+
};
|
|
6403
|
+
static types(): {
|
|
6404
|
+
[key: string]: any;
|
|
6405
|
+
};
|
|
6406
|
+
constructor(map?: {
|
|
6407
|
+
[key: string]: any;
|
|
6408
|
+
});
|
|
6409
|
+
}
|
|
6410
|
+
export declare class CreateInnerKnowledgecategoryRequest extends $tea.Model {
|
|
6411
|
+
authToken?: string;
|
|
6412
|
+
productInstanceId?: string;
|
|
6413
|
+
tenantId: string;
|
|
6414
|
+
fileInfo: FileInfo;
|
|
6415
|
+
static names(): {
|
|
6416
|
+
[key: string]: string;
|
|
6417
|
+
};
|
|
6418
|
+
static types(): {
|
|
6419
|
+
[key: string]: any;
|
|
6420
|
+
};
|
|
6421
|
+
constructor(map?: {
|
|
6422
|
+
[key: string]: any;
|
|
6423
|
+
});
|
|
6424
|
+
}
|
|
6425
|
+
export declare class CreateInnerKnowledgecategoryResponse extends $tea.Model {
|
|
6426
|
+
reqMsgId?: string;
|
|
6427
|
+
resultCode?: string;
|
|
6428
|
+
resultMsg?: string;
|
|
6429
|
+
static names(): {
|
|
6430
|
+
[key: string]: string;
|
|
6431
|
+
};
|
|
6432
|
+
static types(): {
|
|
6433
|
+
[key: string]: any;
|
|
6434
|
+
};
|
|
6435
|
+
constructor(map?: {
|
|
6436
|
+
[key: string]: any;
|
|
6437
|
+
});
|
|
6438
|
+
}
|
|
6439
|
+
export declare class BatchdeleteInnerKnowledgecategoryRequest extends $tea.Model {
|
|
6440
|
+
authToken?: string;
|
|
6441
|
+
productInstanceId?: string;
|
|
6442
|
+
tenantId: string;
|
|
6443
|
+
ids: number[];
|
|
6444
|
+
static names(): {
|
|
6445
|
+
[key: string]: string;
|
|
6446
|
+
};
|
|
6447
|
+
static types(): {
|
|
6448
|
+
[key: string]: any;
|
|
6449
|
+
};
|
|
6450
|
+
constructor(map?: {
|
|
6451
|
+
[key: string]: any;
|
|
6452
|
+
});
|
|
6453
|
+
}
|
|
6454
|
+
export declare class BatchdeleteInnerKnowledgecategoryResponse extends $tea.Model {
|
|
6455
|
+
reqMsgId?: string;
|
|
6456
|
+
resultCode?: string;
|
|
6457
|
+
resultMsg?: string;
|
|
6458
|
+
static names(): {
|
|
6459
|
+
[key: string]: string;
|
|
6460
|
+
};
|
|
6461
|
+
static types(): {
|
|
6462
|
+
[key: string]: any;
|
|
6463
|
+
};
|
|
6464
|
+
constructor(map?: {
|
|
6465
|
+
[key: string]: any;
|
|
6466
|
+
});
|
|
6467
|
+
}
|
|
6468
|
+
export declare class OperateInnerKnowledgecategoryRequest extends $tea.Model {
|
|
6469
|
+
authToken?: string;
|
|
6470
|
+
productInstanceId?: string;
|
|
6471
|
+
tenantId: string;
|
|
6472
|
+
ids: number[];
|
|
6473
|
+
operation: string;
|
|
6474
|
+
static names(): {
|
|
6475
|
+
[key: string]: string;
|
|
6476
|
+
};
|
|
6477
|
+
static types(): {
|
|
6478
|
+
[key: string]: any;
|
|
6479
|
+
};
|
|
6480
|
+
constructor(map?: {
|
|
6481
|
+
[key: string]: any;
|
|
6482
|
+
});
|
|
6483
|
+
}
|
|
6484
|
+
export declare class OperateInnerKnowledgecategoryResponse extends $tea.Model {
|
|
6485
|
+
reqMsgId?: string;
|
|
6486
|
+
resultCode?: string;
|
|
6487
|
+
resultMsg?: string;
|
|
6488
|
+
static names(): {
|
|
6489
|
+
[key: string]: string;
|
|
6490
|
+
};
|
|
6491
|
+
static types(): {
|
|
6492
|
+
[key: string]: any;
|
|
6493
|
+
};
|
|
6494
|
+
constructor(map?: {
|
|
6495
|
+
[key: string]: any;
|
|
6496
|
+
});
|
|
6497
|
+
}
|
|
6498
|
+
export declare class AddInnerKnowledgecategoryRequest extends $tea.Model {
|
|
6499
|
+
authToken?: string;
|
|
6500
|
+
productInstanceId?: string;
|
|
6501
|
+
tenantId: string;
|
|
6502
|
+
type: string;
|
|
6503
|
+
question: string;
|
|
6504
|
+
answer: string;
|
|
6505
|
+
hasOrder?: boolean;
|
|
6506
|
+
hasAppLink?: boolean;
|
|
6507
|
+
hasManual?: boolean;
|
|
5615
6508
|
static names(): {
|
|
5616
6509
|
[key: string]: string;
|
|
5617
6510
|
};
|
|
@@ -5622,7 +6515,7 @@ export declare class SubmitInnerKnowledgebaseinfoRequest extends $tea.Model {
|
|
|
5622
6515
|
[key: string]: any;
|
|
5623
6516
|
});
|
|
5624
6517
|
}
|
|
5625
|
-
export declare class
|
|
6518
|
+
export declare class AddInnerKnowledgecategoryResponse extends $tea.Model {
|
|
5626
6519
|
reqMsgId?: string;
|
|
5627
6520
|
resultCode?: string;
|
|
5628
6521
|
resultMsg?: string;
|
|
@@ -5636,10 +6529,14 @@ export declare class SubmitInnerKnowledgebaseinfoResponse extends $tea.Model {
|
|
|
5636
6529
|
[key: string]: any;
|
|
5637
6530
|
});
|
|
5638
6531
|
}
|
|
5639
|
-
export declare class
|
|
6532
|
+
export declare class PagequeryInnerKnowledgecategoryRequest extends $tea.Model {
|
|
5640
6533
|
authToken?: string;
|
|
5641
6534
|
productInstanceId?: string;
|
|
5642
6535
|
tenantId: string;
|
|
6536
|
+
type: string;
|
|
6537
|
+
question?: string;
|
|
6538
|
+
status?: string;
|
|
6539
|
+
pageInfo: PageQuery;
|
|
5643
6540
|
static names(): {
|
|
5644
6541
|
[key: string]: string;
|
|
5645
6542
|
};
|
|
@@ -5650,11 +6547,12 @@ export declare class QueryInnerKnowledgebaseinfoRequest extends $tea.Model {
|
|
|
5650
6547
|
[key: string]: any;
|
|
5651
6548
|
});
|
|
5652
6549
|
}
|
|
5653
|
-
export declare class
|
|
6550
|
+
export declare class PagequeryInnerKnowledgecategoryResponse extends $tea.Model {
|
|
5654
6551
|
reqMsgId?: string;
|
|
5655
6552
|
resultCode?: string;
|
|
5656
6553
|
resultMsg?: string;
|
|
5657
|
-
|
|
6554
|
+
total?: number;
|
|
6555
|
+
data?: KnowledgeInfo[];
|
|
5658
6556
|
static names(): {
|
|
5659
6557
|
[key: string]: string;
|
|
5660
6558
|
};
|
|
@@ -5665,10 +6563,17 @@ export declare class QueryInnerKnowledgebaseinfoResponse extends $tea.Model {
|
|
|
5665
6563
|
[key: string]: any;
|
|
5666
6564
|
});
|
|
5667
6565
|
}
|
|
5668
|
-
export declare class
|
|
6566
|
+
export declare class UpdateInnerKnowledgecategoryRequest extends $tea.Model {
|
|
5669
6567
|
authToken?: string;
|
|
5670
6568
|
productInstanceId?: string;
|
|
5671
6569
|
tenantId: string;
|
|
6570
|
+
id: number;
|
|
6571
|
+
type: string;
|
|
6572
|
+
question: string;
|
|
6573
|
+
answer: string;
|
|
6574
|
+
hasOrder?: boolean;
|
|
6575
|
+
hasAppLink?: boolean;
|
|
6576
|
+
hasManual?: boolean;
|
|
5672
6577
|
static names(): {
|
|
5673
6578
|
[key: string]: string;
|
|
5674
6579
|
};
|
|
@@ -5679,7 +6584,7 @@ export declare class SubmitInnerKnowledgecategoryRequest extends $tea.Model {
|
|
|
5679
6584
|
[key: string]: any;
|
|
5680
6585
|
});
|
|
5681
6586
|
}
|
|
5682
|
-
export declare class
|
|
6587
|
+
export declare class UpdateInnerKnowledgecategoryResponse extends $tea.Model {
|
|
5683
6588
|
reqMsgId?: string;
|
|
5684
6589
|
resultCode?: string;
|
|
5685
6590
|
resultMsg?: string;
|
|
@@ -5693,10 +6598,14 @@ export declare class SubmitInnerKnowledgecategoryResponse extends $tea.Model {
|
|
|
5693
6598
|
[key: string]: any;
|
|
5694
6599
|
});
|
|
5695
6600
|
}
|
|
5696
|
-
export declare class
|
|
6601
|
+
export declare class CreateInnerSaleschannelRequest extends $tea.Model {
|
|
5697
6602
|
authToken?: string;
|
|
5698
6603
|
productInstanceId?: string;
|
|
5699
6604
|
tenantId: string;
|
|
6605
|
+
deliveryType: string;
|
|
6606
|
+
parentChannelCode?: string;
|
|
6607
|
+
channelName: string;
|
|
6608
|
+
operator?: string;
|
|
5700
6609
|
static names(): {
|
|
5701
6610
|
[key: string]: string;
|
|
5702
6611
|
};
|
|
@@ -5707,14 +6616,11 @@ export declare class QueryInnerKnowledgecategorylibraryRequest extends $tea.Mode
|
|
|
5707
6616
|
[key: string]: any;
|
|
5708
6617
|
});
|
|
5709
6618
|
}
|
|
5710
|
-
export declare class
|
|
6619
|
+
export declare class CreateInnerSaleschannelResponse extends $tea.Model {
|
|
5711
6620
|
reqMsgId?: string;
|
|
5712
6621
|
resultCode?: string;
|
|
5713
6622
|
resultMsg?: string;
|
|
5714
|
-
|
|
5715
|
-
libraryName?: string;
|
|
5716
|
-
categoryId?: string;
|
|
5717
|
-
total?: number;
|
|
6623
|
+
childChannel?: SalesChannel;
|
|
5718
6624
|
static names(): {
|
|
5719
6625
|
[key: string]: string;
|
|
5720
6626
|
};
|
|
@@ -5725,11 +6631,10 @@ export declare class QueryInnerKnowledgecategorylibraryResponse extends $tea.Mod
|
|
|
5725
6631
|
[key: string]: any;
|
|
5726
6632
|
});
|
|
5727
6633
|
}
|
|
5728
|
-
export declare class
|
|
6634
|
+
export declare class QueryInnerSaleschannelRequest extends $tea.Model {
|
|
5729
6635
|
authToken?: string;
|
|
5730
6636
|
productInstanceId?: string;
|
|
5731
6637
|
tenantId: string;
|
|
5732
|
-
fileInfo: FileInfo;
|
|
5733
6638
|
static names(): {
|
|
5734
6639
|
[key: string]: string;
|
|
5735
6640
|
};
|
|
@@ -5740,10 +6645,15 @@ export declare class CreateInnerKnowledgecategoryRequest extends $tea.Model {
|
|
|
5740
6645
|
[key: string]: any;
|
|
5741
6646
|
});
|
|
5742
6647
|
}
|
|
5743
|
-
export declare class
|
|
6648
|
+
export declare class QueryInnerSaleschannelResponse extends $tea.Model {
|
|
5744
6649
|
reqMsgId?: string;
|
|
5745
6650
|
resultCode?: string;
|
|
5746
6651
|
resultMsg?: string;
|
|
6652
|
+
channelCode?: string;
|
|
6653
|
+
channelName?: string;
|
|
6654
|
+
channelLink?: string;
|
|
6655
|
+
channelLevel?: number;
|
|
6656
|
+
childChannelList?: string;
|
|
5747
6657
|
static names(): {
|
|
5748
6658
|
[key: string]: string;
|
|
5749
6659
|
};
|
|
@@ -5754,11 +6664,14 @@ export declare class CreateInnerKnowledgecategoryResponse extends $tea.Model {
|
|
|
5754
6664
|
[key: string]: any;
|
|
5755
6665
|
});
|
|
5756
6666
|
}
|
|
5757
|
-
export declare class
|
|
6667
|
+
export declare class UpdateInnerSaleschannelRequest extends $tea.Model {
|
|
5758
6668
|
authToken?: string;
|
|
5759
6669
|
productInstanceId?: string;
|
|
5760
6670
|
tenantId: string;
|
|
5761
|
-
|
|
6671
|
+
channelCode: string;
|
|
6672
|
+
channelName?: string;
|
|
6673
|
+
channelLink?: string;
|
|
6674
|
+
operator?: string;
|
|
5762
6675
|
static names(): {
|
|
5763
6676
|
[key: string]: string;
|
|
5764
6677
|
};
|
|
@@ -5769,7 +6682,7 @@ export declare class BatchdeleteInnerKnowledgecategoryRequest extends $tea.Model
|
|
|
5769
6682
|
[key: string]: any;
|
|
5770
6683
|
});
|
|
5771
6684
|
}
|
|
5772
|
-
export declare class
|
|
6685
|
+
export declare class UpdateInnerSaleschannelResponse extends $tea.Model {
|
|
5773
6686
|
reqMsgId?: string;
|
|
5774
6687
|
resultCode?: string;
|
|
5775
6688
|
resultMsg?: string;
|
|
@@ -5783,12 +6696,12 @@ export declare class BatchdeleteInnerKnowledgecategoryResponse extends $tea.Mode
|
|
|
5783
6696
|
[key: string]: any;
|
|
5784
6697
|
});
|
|
5785
6698
|
}
|
|
5786
|
-
export declare class
|
|
6699
|
+
export declare class DeleteInnerSaleschannelRequest extends $tea.Model {
|
|
5787
6700
|
authToken?: string;
|
|
5788
6701
|
productInstanceId?: string;
|
|
5789
6702
|
tenantId: string;
|
|
5790
|
-
|
|
5791
|
-
|
|
6703
|
+
channelCode: string;
|
|
6704
|
+
operator?: string;
|
|
5792
6705
|
static names(): {
|
|
5793
6706
|
[key: string]: string;
|
|
5794
6707
|
};
|
|
@@ -5799,7 +6712,7 @@ export declare class OperateInnerKnowledgecategoryRequest extends $tea.Model {
|
|
|
5799
6712
|
[key: string]: any;
|
|
5800
6713
|
});
|
|
5801
6714
|
}
|
|
5802
|
-
export declare class
|
|
6715
|
+
export declare class DeleteInnerSaleschannelResponse extends $tea.Model {
|
|
5803
6716
|
reqMsgId?: string;
|
|
5804
6717
|
resultCode?: string;
|
|
5805
6718
|
resultMsg?: string;
|
|
@@ -5813,16 +6726,11 @@ export declare class OperateInnerKnowledgecategoryResponse extends $tea.Model {
|
|
|
5813
6726
|
[key: string]: any;
|
|
5814
6727
|
});
|
|
5815
6728
|
}
|
|
5816
|
-
export declare class
|
|
6729
|
+
export declare class BatchcreateInnerTemplatetextareaRequest extends $tea.Model {
|
|
5817
6730
|
authToken?: string;
|
|
5818
6731
|
productInstanceId?: string;
|
|
5819
6732
|
tenantId: string;
|
|
5820
|
-
|
|
5821
|
-
question: string;
|
|
5822
|
-
answer: string;
|
|
5823
|
-
hasOrder?: boolean;
|
|
5824
|
-
hasAppLink?: boolean;
|
|
5825
|
-
hasManual?: boolean;
|
|
6733
|
+
templatetextareaComponent: TemplateTextAreaComponent[];
|
|
5826
6734
|
static names(): {
|
|
5827
6735
|
[key: string]: string;
|
|
5828
6736
|
};
|
|
@@ -5833,10 +6741,11 @@ export declare class AddInnerKnowledgecategoryRequest extends $tea.Model {
|
|
|
5833
6741
|
[key: string]: any;
|
|
5834
6742
|
});
|
|
5835
6743
|
}
|
|
5836
|
-
export declare class
|
|
6744
|
+
export declare class BatchcreateInnerTemplatetextareaResponse extends $tea.Model {
|
|
5837
6745
|
reqMsgId?: string;
|
|
5838
6746
|
resultCode?: string;
|
|
5839
6747
|
resultMsg?: string;
|
|
6748
|
+
data?: string;
|
|
5840
6749
|
static names(): {
|
|
5841
6750
|
[key: string]: string;
|
|
5842
6751
|
};
|
|
@@ -5847,14 +6756,17 @@ export declare class AddInnerKnowledgecategoryResponse extends $tea.Model {
|
|
|
5847
6756
|
[key: string]: any;
|
|
5848
6757
|
});
|
|
5849
6758
|
}
|
|
5850
|
-
export declare class
|
|
6759
|
+
export declare class PagequeryInnerAgreementterminateRequest extends $tea.Model {
|
|
5851
6760
|
authToken?: string;
|
|
5852
6761
|
productInstanceId?: string;
|
|
5853
|
-
tenantId: string;
|
|
5854
|
-
type: string;
|
|
5855
|
-
question?: string;
|
|
5856
|
-
status?: string;
|
|
5857
6762
|
pageInfo: PageQuery;
|
|
6763
|
+
tenantId: string;
|
|
6764
|
+
orderId?: string;
|
|
6765
|
+
merchantHandleDurationType?: string;
|
|
6766
|
+
terminateApplyId?: string;
|
|
6767
|
+
gmtTerminateApplyStartTime?: string;
|
|
6768
|
+
gmtTerminateApplyEndTime?: string;
|
|
6769
|
+
handleStatus?: string;
|
|
5858
6770
|
static names(): {
|
|
5859
6771
|
[key: string]: string;
|
|
5860
6772
|
};
|
|
@@ -5865,12 +6777,12 @@ export declare class PagequeryInnerKnowledgecategoryRequest extends $tea.Model {
|
|
|
5865
6777
|
[key: string]: any;
|
|
5866
6778
|
});
|
|
5867
6779
|
}
|
|
5868
|
-
export declare class
|
|
6780
|
+
export declare class PagequeryInnerAgreementterminateResponse extends $tea.Model {
|
|
5869
6781
|
reqMsgId?: string;
|
|
5870
6782
|
resultCode?: string;
|
|
5871
6783
|
resultMsg?: string;
|
|
5872
|
-
|
|
5873
|
-
|
|
6784
|
+
totalCount?: number;
|
|
6785
|
+
terminateApplyList?: AgreementTerminateApplyInfo[];
|
|
5874
6786
|
static names(): {
|
|
5875
6787
|
[key: string]: string;
|
|
5876
6788
|
};
|
|
@@ -5881,17 +6793,12 @@ export declare class PagequeryInnerKnowledgecategoryResponse extends $tea.Model
|
|
|
5881
6793
|
[key: string]: any;
|
|
5882
6794
|
});
|
|
5883
6795
|
}
|
|
5884
|
-
export declare class
|
|
6796
|
+
export declare class DetailInnerAgreementterminateRequest extends $tea.Model {
|
|
5885
6797
|
authToken?: string;
|
|
5886
6798
|
productInstanceId?: string;
|
|
5887
6799
|
tenantId: string;
|
|
5888
|
-
|
|
5889
|
-
|
|
5890
|
-
question: string;
|
|
5891
|
-
answer: string;
|
|
5892
|
-
hasOrder?: boolean;
|
|
5893
|
-
hasAppLink?: boolean;
|
|
5894
|
-
hasManual?: boolean;
|
|
6800
|
+
orderId: string;
|
|
6801
|
+
terminateApplyId: string;
|
|
5895
6802
|
static names(): {
|
|
5896
6803
|
[key: string]: string;
|
|
5897
6804
|
};
|
|
@@ -5902,10 +6809,20 @@ export declare class UpdateInnerKnowledgecategoryRequest extends $tea.Model {
|
|
|
5902
6809
|
[key: string]: any;
|
|
5903
6810
|
});
|
|
5904
6811
|
}
|
|
5905
|
-
export declare class
|
|
6812
|
+
export declare class DetailInnerAgreementterminateResponse extends $tea.Model {
|
|
5906
6813
|
reqMsgId?: string;
|
|
5907
6814
|
resultCode?: string;
|
|
5908
6815
|
resultMsg?: string;
|
|
6816
|
+
orderId?: string;
|
|
6817
|
+
terminateApplyId?: string;
|
|
6818
|
+
orderGmtCreate?: string;
|
|
6819
|
+
gmtTerminateApply?: string;
|
|
6820
|
+
terminateStatus?: string;
|
|
6821
|
+
merchantSupportEvidenceList?: MerchantSupportEvidence[];
|
|
6822
|
+
terminateApplyEvidenceList?: TerminateApplyEvidence[];
|
|
6823
|
+
externalAgreementNo?: string;
|
|
6824
|
+
agreementNo?: string;
|
|
6825
|
+
handleStatus?: string;
|
|
5909
6826
|
static names(): {
|
|
5910
6827
|
[key: string]: string;
|
|
5911
6828
|
};
|
|
@@ -5916,14 +6833,17 @@ export declare class UpdateInnerKnowledgecategoryResponse extends $tea.Model {
|
|
|
5916
6833
|
[key: string]: any;
|
|
5917
6834
|
});
|
|
5918
6835
|
}
|
|
5919
|
-
export declare class
|
|
6836
|
+
export declare class OperateInnerAgreementterminateRequest extends $tea.Model {
|
|
5920
6837
|
authToken?: string;
|
|
5921
6838
|
productInstanceId?: string;
|
|
5922
6839
|
tenantId: string;
|
|
5923
|
-
|
|
5924
|
-
|
|
5925
|
-
|
|
5926
|
-
|
|
6840
|
+
orderId: string;
|
|
6841
|
+
terminateApplyId: string;
|
|
6842
|
+
operateStatus: string;
|
|
6843
|
+
agreementNo?: string;
|
|
6844
|
+
externalAgreementNo?: string;
|
|
6845
|
+
merchantRefuseReason?: string;
|
|
6846
|
+
merchantRefuseEvidences?: string[];
|
|
5927
6847
|
static names(): {
|
|
5928
6848
|
[key: string]: string;
|
|
5929
6849
|
};
|
|
@@ -5934,11 +6854,10 @@ export declare class CreateInnerSaleschannelRequest extends $tea.Model {
|
|
|
5934
6854
|
[key: string]: any;
|
|
5935
6855
|
});
|
|
5936
6856
|
}
|
|
5937
|
-
export declare class
|
|
6857
|
+
export declare class OperateInnerAgreementterminateResponse extends $tea.Model {
|
|
5938
6858
|
reqMsgId?: string;
|
|
5939
6859
|
resultCode?: string;
|
|
5940
6860
|
resultMsg?: string;
|
|
5941
|
-
childChannel?: SalesChannel;
|
|
5942
6861
|
static names(): {
|
|
5943
6862
|
[key: string]: string;
|
|
5944
6863
|
};
|
|
@@ -5949,10 +6868,16 @@ export declare class CreateInnerSaleschannelResponse extends $tea.Model {
|
|
|
5949
6868
|
[key: string]: any;
|
|
5950
6869
|
});
|
|
5951
6870
|
}
|
|
5952
|
-
export declare class
|
|
6871
|
+
export declare class ChargeInnerAgreementterminateevidenceRequest extends $tea.Model {
|
|
5953
6872
|
authToken?: string;
|
|
5954
6873
|
productInstanceId?: string;
|
|
5955
6874
|
tenantId: string;
|
|
6875
|
+
orderId: string;
|
|
6876
|
+
terminateApplyId: string;
|
|
6877
|
+
agreementNo?: string;
|
|
6878
|
+
externalAgreementNo?: string;
|
|
6879
|
+
merchantRefuseReason?: string;
|
|
6880
|
+
merchantRefuseEvidences?: string[];
|
|
5956
6881
|
static names(): {
|
|
5957
6882
|
[key: string]: string;
|
|
5958
6883
|
};
|
|
@@ -5963,15 +6888,10 @@ export declare class QueryInnerSaleschannelRequest extends $tea.Model {
|
|
|
5963
6888
|
[key: string]: any;
|
|
5964
6889
|
});
|
|
5965
6890
|
}
|
|
5966
|
-
export declare class
|
|
6891
|
+
export declare class ChargeInnerAgreementterminateevidenceResponse extends $tea.Model {
|
|
5967
6892
|
reqMsgId?: string;
|
|
5968
6893
|
resultCode?: string;
|
|
5969
6894
|
resultMsg?: string;
|
|
5970
|
-
channelCode?: string;
|
|
5971
|
-
channelName?: string;
|
|
5972
|
-
channelLink?: string;
|
|
5973
|
-
channelLevel?: number;
|
|
5974
|
-
childChannelList?: string;
|
|
5975
6895
|
static names(): {
|
|
5976
6896
|
[key: string]: string;
|
|
5977
6897
|
};
|
|
@@ -5982,14 +6902,12 @@ export declare class QueryInnerSaleschannelResponse extends $tea.Model {
|
|
|
5982
6902
|
[key: string]: any;
|
|
5983
6903
|
});
|
|
5984
6904
|
}
|
|
5985
|
-
export declare class
|
|
6905
|
+
export declare class OperateInnerAgreementterminatezfbdirectRequest extends $tea.Model {
|
|
5986
6906
|
authToken?: string;
|
|
5987
6907
|
productInstanceId?: string;
|
|
5988
|
-
|
|
5989
|
-
|
|
5990
|
-
|
|
5991
|
-
channelLink?: string;
|
|
5992
|
-
operator?: string;
|
|
6908
|
+
agreementNo?: string;
|
|
6909
|
+
externalAgreementNo: string;
|
|
6910
|
+
userId?: string;
|
|
5993
6911
|
static names(): {
|
|
5994
6912
|
[key: string]: string;
|
|
5995
6913
|
};
|
|
@@ -6000,10 +6918,15 @@ export declare class UpdateInnerSaleschannelRequest extends $tea.Model {
|
|
|
6000
6918
|
[key: string]: any;
|
|
6001
6919
|
});
|
|
6002
6920
|
}
|
|
6003
|
-
export declare class
|
|
6921
|
+
export declare class OperateInnerAgreementterminatezfbdirectResponse extends $tea.Model {
|
|
6004
6922
|
reqMsgId?: string;
|
|
6005
6923
|
resultCode?: string;
|
|
6006
6924
|
resultMsg?: string;
|
|
6925
|
+
zfbDirectTerminate?: boolean;
|
|
6926
|
+
atoHandle?: boolean;
|
|
6927
|
+
toastText?: string;
|
|
6928
|
+
jumpUrl?: string;
|
|
6929
|
+
jumpUrlText?: string;
|
|
6007
6930
|
static names(): {
|
|
6008
6931
|
[key: string]: string;
|
|
6009
6932
|
};
|
|
@@ -6014,12 +6937,10 @@ export declare class UpdateInnerSaleschannelResponse extends $tea.Model {
|
|
|
6014
6937
|
[key: string]: any;
|
|
6015
6938
|
});
|
|
6016
6939
|
}
|
|
6017
|
-
export declare class
|
|
6940
|
+
export declare class QueryInnerAgreementterminateconfigRequest extends $tea.Model {
|
|
6018
6941
|
authToken?: string;
|
|
6019
6942
|
productInstanceId?: string;
|
|
6020
6943
|
tenantId: string;
|
|
6021
|
-
channelCode: string;
|
|
6022
|
-
operator?: string;
|
|
6023
6944
|
static names(): {
|
|
6024
6945
|
[key: string]: string;
|
|
6025
6946
|
};
|
|
@@ -6030,10 +6951,12 @@ export declare class DeleteInnerSaleschannelRequest extends $tea.Model {
|
|
|
6030
6951
|
[key: string]: any;
|
|
6031
6952
|
});
|
|
6032
6953
|
}
|
|
6033
|
-
export declare class
|
|
6954
|
+
export declare class QueryInnerAgreementterminateconfigResponse extends $tea.Model {
|
|
6034
6955
|
reqMsgId?: string;
|
|
6035
6956
|
resultCode?: string;
|
|
6036
6957
|
resultMsg?: string;
|
|
6958
|
+
timeoutHour?: string;
|
|
6959
|
+
timeoutDay?: string;
|
|
6037
6960
|
static names(): {
|
|
6038
6961
|
[key: string]: string;
|
|
6039
6962
|
};
|
|
@@ -6044,11 +6967,15 @@ export declare class DeleteInnerSaleschannelResponse extends $tea.Model {
|
|
|
6044
6967
|
[key: string]: any;
|
|
6045
6968
|
});
|
|
6046
6969
|
}
|
|
6047
|
-
export declare class
|
|
6970
|
+
export declare class CountInnerAgreementterminateRequest extends $tea.Model {
|
|
6048
6971
|
authToken?: string;
|
|
6049
6972
|
productInstanceId?: string;
|
|
6050
6973
|
tenantId: string;
|
|
6051
|
-
|
|
6974
|
+
merchantHandleDurationType?: string;
|
|
6975
|
+
orderId?: string;
|
|
6976
|
+
terminateApplyId?: string;
|
|
6977
|
+
gmtTerminateApplyStartTime?: string;
|
|
6978
|
+
gmtTerminateApplyEndTime?: string;
|
|
6052
6979
|
static names(): {
|
|
6053
6980
|
[key: string]: string;
|
|
6054
6981
|
};
|
|
@@ -6059,11 +6986,14 @@ export declare class BatchcreateInnerTemplatetextareaRequest extends $tea.Model
|
|
|
6059
6986
|
[key: string]: any;
|
|
6060
6987
|
});
|
|
6061
6988
|
}
|
|
6062
|
-
export declare class
|
|
6989
|
+
export declare class CountInnerAgreementterminateResponse extends $tea.Model {
|
|
6063
6990
|
reqMsgId?: string;
|
|
6064
6991
|
resultCode?: string;
|
|
6065
6992
|
resultMsg?: string;
|
|
6066
|
-
|
|
6993
|
+
unHandleStatusNum?: number;
|
|
6994
|
+
handingStatusNum?: number;
|
|
6995
|
+
finishedStatusNum?: number;
|
|
6996
|
+
timeoutStatusNum?: number;
|
|
6067
6997
|
static names(): {
|
|
6068
6998
|
[key: string]: string;
|
|
6069
6999
|
};
|
|
@@ -6452,6 +7382,7 @@ export declare class QueryRiskRequest extends $tea.Model {
|
|
|
6452
7382
|
deliveryDetail?: DeliveryDetail;
|
|
6453
7383
|
industry?: string;
|
|
6454
7384
|
modelVersion?: string;
|
|
7385
|
+
orderId?: string;
|
|
6455
7386
|
static names(): {
|
|
6456
7387
|
[key: string]: string;
|
|
6457
7388
|
};
|
|
@@ -8203,6 +9134,174 @@ export default class Client {
|
|
|
8203
9134
|
transferBrokerUserdataEx(request: TransferBrokerUserdataRequest, headers: {
|
|
8204
9135
|
[key: string]: string;
|
|
8205
9136
|
}, runtime: $Util.RuntimeOptions): Promise<TransferBrokerUserdataResponse>;
|
|
9137
|
+
/**
|
|
9138
|
+
* Description: 资方管理系统demo
|
|
9139
|
+
* Summary: 资方管理系统demo
|
|
9140
|
+
*/
|
|
9141
|
+
queryInnerFundmngdemo(request: QueryInnerFundmngdemoRequest): Promise<QueryInnerFundmngdemoResponse>;
|
|
9142
|
+
/**
|
|
9143
|
+
* Description: 资方管理系统demo
|
|
9144
|
+
* Summary: 资方管理系统demo
|
|
9145
|
+
*/
|
|
9146
|
+
queryInnerFundmngdemoEx(request: QueryInnerFundmngdemoRequest, headers: {
|
|
9147
|
+
[key: string]: string;
|
|
9148
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerFundmngdemoResponse>;
|
|
9149
|
+
/**
|
|
9150
|
+
* Description: 资方管理系统融资订单列表
|
|
9151
|
+
* Summary: 资方管理系统融资订单列表
|
|
9152
|
+
*/
|
|
9153
|
+
pagequeryInnerFundmngfinanceorder(request: PagequeryInnerFundmngfinanceorderRequest): Promise<PagequeryInnerFundmngfinanceorderResponse>;
|
|
9154
|
+
/**
|
|
9155
|
+
* Description: 资方管理系统融资订单列表
|
|
9156
|
+
* Summary: 资方管理系统融资订单列表
|
|
9157
|
+
*/
|
|
9158
|
+
pagequeryInnerFundmngfinanceorderEx(request: PagequeryInnerFundmngfinanceorderRequest, headers: {
|
|
9159
|
+
[key: string]: string;
|
|
9160
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerFundmngfinanceorderResponse>;
|
|
9161
|
+
/**
|
|
9162
|
+
* Description: 资方免研系分设计-提交数据下载申请
|
|
9163
|
+
* Summary: 资方免研-提交数据下载申请
|
|
9164
|
+
*/
|
|
9165
|
+
submitInnerFundmngdatadownload(request: SubmitInnerFundmngdatadownloadRequest): Promise<SubmitInnerFundmngdatadownloadResponse>;
|
|
9166
|
+
/**
|
|
9167
|
+
* Description: 资方免研系分设计-提交数据下载申请
|
|
9168
|
+
* Summary: 资方免研-提交数据下载申请
|
|
9169
|
+
*/
|
|
9170
|
+
submitInnerFundmngdatadownloadEx(request: SubmitInnerFundmngdatadownloadRequest, headers: {
|
|
9171
|
+
[key: string]: string;
|
|
9172
|
+
}, runtime: $Util.RuntimeOptions): Promise<SubmitInnerFundmngdatadownloadResponse>;
|
|
9173
|
+
/**
|
|
9174
|
+
* Description: 资方免研-查询数据下载列表
|
|
9175
|
+
* Summary: 资方免研-查询数据下载列表
|
|
9176
|
+
*/
|
|
9177
|
+
pagequeryInnerFundmngdatadownload(request: PagequeryInnerFundmngdatadownloadRequest): Promise<PagequeryInnerFundmngdatadownloadResponse>;
|
|
9178
|
+
/**
|
|
9179
|
+
* Description: 资方免研-查询数据下载列表
|
|
9180
|
+
* Summary: 资方免研-查询数据下载列表
|
|
9181
|
+
*/
|
|
9182
|
+
pagequeryInnerFundmngdatadownloadEx(request: PagequeryInnerFundmngdatadownloadRequest, headers: {
|
|
9183
|
+
[key: string]: string;
|
|
9184
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerFundmngdatadownloadResponse>;
|
|
9185
|
+
/**
|
|
9186
|
+
* Description: 资方免研-删除下载任务
|
|
9187
|
+
* Summary: 资方免研-删除下载任务
|
|
9188
|
+
*/
|
|
9189
|
+
deleteInnerFundmngdatadownload(request: DeleteInnerFundmngdatadownloadRequest): Promise<DeleteInnerFundmngdatadownloadResponse>;
|
|
9190
|
+
/**
|
|
9191
|
+
* Description: 资方免研-删除下载任务
|
|
9192
|
+
* Summary: 资方免研-删除下载任务
|
|
9193
|
+
*/
|
|
9194
|
+
deleteInnerFundmngdatadownloadEx(request: DeleteInnerFundmngdatadownloadRequest, headers: {
|
|
9195
|
+
[key: string]: string;
|
|
9196
|
+
}, runtime: $Util.RuntimeOptions): Promise<DeleteInnerFundmngdatadownloadResponse>;
|
|
9197
|
+
/**
|
|
9198
|
+
* Description: 商户付款项目查询
|
|
9199
|
+
* Summary: 商户付款项目查询
|
|
9200
|
+
*/
|
|
9201
|
+
queryInnerFundmngmerchantpayitem(request: QueryInnerFundmngmerchantpayitemRequest): Promise<QueryInnerFundmngmerchantpayitemResponse>;
|
|
9202
|
+
/**
|
|
9203
|
+
* Description: 商户付款项目查询
|
|
9204
|
+
* Summary: 商户付款项目查询
|
|
9205
|
+
*/
|
|
9206
|
+
queryInnerFundmngmerchantpayitemEx(request: QueryInnerFundmngmerchantpayitemRequest, headers: {
|
|
9207
|
+
[key: string]: string;
|
|
9208
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerFundmngmerchantpayitemResponse>;
|
|
9209
|
+
/**
|
|
9210
|
+
* Description: 商户履约承诺创建
|
|
9211
|
+
* Summary: 商户履约承诺创建
|
|
9212
|
+
*/
|
|
9213
|
+
createInnerFundmngmerchantpromise(request: CreateInnerFundmngmerchantpromiseRequest): Promise<CreateInnerFundmngmerchantpromiseResponse>;
|
|
9214
|
+
/**
|
|
9215
|
+
* Description: 商户履约承诺创建
|
|
9216
|
+
* Summary: 商户履约承诺创建
|
|
9217
|
+
*/
|
|
9218
|
+
createInnerFundmngmerchantpromiseEx(request: CreateInnerFundmngmerchantpromiseRequest, headers: {
|
|
9219
|
+
[key: string]: string;
|
|
9220
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateInnerFundmngmerchantpromiseResponse>;
|
|
9221
|
+
/**
|
|
9222
|
+
* Description: 资方放款申请查询
|
|
9223
|
+
* Summary: 资方放款申请查询
|
|
9224
|
+
*/
|
|
9225
|
+
queryInnerFundmngloanapply(request: QueryInnerFundmngloanapplyRequest): Promise<QueryInnerFundmngloanapplyResponse>;
|
|
9226
|
+
/**
|
|
9227
|
+
* Description: 资方放款申请查询
|
|
9228
|
+
* Summary: 资方放款申请查询
|
|
9229
|
+
*/
|
|
9230
|
+
queryInnerFundmngloanapplyEx(request: QueryInnerFundmngloanapplyRequest, headers: {
|
|
9231
|
+
[key: string]: string;
|
|
9232
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerFundmngloanapplyResponse>;
|
|
9233
|
+
/**
|
|
9234
|
+
* Description: 资方账户信息查询
|
|
9235
|
+
* Summary: 资方账户信息查询
|
|
9236
|
+
*/
|
|
9237
|
+
queryInnerFundmngaccountinfo(request: QueryInnerFundmngaccountinfoRequest): Promise<QueryInnerFundmngaccountinfoResponse>;
|
|
9238
|
+
/**
|
|
9239
|
+
* Description: 资方账户信息查询
|
|
9240
|
+
* Summary: 资方账户信息查询
|
|
9241
|
+
*/
|
|
9242
|
+
queryInnerFundmngaccountinfoEx(request: QueryInnerFundmngaccountinfoRequest, headers: {
|
|
9243
|
+
[key: string]: string;
|
|
9244
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerFundmngaccountinfoResponse>;
|
|
9245
|
+
/**
|
|
9246
|
+
* Description: 放款结果同步
|
|
9247
|
+
* Summary: 放款结果同步
|
|
9248
|
+
*/
|
|
9249
|
+
syncInnerFundmngloanresults(request: SyncInnerFundmngloanresultsRequest): Promise<SyncInnerFundmngloanresultsResponse>;
|
|
9250
|
+
/**
|
|
9251
|
+
* Description: 放款结果同步
|
|
9252
|
+
* Summary: 放款结果同步
|
|
9253
|
+
*/
|
|
9254
|
+
syncInnerFundmngloanresultsEx(request: SyncInnerFundmngloanresultsRequest, headers: {
|
|
9255
|
+
[key: string]: string;
|
|
9256
|
+
}, runtime: $Util.RuntimeOptions): Promise<SyncInnerFundmngloanresultsResponse>;
|
|
9257
|
+
/**
|
|
9258
|
+
* Description: 创建资产凭证,支持上传文件并绑定到订单,或创建文本。
|
|
9259
|
+
* Summary: 资产凭证创建
|
|
9260
|
+
*/
|
|
9261
|
+
createInnerFundmngcredit(request: CreateInnerFundmngcreditRequest): Promise<CreateInnerFundmngcreditResponse>;
|
|
9262
|
+
/**
|
|
9263
|
+
* Description: 创建资产凭证,支持上传文件并绑定到订单,或创建文本。
|
|
9264
|
+
* Summary: 资产凭证创建
|
|
9265
|
+
*/
|
|
9266
|
+
createInnerFundmngcreditEx(request: CreateInnerFundmngcreditRequest, headers: {
|
|
9267
|
+
[key: string]: string;
|
|
9268
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateInnerFundmngcreditResponse>;
|
|
9269
|
+
/**
|
|
9270
|
+
* Description: 可以根据订单号查询资产凭证信息
|
|
9271
|
+
* Summary: 资产凭证查询
|
|
9272
|
+
*/
|
|
9273
|
+
queryInnerFundmngcredit(request: QueryInnerFundmngcreditRequest): Promise<QueryInnerFundmngcreditResponse>;
|
|
9274
|
+
/**
|
|
9275
|
+
* Description: 可以根据订单号查询资产凭证信息
|
|
9276
|
+
* Summary: 资产凭证查询
|
|
9277
|
+
*/
|
|
9278
|
+
queryInnerFundmngcreditEx(request: QueryInnerFundmngcreditRequest, headers: {
|
|
9279
|
+
[key: string]: string;
|
|
9280
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerFundmngcreditResponse>;
|
|
9281
|
+
/**
|
|
9282
|
+
* Description: 资方管理系统订单详情查询,包含订单信息、用户信息、商品信息等
|
|
9283
|
+
* Summary: 资方管理系统订单详情查询
|
|
9284
|
+
*/
|
|
9285
|
+
detailInnerFundmngorder(request: DetailInnerFundmngorderRequest): Promise<DetailInnerFundmngorderResponse>;
|
|
9286
|
+
/**
|
|
9287
|
+
* Description: 资方管理系统订单详情查询,包含订单信息、用户信息、商品信息等
|
|
9288
|
+
* Summary: 资方管理系统订单详情查询
|
|
9289
|
+
*/
|
|
9290
|
+
detailInnerFundmngorderEx(request: DetailInnerFundmngorderRequest, headers: {
|
|
9291
|
+
[key: string]: string;
|
|
9292
|
+
}, runtime: $Util.RuntimeOptions): Promise<DetailInnerFundmngorderResponse>;
|
|
9293
|
+
/**
|
|
9294
|
+
* Description: (资方控制台)商户履约查询
|
|
9295
|
+
* Summary: 商户履约查询(资方控制台)
|
|
9296
|
+
*/
|
|
9297
|
+
queryInnerFundmngmerchantperformance(request: QueryInnerFundmngmerchantperformanceRequest): Promise<QueryInnerFundmngmerchantperformanceResponse>;
|
|
9298
|
+
/**
|
|
9299
|
+
* Description: (资方控制台)商户履约查询
|
|
9300
|
+
* Summary: 商户履约查询(资方控制台)
|
|
9301
|
+
*/
|
|
9302
|
+
queryInnerFundmngmerchantperformanceEx(request: QueryInnerFundmngmerchantperformanceRequest, headers: {
|
|
9303
|
+
[key: string]: string;
|
|
9304
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerFundmngmerchantperformanceResponse>;
|
|
8206
9305
|
/**
|
|
8207
9306
|
* Description: 分账流水同步
|
|
8208
9307
|
* Summary: 【仅测试环境生效】分账流水同步
|
|
@@ -9979,6 +11078,90 @@ export default class Client {
|
|
|
9979
11078
|
batchcreateInnerTemplatetextareaEx(request: BatchcreateInnerTemplatetextareaRequest, headers: {
|
|
9980
11079
|
[key: string]: string;
|
|
9981
11080
|
}, runtime: $Util.RuntimeOptions): Promise<BatchcreateInnerTemplatetextareaResponse>;
|
|
11081
|
+
/**
|
|
11082
|
+
* Description: 异步解约申请列表
|
|
11083
|
+
* Summary: 异步解约申请列表
|
|
11084
|
+
*/
|
|
11085
|
+
pagequeryInnerAgreementterminate(request: PagequeryInnerAgreementterminateRequest): Promise<PagequeryInnerAgreementterminateResponse>;
|
|
11086
|
+
/**
|
|
11087
|
+
* Description: 异步解约申请列表
|
|
11088
|
+
* Summary: 异步解约申请列表
|
|
11089
|
+
*/
|
|
11090
|
+
pagequeryInnerAgreementterminateEx(request: PagequeryInnerAgreementterminateRequest, headers: {
|
|
11091
|
+
[key: string]: string;
|
|
11092
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerAgreementterminateResponse>;
|
|
11093
|
+
/**
|
|
11094
|
+
* Description: 解约申请记录详情
|
|
11095
|
+
* Summary: 解约申请记录详情
|
|
11096
|
+
*/
|
|
11097
|
+
detailInnerAgreementterminate(request: DetailInnerAgreementterminateRequest): Promise<DetailInnerAgreementterminateResponse>;
|
|
11098
|
+
/**
|
|
11099
|
+
* Description: 解约申请记录详情
|
|
11100
|
+
* Summary: 解约申请记录详情
|
|
11101
|
+
*/
|
|
11102
|
+
detailInnerAgreementterminateEx(request: DetailInnerAgreementterminateRequest, headers: {
|
|
11103
|
+
[key: string]: string;
|
|
11104
|
+
}, runtime: $Util.RuntimeOptions): Promise<DetailInnerAgreementterminateResponse>;
|
|
11105
|
+
/**
|
|
11106
|
+
* Description: 代扣解约申请处理
|
|
11107
|
+
* Summary: 代扣解约申请处理
|
|
11108
|
+
*/
|
|
11109
|
+
operateInnerAgreementterminate(request: OperateInnerAgreementterminateRequest): Promise<OperateInnerAgreementterminateResponse>;
|
|
11110
|
+
/**
|
|
11111
|
+
* Description: 代扣解约申请处理
|
|
11112
|
+
* Summary: 代扣解约申请处理
|
|
11113
|
+
*/
|
|
11114
|
+
operateInnerAgreementterminateEx(request: OperateInnerAgreementterminateRequest, headers: {
|
|
11115
|
+
[key: string]: string;
|
|
11116
|
+
}, runtime: $Util.RuntimeOptions): Promise<OperateInnerAgreementterminateResponse>;
|
|
11117
|
+
/**
|
|
11118
|
+
* Description: 商户补充拒绝举证材料
|
|
11119
|
+
* Summary: 商户补充拒绝举证材料
|
|
11120
|
+
*/
|
|
11121
|
+
chargeInnerAgreementterminateevidence(request: ChargeInnerAgreementterminateevidenceRequest): Promise<ChargeInnerAgreementterminateevidenceResponse>;
|
|
11122
|
+
/**
|
|
11123
|
+
* Description: 商户补充拒绝举证材料
|
|
11124
|
+
* Summary: 商户补充拒绝举证材料
|
|
11125
|
+
*/
|
|
11126
|
+
chargeInnerAgreementterminateevidenceEx(request: ChargeInnerAgreementterminateevidenceRequest, headers: {
|
|
11127
|
+
[key: string]: string;
|
|
11128
|
+
}, runtime: $Util.RuntimeOptions): Promise<ChargeInnerAgreementterminateevidenceResponse>;
|
|
11129
|
+
/**
|
|
11130
|
+
* Description: 代扣异步解约-支付宝是否直接解约
|
|
11131
|
+
* Summary: 代扣异步解约-支付宝是否直接解约
|
|
11132
|
+
*/
|
|
11133
|
+
operateInnerAgreementterminatezfbdirect(request: OperateInnerAgreementterminatezfbdirectRequest): Promise<OperateInnerAgreementterminatezfbdirectResponse>;
|
|
11134
|
+
/**
|
|
11135
|
+
* Description: 代扣异步解约-支付宝是否直接解约
|
|
11136
|
+
* Summary: 代扣异步解约-支付宝是否直接解约
|
|
11137
|
+
*/
|
|
11138
|
+
operateInnerAgreementterminatezfbdirectEx(request: OperateInnerAgreementterminatezfbdirectRequest, headers: {
|
|
11139
|
+
[key: string]: string;
|
|
11140
|
+
}, runtime: $Util.RuntimeOptions): Promise<OperateInnerAgreementterminatezfbdirectResponse>;
|
|
11141
|
+
/**
|
|
11142
|
+
* Description: 解约申请配置详情
|
|
11143
|
+
* Summary: 解约申请配置详情
|
|
11144
|
+
*/
|
|
11145
|
+
queryInnerAgreementterminateconfig(request: QueryInnerAgreementterminateconfigRequest): Promise<QueryInnerAgreementterminateconfigResponse>;
|
|
11146
|
+
/**
|
|
11147
|
+
* Description: 解约申请配置详情
|
|
11148
|
+
* Summary: 解约申请配置详情
|
|
11149
|
+
*/
|
|
11150
|
+
queryInnerAgreementterminateconfigEx(request: QueryInnerAgreementterminateconfigRequest, headers: {
|
|
11151
|
+
[key: string]: string;
|
|
11152
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerAgreementterminateconfigResponse>;
|
|
11153
|
+
/**
|
|
11154
|
+
* Description: 解约申请商户各状态统计
|
|
11155
|
+
* Summary: 解约申请商户各状态统计
|
|
11156
|
+
*/
|
|
11157
|
+
countInnerAgreementterminate(request: CountInnerAgreementterminateRequest): Promise<CountInnerAgreementterminateResponse>;
|
|
11158
|
+
/**
|
|
11159
|
+
* Description: 解约申请商户各状态统计
|
|
11160
|
+
* Summary: 解约申请商户各状态统计
|
|
11161
|
+
*/
|
|
11162
|
+
countInnerAgreementterminateEx(request: CountInnerAgreementterminateRequest, headers: {
|
|
11163
|
+
[key: string]: string;
|
|
11164
|
+
}, runtime: $Util.RuntimeOptions): Promise<CountInnerAgreementterminateResponse>;
|
|
9982
11165
|
/**
|
|
9983
11166
|
* Description: 一键投保
|
|
9984
11167
|
* Summary: 投保
|