@antchain/riskplus 1.23.10 → 1.24.2
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 +402 -7
- package/dist/client.js +666 -16
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +993 -41
package/dist/client.d.ts
CHANGED
|
@@ -145,6 +145,27 @@ export declare class BackflowEventRecordProperty extends $tea.Model {
|
|
|
145
145
|
[key: string]: any;
|
|
146
146
|
});
|
|
147
147
|
}
|
|
148
|
+
export declare class TermDetail extends $tea.Model {
|
|
149
|
+
term: string;
|
|
150
|
+
termAmount: number;
|
|
151
|
+
termPrincipal: number;
|
|
152
|
+
termFee: number;
|
|
153
|
+
settleDate: string;
|
|
154
|
+
penalty?: number;
|
|
155
|
+
guaranteeFee?: number;
|
|
156
|
+
liquidatedDamages?: number;
|
|
157
|
+
serverFee?: number;
|
|
158
|
+
deductAmount?: number;
|
|
159
|
+
static names(): {
|
|
160
|
+
[key: string]: string;
|
|
161
|
+
};
|
|
162
|
+
static types(): {
|
|
163
|
+
[key: string]: any;
|
|
164
|
+
};
|
|
165
|
+
constructor(map?: {
|
|
166
|
+
[key: string]: any;
|
|
167
|
+
});
|
|
168
|
+
}
|
|
148
169
|
export declare class BaseCustomerUmktInfoModel extends $tea.Model {
|
|
149
170
|
customerKey?: string;
|
|
150
171
|
queryTemplate?: string;
|
|
@@ -337,6 +358,19 @@ export declare class RuleDetail extends $tea.Model {
|
|
|
337
358
|
[key: string]: any;
|
|
338
359
|
});
|
|
339
360
|
}
|
|
361
|
+
export declare class Additional extends $tea.Model {
|
|
362
|
+
deliveryman?: string;
|
|
363
|
+
keyWord?: string;
|
|
364
|
+
static names(): {
|
|
365
|
+
[key: string]: string;
|
|
366
|
+
};
|
|
367
|
+
static types(): {
|
|
368
|
+
[key: string]: any;
|
|
369
|
+
};
|
|
370
|
+
constructor(map?: {
|
|
371
|
+
[key: string]: any;
|
|
372
|
+
});
|
|
373
|
+
}
|
|
340
374
|
export declare class RepayResult extends $tea.Model {
|
|
341
375
|
customNo: string;
|
|
342
376
|
period: string;
|
|
@@ -1240,6 +1274,20 @@ export declare class RiskStormLabelResp extends $tea.Model {
|
|
|
1240
1274
|
[key: string]: any;
|
|
1241
1275
|
});
|
|
1242
1276
|
}
|
|
1277
|
+
export declare class SupplementFile extends $tea.Model {
|
|
1278
|
+
fileType: string;
|
|
1279
|
+
fileUrl: string;
|
|
1280
|
+
fileDesc: string;
|
|
1281
|
+
static names(): {
|
|
1282
|
+
[key: string]: string;
|
|
1283
|
+
};
|
|
1284
|
+
static types(): {
|
|
1285
|
+
[key: string]: any;
|
|
1286
|
+
};
|
|
1287
|
+
constructor(map?: {
|
|
1288
|
+
[key: string]: any;
|
|
1289
|
+
});
|
|
1290
|
+
}
|
|
1243
1291
|
export declare class ZhimaIdentifyResp extends $tea.Model {
|
|
1244
1292
|
bizNo?: string;
|
|
1245
1293
|
certifyUrl?: string;
|
|
@@ -1517,6 +1565,30 @@ export declare class CustomerBankCardInfo extends $tea.Model {
|
|
|
1517
1565
|
[key: string]: any;
|
|
1518
1566
|
});
|
|
1519
1567
|
}
|
|
1568
|
+
export declare class InstallmentTrial extends $tea.Model {
|
|
1569
|
+
totalPeriod: string;
|
|
1570
|
+
totalAmount: number;
|
|
1571
|
+
totalFee: number;
|
|
1572
|
+
feeRate: number;
|
|
1573
|
+
yearRate: number;
|
|
1574
|
+
termDetailList: TermDetail[];
|
|
1575
|
+
optimal?: boolean;
|
|
1576
|
+
totalPenalty?: number;
|
|
1577
|
+
totalGuaranteeFee?: number;
|
|
1578
|
+
totalLiquidatedDamages?: number;
|
|
1579
|
+
totalServerFee?: number;
|
|
1580
|
+
discount?: number;
|
|
1581
|
+
totalDeductAmount?: number;
|
|
1582
|
+
static names(): {
|
|
1583
|
+
[key: string]: string;
|
|
1584
|
+
};
|
|
1585
|
+
static types(): {
|
|
1586
|
+
[key: string]: any;
|
|
1587
|
+
};
|
|
1588
|
+
constructor(map?: {
|
|
1589
|
+
[key: string]: any;
|
|
1590
|
+
});
|
|
1591
|
+
}
|
|
1520
1592
|
export declare class UmktOfflineDecisionTaskExecBatchInfo extends $tea.Model {
|
|
1521
1593
|
execBatch: string;
|
|
1522
1594
|
offlineDecisionTaskDetailInfoList: UmktOfflineDecisionTaskDetailInfo[];
|
|
@@ -1634,6 +1706,24 @@ export declare class DefinInnerChannelNotifyResult extends $tea.Model {
|
|
|
1634
1706
|
[key: string]: any;
|
|
1635
1707
|
});
|
|
1636
1708
|
}
|
|
1709
|
+
export declare class StoreInfo extends $tea.Model {
|
|
1710
|
+
storeId: string;
|
|
1711
|
+
loginTenant: string;
|
|
1712
|
+
payeeBankCard: string;
|
|
1713
|
+
payeeName: string;
|
|
1714
|
+
storeName: string;
|
|
1715
|
+
salesman?: string;
|
|
1716
|
+
device?: string;
|
|
1717
|
+
static names(): {
|
|
1718
|
+
[key: string]: string;
|
|
1719
|
+
};
|
|
1720
|
+
static types(): {
|
|
1721
|
+
[key: string]: any;
|
|
1722
|
+
};
|
|
1723
|
+
constructor(map?: {
|
|
1724
|
+
[key: string]: any;
|
|
1725
|
+
});
|
|
1726
|
+
}
|
|
1637
1727
|
export declare class BatchQueryResult extends $tea.Model {
|
|
1638
1728
|
queryKey: string;
|
|
1639
1729
|
decision: string;
|
|
@@ -1821,6 +1911,33 @@ export declare class CustomRelationStatus extends $tea.Model {
|
|
|
1821
1911
|
[key: string]: any;
|
|
1822
1912
|
});
|
|
1823
1913
|
}
|
|
1914
|
+
export declare class VehicleInfo extends $tea.Model {
|
|
1915
|
+
bizOrderNo?: string;
|
|
1916
|
+
tradeAmount?: string;
|
|
1917
|
+
downPayment?: string;
|
|
1918
|
+
guidePrice?: string;
|
|
1919
|
+
sellingPrice?: string;
|
|
1920
|
+
sn?: string;
|
|
1921
|
+
sku?: string;
|
|
1922
|
+
brand?: string;
|
|
1923
|
+
model?: string;
|
|
1924
|
+
modelYear?: string;
|
|
1925
|
+
color?: string;
|
|
1926
|
+
range?: string;
|
|
1927
|
+
parts?: string;
|
|
1928
|
+
odo?: string;
|
|
1929
|
+
firstRegDate?: string;
|
|
1930
|
+
otr?: string;
|
|
1931
|
+
static names(): {
|
|
1932
|
+
[key: string]: string;
|
|
1933
|
+
};
|
|
1934
|
+
static types(): {
|
|
1935
|
+
[key: string]: any;
|
|
1936
|
+
};
|
|
1937
|
+
constructor(map?: {
|
|
1938
|
+
[key: string]: any;
|
|
1939
|
+
});
|
|
1940
|
+
}
|
|
1824
1941
|
export declare class RdaasTaxDecsionService extends $tea.Model {
|
|
1825
1942
|
id: string;
|
|
1826
1943
|
serviceName: string;
|
|
@@ -2094,6 +2211,68 @@ export declare class XNameValuePair extends $tea.Model {
|
|
|
2094
2211
|
[key: string]: any;
|
|
2095
2212
|
});
|
|
2096
2213
|
}
|
|
2214
|
+
export declare class ReceiveBenefithubRiskPayRequest extends $tea.Model {
|
|
2215
|
+
authToken?: string;
|
|
2216
|
+
productInstanceId?: string;
|
|
2217
|
+
platformCode: string;
|
|
2218
|
+
productCode: string;
|
|
2219
|
+
userUniqueId: string;
|
|
2220
|
+
resultType: string;
|
|
2221
|
+
callbackResult: string;
|
|
2222
|
+
static names(): {
|
|
2223
|
+
[key: string]: string;
|
|
2224
|
+
};
|
|
2225
|
+
static types(): {
|
|
2226
|
+
[key: string]: any;
|
|
2227
|
+
};
|
|
2228
|
+
constructor(map?: {
|
|
2229
|
+
[key: string]: any;
|
|
2230
|
+
});
|
|
2231
|
+
}
|
|
2232
|
+
export declare class ReceiveBenefithubRiskPayResponse extends $tea.Model {
|
|
2233
|
+
reqMsgId?: string;
|
|
2234
|
+
resultCode?: string;
|
|
2235
|
+
resultMsg?: string;
|
|
2236
|
+
static names(): {
|
|
2237
|
+
[key: string]: string;
|
|
2238
|
+
};
|
|
2239
|
+
static types(): {
|
|
2240
|
+
[key: string]: any;
|
|
2241
|
+
};
|
|
2242
|
+
constructor(map?: {
|
|
2243
|
+
[key: string]: any;
|
|
2244
|
+
});
|
|
2245
|
+
}
|
|
2246
|
+
export declare class NotifyBenefithubRiskLoginRequest extends $tea.Model {
|
|
2247
|
+
authToken?: string;
|
|
2248
|
+
productInstanceId?: string;
|
|
2249
|
+
platformCode: string;
|
|
2250
|
+
userUniqueId: string;
|
|
2251
|
+
mobile: string;
|
|
2252
|
+
static names(): {
|
|
2253
|
+
[key: string]: string;
|
|
2254
|
+
};
|
|
2255
|
+
static types(): {
|
|
2256
|
+
[key: string]: any;
|
|
2257
|
+
};
|
|
2258
|
+
constructor(map?: {
|
|
2259
|
+
[key: string]: any;
|
|
2260
|
+
});
|
|
2261
|
+
}
|
|
2262
|
+
export declare class NotifyBenefithubRiskLoginResponse extends $tea.Model {
|
|
2263
|
+
reqMsgId?: string;
|
|
2264
|
+
resultCode?: string;
|
|
2265
|
+
resultMsg?: string;
|
|
2266
|
+
static names(): {
|
|
2267
|
+
[key: string]: string;
|
|
2268
|
+
};
|
|
2269
|
+
static types(): {
|
|
2270
|
+
[key: string]: any;
|
|
2271
|
+
};
|
|
2272
|
+
constructor(map?: {
|
|
2273
|
+
[key: string]: any;
|
|
2274
|
+
});
|
|
2275
|
+
}
|
|
2097
2276
|
export declare class BatchqueryCreditshieldProductInfoRequest extends $tea.Model {
|
|
2098
2277
|
authToken?: string;
|
|
2099
2278
|
productInstanceId?: string;
|
|
@@ -3106,25 +3285,27 @@ export declare class SendDubbridgeSmsBatchResponse extends $tea.Model {
|
|
|
3106
3285
|
export declare class QueryDubbridgeRouterFundrouterRequest extends $tea.Model {
|
|
3107
3286
|
authToken?: string;
|
|
3108
3287
|
productInstanceId?: string;
|
|
3288
|
+
orderNo?: string;
|
|
3109
3289
|
prodType?: string;
|
|
3110
|
-
|
|
3290
|
+
openId?: string;
|
|
3111
3291
|
mobile?: string;
|
|
3292
|
+
bizOrderNo?: string;
|
|
3293
|
+
cardNo?: string;
|
|
3112
3294
|
customName?: string;
|
|
3113
|
-
|
|
3295
|
+
mobileType?: string;
|
|
3296
|
+
cardNoType?: string;
|
|
3297
|
+
customNameType?: string;
|
|
3114
3298
|
channelType?: string;
|
|
3115
3299
|
customType?: string;
|
|
3300
|
+
prodNo?: string;
|
|
3301
|
+
expiredPlatformNo?: string;
|
|
3116
3302
|
trafficPlatform?: string;
|
|
3117
3303
|
trafficSourceName?: string;
|
|
3118
3304
|
trafficAdId?: string;
|
|
3119
3305
|
trafficMktId?: string;
|
|
3120
3306
|
clickId?: string;
|
|
3121
|
-
orderNo?: string;
|
|
3122
3307
|
riskData?: string;
|
|
3123
3308
|
extInfo?: string;
|
|
3124
|
-
mobileType?: string;
|
|
3125
|
-
cardNoType?: string;
|
|
3126
|
-
customNameType?: string;
|
|
3127
|
-
openId?: string;
|
|
3128
3309
|
static names(): {
|
|
3129
3310
|
[key: string]: string;
|
|
3130
3311
|
};
|
|
@@ -4709,6 +4890,80 @@ export declare class CancelDubbridgeInstallmentOrderResponse extends $tea.Model
|
|
|
4709
4890
|
[key: string]: any;
|
|
4710
4891
|
});
|
|
4711
4892
|
}
|
|
4893
|
+
export declare class PushDubbridgeInstallmentSupplementRequest extends $tea.Model {
|
|
4894
|
+
authToken?: string;
|
|
4895
|
+
productInstanceId?: string;
|
|
4896
|
+
orderNo: string;
|
|
4897
|
+
prodType: string;
|
|
4898
|
+
openId: string;
|
|
4899
|
+
bizOrderNo: string;
|
|
4900
|
+
fileScene: string;
|
|
4901
|
+
fileList?: SupplementFile[];
|
|
4902
|
+
storeInfo?: StoreInfo;
|
|
4903
|
+
vehicleInfo?: VehicleInfo;
|
|
4904
|
+
additional?: Additional;
|
|
4905
|
+
static names(): {
|
|
4906
|
+
[key: string]: string;
|
|
4907
|
+
};
|
|
4908
|
+
static types(): {
|
|
4909
|
+
[key: string]: any;
|
|
4910
|
+
};
|
|
4911
|
+
constructor(map?: {
|
|
4912
|
+
[key: string]: any;
|
|
4913
|
+
});
|
|
4914
|
+
}
|
|
4915
|
+
export declare class PushDubbridgeInstallmentSupplementResponse extends $tea.Model {
|
|
4916
|
+
reqMsgId?: string;
|
|
4917
|
+
resultCode?: string;
|
|
4918
|
+
resultMsg?: string;
|
|
4919
|
+
static names(): {
|
|
4920
|
+
[key: string]: string;
|
|
4921
|
+
};
|
|
4922
|
+
static types(): {
|
|
4923
|
+
[key: string]: any;
|
|
4924
|
+
};
|
|
4925
|
+
constructor(map?: {
|
|
4926
|
+
[key: string]: any;
|
|
4927
|
+
});
|
|
4928
|
+
}
|
|
4929
|
+
export declare class QueryDubbridgeInstallmentTrialRequest extends $tea.Model {
|
|
4930
|
+
authToken?: string;
|
|
4931
|
+
productInstanceId?: string;
|
|
4932
|
+
orderNo: string;
|
|
4933
|
+
prodType: string;
|
|
4934
|
+
bizOrderNo: string;
|
|
4935
|
+
customerNo?: string;
|
|
4936
|
+
openId: string;
|
|
4937
|
+
fundCode: string;
|
|
4938
|
+
tradeAmount: string;
|
|
4939
|
+
couponId?: string;
|
|
4940
|
+
static names(): {
|
|
4941
|
+
[key: string]: string;
|
|
4942
|
+
};
|
|
4943
|
+
static types(): {
|
|
4944
|
+
[key: string]: any;
|
|
4945
|
+
};
|
|
4946
|
+
constructor(map?: {
|
|
4947
|
+
[key: string]: any;
|
|
4948
|
+
});
|
|
4949
|
+
}
|
|
4950
|
+
export declare class QueryDubbridgeInstallmentTrialResponse extends $tea.Model {
|
|
4951
|
+
reqMsgId?: string;
|
|
4952
|
+
resultCode?: string;
|
|
4953
|
+
resultMsg?: string;
|
|
4954
|
+
creditAmount?: string;
|
|
4955
|
+
restAmount?: string;
|
|
4956
|
+
installmentList?: InstallmentTrial[];
|
|
4957
|
+
static names(): {
|
|
4958
|
+
[key: string]: string;
|
|
4959
|
+
};
|
|
4960
|
+
static types(): {
|
|
4961
|
+
[key: string]: any;
|
|
4962
|
+
};
|
|
4963
|
+
constructor(map?: {
|
|
4964
|
+
[key: string]: any;
|
|
4965
|
+
});
|
|
4966
|
+
}
|
|
4712
4967
|
export declare class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
|
|
4713
4968
|
authToken?: string;
|
|
4714
4969
|
productInstanceId?: string;
|
|
@@ -5770,6 +6025,41 @@ export declare class BatchqueryQmpRtMixedmarketingResponse extends $tea.Model {
|
|
|
5770
6025
|
[key: string]: any;
|
|
5771
6026
|
});
|
|
5772
6027
|
}
|
|
6028
|
+
export declare class UploadQmpOfflinehostplanRequest extends $tea.Model {
|
|
6029
|
+
authToken?: string;
|
|
6030
|
+
productInstanceId?: string;
|
|
6031
|
+
fileObject?: Readable;
|
|
6032
|
+
fileObjectName?: string;
|
|
6033
|
+
fileId: string;
|
|
6034
|
+
fileTemplate: string;
|
|
6035
|
+
planCode: string;
|
|
6036
|
+
relationType?: string;
|
|
6037
|
+
properties?: string;
|
|
6038
|
+
needToRefactor?: boolean;
|
|
6039
|
+
static names(): {
|
|
6040
|
+
[key: string]: string;
|
|
6041
|
+
};
|
|
6042
|
+
static types(): {
|
|
6043
|
+
[key: string]: any;
|
|
6044
|
+
};
|
|
6045
|
+
constructor(map?: {
|
|
6046
|
+
[key: string]: any;
|
|
6047
|
+
});
|
|
6048
|
+
}
|
|
6049
|
+
export declare class UploadQmpOfflinehostplanResponse extends $tea.Model {
|
|
6050
|
+
reqMsgId?: string;
|
|
6051
|
+
resultCode?: string;
|
|
6052
|
+
resultMsg?: string;
|
|
6053
|
+
static names(): {
|
|
6054
|
+
[key: string]: string;
|
|
6055
|
+
};
|
|
6056
|
+
static types(): {
|
|
6057
|
+
[key: string]: any;
|
|
6058
|
+
};
|
|
6059
|
+
constructor(map?: {
|
|
6060
|
+
[key: string]: any;
|
|
6061
|
+
});
|
|
6062
|
+
}
|
|
5773
6063
|
export declare class SyncRdaasTaxAuthinfoRequest extends $tea.Model {
|
|
5774
6064
|
authToken?: string;
|
|
5775
6065
|
productInstanceId?: string;
|
|
@@ -6011,6 +6301,39 @@ export declare class ReceiveRfcParamsFileResponse extends $tea.Model {
|
|
|
6011
6301
|
[key: string]: any;
|
|
6012
6302
|
});
|
|
6013
6303
|
}
|
|
6304
|
+
export declare class UploadRfcAiboundFileRequest extends $tea.Model {
|
|
6305
|
+
authToken?: string;
|
|
6306
|
+
productInstanceId?: string;
|
|
6307
|
+
fileObject?: Readable;
|
|
6308
|
+
fileObjectName?: string;
|
|
6309
|
+
fileId: string;
|
|
6310
|
+
params: string;
|
|
6311
|
+
type: string;
|
|
6312
|
+
static names(): {
|
|
6313
|
+
[key: string]: string;
|
|
6314
|
+
};
|
|
6315
|
+
static types(): {
|
|
6316
|
+
[key: string]: any;
|
|
6317
|
+
};
|
|
6318
|
+
constructor(map?: {
|
|
6319
|
+
[key: string]: any;
|
|
6320
|
+
});
|
|
6321
|
+
}
|
|
6322
|
+
export declare class UploadRfcAiboundFileResponse extends $tea.Model {
|
|
6323
|
+
reqMsgId?: string;
|
|
6324
|
+
resultCode?: string;
|
|
6325
|
+
resultMsg?: string;
|
|
6326
|
+
content?: string;
|
|
6327
|
+
static names(): {
|
|
6328
|
+
[key: string]: string;
|
|
6329
|
+
};
|
|
6330
|
+
static types(): {
|
|
6331
|
+
[key: string]: any;
|
|
6332
|
+
};
|
|
6333
|
+
constructor(map?: {
|
|
6334
|
+
[key: string]: any;
|
|
6335
|
+
});
|
|
6336
|
+
}
|
|
6014
6337
|
export declare class QueryRbbGenericInvokeRequest extends $tea.Model {
|
|
6015
6338
|
authToken?: string;
|
|
6016
6339
|
productInstanceId?: string;
|
|
@@ -9494,6 +9817,30 @@ export default class Client {
|
|
|
9494
9817
|
}, runtime: $Util.RuntimeOptions): Promise<{
|
|
9495
9818
|
[key: string]: any;
|
|
9496
9819
|
}>;
|
|
9820
|
+
/**
|
|
9821
|
+
* Description: 支付成功、退款成功、续费扣款、超时关单、签约、解约,渠道方回调结果使用
|
|
9822
|
+
* Summary: 权益流量业务支付签约相关通知
|
|
9823
|
+
*/
|
|
9824
|
+
receiveBenefithubRiskPay(request: ReceiveBenefithubRiskPayRequest): Promise<ReceiveBenefithubRiskPayResponse>;
|
|
9825
|
+
/**
|
|
9826
|
+
* Description: 支付成功、退款成功、续费扣款、超时关单、签约、解约,渠道方回调结果使用
|
|
9827
|
+
* Summary: 权益流量业务支付签约相关通知
|
|
9828
|
+
*/
|
|
9829
|
+
receiveBenefithubRiskPayEx(request: ReceiveBenefithubRiskPayRequest, headers: {
|
|
9830
|
+
[key: string]: string;
|
|
9831
|
+
}, runtime: $Util.RuntimeOptions): Promise<ReceiveBenefithubRiskPayResponse>;
|
|
9832
|
+
/**
|
|
9833
|
+
* Description: 渠道、平台方,联合登陆推送登陆通知信息
|
|
9834
|
+
* Summary: 渠道/平台方推送的用户登陆信息
|
|
9835
|
+
*/
|
|
9836
|
+
notifyBenefithubRiskLogin(request: NotifyBenefithubRiskLoginRequest): Promise<NotifyBenefithubRiskLoginResponse>;
|
|
9837
|
+
/**
|
|
9838
|
+
* Description: 渠道、平台方,联合登陆推送登陆通知信息
|
|
9839
|
+
* Summary: 渠道/平台方推送的用户登陆信息
|
|
9840
|
+
*/
|
|
9841
|
+
notifyBenefithubRiskLoginEx(request: NotifyBenefithubRiskLoginRequest, headers: {
|
|
9842
|
+
[key: string]: string;
|
|
9843
|
+
}, runtime: $Util.RuntimeOptions): Promise<NotifyBenefithubRiskLoginResponse>;
|
|
9497
9844
|
/**
|
|
9498
9845
|
* Description: 信护盾产品批量查询
|
|
9499
9846
|
* Summary: 信护盾产品批量查询
|
|
@@ -10394,6 +10741,30 @@ export default class Client {
|
|
|
10394
10741
|
cancelDubbridgeInstallmentOrderEx(request: CancelDubbridgeInstallmentOrderRequest, headers: {
|
|
10395
10742
|
[key: string]: string;
|
|
10396
10743
|
}, runtime: $Util.RuntimeOptions): Promise<CancelDubbridgeInstallmentOrderResponse>;
|
|
10744
|
+
/**
|
|
10745
|
+
* Description: 天枢系统支用后补充材料推送-分期付
|
|
10746
|
+
* Summary: 天枢系统支用后补充材料推送-分期付
|
|
10747
|
+
*/
|
|
10748
|
+
pushDubbridgeInstallmentSupplement(request: PushDubbridgeInstallmentSupplementRequest): Promise<PushDubbridgeInstallmentSupplementResponse>;
|
|
10749
|
+
/**
|
|
10750
|
+
* Description: 天枢系统支用后补充材料推送-分期付
|
|
10751
|
+
* Summary: 天枢系统支用后补充材料推送-分期付
|
|
10752
|
+
*/
|
|
10753
|
+
pushDubbridgeInstallmentSupplementEx(request: PushDubbridgeInstallmentSupplementRequest, headers: {
|
|
10754
|
+
[key: string]: string;
|
|
10755
|
+
}, runtime: $Util.RuntimeOptions): Promise<PushDubbridgeInstallmentSupplementResponse>;
|
|
10756
|
+
/**
|
|
10757
|
+
* Description: 天枢系统分期试算
|
|
10758
|
+
* Summary: 天枢系统分期试算
|
|
10759
|
+
*/
|
|
10760
|
+
queryDubbridgeInstallmentTrial(request: QueryDubbridgeInstallmentTrialRequest): Promise<QueryDubbridgeInstallmentTrialResponse>;
|
|
10761
|
+
/**
|
|
10762
|
+
* Description: 天枢系统分期试算
|
|
10763
|
+
* Summary: 天枢系统分期试算
|
|
10764
|
+
*/
|
|
10765
|
+
queryDubbridgeInstallmentTrialEx(request: QueryDubbridgeInstallmentTrialRequest, headers: {
|
|
10766
|
+
[key: string]: string;
|
|
10767
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeInstallmentTrialResponse>;
|
|
10397
10768
|
/**
|
|
10398
10769
|
* Description: 四要素认证首先调用此接口
|
|
10399
10770
|
* Summary: 芝麻四要素接口
|
|
@@ -10766,6 +11137,18 @@ export default class Client {
|
|
|
10766
11137
|
batchqueryQmpRtMixedmarketingEx(request: BatchqueryQmpRtMixedmarketingRequest, headers: {
|
|
10767
11138
|
[key: string]: string;
|
|
10768
11139
|
}, runtime: $Util.RuntimeOptions): Promise<BatchqueryQmpRtMixedmarketingResponse>;
|
|
11140
|
+
/**
|
|
11141
|
+
* Description: qmp离线托管文件导入
|
|
11142
|
+
* Summary: qmp离线托管文件导入
|
|
11143
|
+
*/
|
|
11144
|
+
uploadQmpOfflinehostplan(request: UploadQmpOfflinehostplanRequest): Promise<UploadQmpOfflinehostplanResponse>;
|
|
11145
|
+
/**
|
|
11146
|
+
* Description: qmp离线托管文件导入
|
|
11147
|
+
* Summary: qmp离线托管文件导入
|
|
11148
|
+
*/
|
|
11149
|
+
uploadQmpOfflinehostplanEx(request: UploadQmpOfflinehostplanRequest, headers: {
|
|
11150
|
+
[key: string]: string;
|
|
11151
|
+
}, runtime: $Util.RuntimeOptions): Promise<UploadQmpOfflinehostplanResponse>;
|
|
10769
11152
|
/**
|
|
10770
11153
|
* Description: 企管盾票税交接授权信息表的同步
|
|
10771
11154
|
* Summary: 企管盾票税交接授权信息表的同步
|
|
@@ -10850,6 +11233,18 @@ export default class Client {
|
|
|
10850
11233
|
receiveRfcParamsFileEx(request: ReceiveRfcParamsFileRequest, headers: {
|
|
10851
11234
|
[key: string]: string;
|
|
10852
11235
|
}, runtime: $Util.RuntimeOptions): Promise<ReceiveRfcParamsFileResponse>;
|
|
11236
|
+
/**
|
|
11237
|
+
* Description: rfc外呼名单文件上传接口
|
|
11238
|
+
* Summary: rfc外呼名单上传接口
|
|
11239
|
+
*/
|
|
11240
|
+
uploadRfcAiboundFile(request: UploadRfcAiboundFileRequest): Promise<UploadRfcAiboundFileResponse>;
|
|
11241
|
+
/**
|
|
11242
|
+
* Description: rfc外呼名单文件上传接口
|
|
11243
|
+
* Summary: rfc外呼名单上传接口
|
|
11244
|
+
*/
|
|
11245
|
+
uploadRfcAiboundFileEx(request: UploadRfcAiboundFileRequest, headers: {
|
|
11246
|
+
[key: string]: string;
|
|
11247
|
+
}, runtime: $Util.RuntimeOptions): Promise<UploadRfcAiboundFileResponse>;
|
|
10853
11248
|
/**
|
|
10854
11249
|
* Description: 风险大脑企业版通用查询接口
|
|
10855
11250
|
* Summary: 【已废弃】
|