@antchain/riskplus 1.19.24 → 1.20.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 +364 -0
- package/dist/client.js +556 -2
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +848 -15
package/dist/client.d.ts
CHANGED
|
@@ -195,6 +195,37 @@ export declare class DecisionFlow extends $tea.Model {
|
|
|
195
195
|
[key: string]: any;
|
|
196
196
|
});
|
|
197
197
|
}
|
|
198
|
+
export declare class CouponInfo extends $tea.Model {
|
|
199
|
+
couponId: string;
|
|
200
|
+
couponName: string;
|
|
201
|
+
couponStatus: string;
|
|
202
|
+
useScene: string;
|
|
203
|
+
couponCode?: string;
|
|
204
|
+
couponType?: string;
|
|
205
|
+
couponValue?: string;
|
|
206
|
+
couponAmount?: string;
|
|
207
|
+
expiredTime?: string;
|
|
208
|
+
effectiveTime?: string;
|
|
209
|
+
useDetail?: string;
|
|
210
|
+
minAmount?: string;
|
|
211
|
+
maxAmount?: string;
|
|
212
|
+
minPeriod?: string;
|
|
213
|
+
maxPeriod?: string;
|
|
214
|
+
minDay?: string;
|
|
215
|
+
repaymentMethod?: string;
|
|
216
|
+
isPeriodLimit?: string;
|
|
217
|
+
repayCondition?: string;
|
|
218
|
+
repayWays?: string;
|
|
219
|
+
static names(): {
|
|
220
|
+
[key: string]: string;
|
|
221
|
+
};
|
|
222
|
+
static types(): {
|
|
223
|
+
[key: string]: any;
|
|
224
|
+
};
|
|
225
|
+
constructor(map?: {
|
|
226
|
+
[key: string]: any;
|
|
227
|
+
});
|
|
228
|
+
}
|
|
198
229
|
export declare class UmktInfoModel extends $tea.Model {
|
|
199
230
|
sceneStrategyId: number;
|
|
200
231
|
umktResult: number;
|
|
@@ -462,6 +493,26 @@ export declare class SecurityDataQueryStruct extends $tea.Model {
|
|
|
462
493
|
[key: string]: any;
|
|
463
494
|
});
|
|
464
495
|
}
|
|
496
|
+
export declare class UserAggregationInfo extends $tea.Model {
|
|
497
|
+
status: string;
|
|
498
|
+
creditAmount?: number;
|
|
499
|
+
availableAmount?: number;
|
|
500
|
+
shouldPayAmount?: number;
|
|
501
|
+
overdueAmount?: number;
|
|
502
|
+
nextPeriodAmount?: number;
|
|
503
|
+
nextPeriodRepayTime?: string;
|
|
504
|
+
nextApplyTime?: string;
|
|
505
|
+
couponList?: CouponInfo[];
|
|
506
|
+
static names(): {
|
|
507
|
+
[key: string]: string;
|
|
508
|
+
};
|
|
509
|
+
static types(): {
|
|
510
|
+
[key: string]: any;
|
|
511
|
+
};
|
|
512
|
+
constructor(map?: {
|
|
513
|
+
[key: string]: any;
|
|
514
|
+
});
|
|
515
|
+
}
|
|
465
516
|
export declare class SceneInfos extends $tea.Model {
|
|
466
517
|
decision: string;
|
|
467
518
|
sceneCode: string;
|
|
@@ -620,6 +671,19 @@ export declare class RtopRiskStormCompanyAnnualReport extends $tea.Model {
|
|
|
620
671
|
[key: string]: any;
|
|
621
672
|
});
|
|
622
673
|
}
|
|
674
|
+
export declare class QueryInfo extends $tea.Model {
|
|
675
|
+
key?: string;
|
|
676
|
+
value?: string;
|
|
677
|
+
static names(): {
|
|
678
|
+
[key: string]: string;
|
|
679
|
+
};
|
|
680
|
+
static types(): {
|
|
681
|
+
[key: string]: any;
|
|
682
|
+
};
|
|
683
|
+
constructor(map?: {
|
|
684
|
+
[key: string]: any;
|
|
685
|
+
});
|
|
686
|
+
}
|
|
623
687
|
export declare class StrategyUploadResult extends $tea.Model {
|
|
624
688
|
ruleMetaId?: number;
|
|
625
689
|
sceneId?: number;
|
|
@@ -1004,6 +1068,19 @@ export declare class ModelDetails extends $tea.Model {
|
|
|
1004
1068
|
[key: string]: any;
|
|
1005
1069
|
});
|
|
1006
1070
|
}
|
|
1071
|
+
export declare class GwFundRouterResult extends $tea.Model {
|
|
1072
|
+
fundCode: string;
|
|
1073
|
+
abbreFundName: string;
|
|
1074
|
+
static names(): {
|
|
1075
|
+
[key: string]: string;
|
|
1076
|
+
};
|
|
1077
|
+
static types(): {
|
|
1078
|
+
[key: string]: any;
|
|
1079
|
+
};
|
|
1080
|
+
constructor(map?: {
|
|
1081
|
+
[key: string]: any;
|
|
1082
|
+
});
|
|
1083
|
+
}
|
|
1007
1084
|
export declare class RiskLabelFilterConfigInfo extends $tea.Model {
|
|
1008
1085
|
gmtCreate: string;
|
|
1009
1086
|
gmtModified: string;
|
|
@@ -1357,6 +1434,19 @@ export declare class CustomerBankCardInfo extends $tea.Model {
|
|
|
1357
1434
|
[key: string]: any;
|
|
1358
1435
|
});
|
|
1359
1436
|
}
|
|
1437
|
+
export declare class QueryResult extends $tea.Model {
|
|
1438
|
+
key?: string;
|
|
1439
|
+
value?: string;
|
|
1440
|
+
static names(): {
|
|
1441
|
+
[key: string]: string;
|
|
1442
|
+
};
|
|
1443
|
+
static types(): {
|
|
1444
|
+
[key: string]: any;
|
|
1445
|
+
};
|
|
1446
|
+
constructor(map?: {
|
|
1447
|
+
[key: string]: any;
|
|
1448
|
+
});
|
|
1449
|
+
}
|
|
1360
1450
|
export declare class OverdueInfoResponse extends $tea.Model {
|
|
1361
1451
|
overDueFlag: boolean;
|
|
1362
1452
|
overDays: number;
|
|
@@ -1705,6 +1795,19 @@ export declare class RtopCrowdRiskFeatureResp extends $tea.Model {
|
|
|
1705
1795
|
[key: string]: any;
|
|
1706
1796
|
});
|
|
1707
1797
|
}
|
|
1798
|
+
export declare class OfflineDecisionPlanDetail extends $tea.Model {
|
|
1799
|
+
decisionPlanId: string;
|
|
1800
|
+
decisionResultStatus: string;
|
|
1801
|
+
static names(): {
|
|
1802
|
+
[key: string]: string;
|
|
1803
|
+
};
|
|
1804
|
+
static types(): {
|
|
1805
|
+
[key: string]: any;
|
|
1806
|
+
};
|
|
1807
|
+
constructor(map?: {
|
|
1808
|
+
[key: string]: any;
|
|
1809
|
+
});
|
|
1810
|
+
}
|
|
1708
1811
|
export declare class UserClassifyInfo extends $tea.Model {
|
|
1709
1812
|
version: string;
|
|
1710
1813
|
rateClassify: string;
|
|
@@ -2131,6 +2234,69 @@ export declare class QueryBatchSecurityPolicyResponse extends $tea.Model {
|
|
|
2131
2234
|
[key: string]: any;
|
|
2132
2235
|
});
|
|
2133
2236
|
}
|
|
2237
|
+
export declare class QueryFhtestFhRequest extends $tea.Model {
|
|
2238
|
+
authToken?: string;
|
|
2239
|
+
productInstanceId?: string;
|
|
2240
|
+
name: string;
|
|
2241
|
+
age: number;
|
|
2242
|
+
judge?: boolean;
|
|
2243
|
+
static names(): {
|
|
2244
|
+
[key: string]: string;
|
|
2245
|
+
};
|
|
2246
|
+
static types(): {
|
|
2247
|
+
[key: string]: any;
|
|
2248
|
+
};
|
|
2249
|
+
constructor(map?: {
|
|
2250
|
+
[key: string]: any;
|
|
2251
|
+
});
|
|
2252
|
+
}
|
|
2253
|
+
export declare class QueryFhtestFhResponse extends $tea.Model {
|
|
2254
|
+
reqMsgId?: string;
|
|
2255
|
+
resultCode?: string;
|
|
2256
|
+
resultMsg?: string;
|
|
2257
|
+
success?: boolean;
|
|
2258
|
+
queryResults?: string[];
|
|
2259
|
+
static names(): {
|
|
2260
|
+
[key: string]: string;
|
|
2261
|
+
};
|
|
2262
|
+
static types(): {
|
|
2263
|
+
[key: string]: any;
|
|
2264
|
+
};
|
|
2265
|
+
constructor(map?: {
|
|
2266
|
+
[key: string]: any;
|
|
2267
|
+
});
|
|
2268
|
+
}
|
|
2269
|
+
export declare class QueryCreditshieldProductBatchRequest extends $tea.Model {
|
|
2270
|
+
authToken?: string;
|
|
2271
|
+
productInstanceId?: string;
|
|
2272
|
+
queryType: number;
|
|
2273
|
+
queryInfos: QueryInfo[];
|
|
2274
|
+
static names(): {
|
|
2275
|
+
[key: string]: string;
|
|
2276
|
+
};
|
|
2277
|
+
static types(): {
|
|
2278
|
+
[key: string]: any;
|
|
2279
|
+
};
|
|
2280
|
+
constructor(map?: {
|
|
2281
|
+
[key: string]: any;
|
|
2282
|
+
});
|
|
2283
|
+
}
|
|
2284
|
+
export declare class QueryCreditshieldProductBatchResponse extends $tea.Model {
|
|
2285
|
+
reqMsgId?: string;
|
|
2286
|
+
resultCode?: string;
|
|
2287
|
+
resultMsg?: string;
|
|
2288
|
+
success?: boolean;
|
|
2289
|
+
queryResults?: QueryResult[];
|
|
2290
|
+
static names(): {
|
|
2291
|
+
[key: string]: string;
|
|
2292
|
+
};
|
|
2293
|
+
static types(): {
|
|
2294
|
+
[key: string]: any;
|
|
2295
|
+
};
|
|
2296
|
+
constructor(map?: {
|
|
2297
|
+
[key: string]: any;
|
|
2298
|
+
});
|
|
2299
|
+
}
|
|
2134
2300
|
export declare class QueryDubheTestRequest extends $tea.Model {
|
|
2135
2301
|
authToken?: string;
|
|
2136
2302
|
productInstanceId?: string;
|
|
@@ -2806,6 +2972,9 @@ export declare class QueryDubbridgeRouterFundrouterRequest extends $tea.Model {
|
|
|
2806
2972
|
orderNo?: string;
|
|
2807
2973
|
riskData?: string;
|
|
2808
2974
|
extInfo?: string;
|
|
2975
|
+
mobileType?: string;
|
|
2976
|
+
cardNoType?: string;
|
|
2977
|
+
customNameType?: string;
|
|
2809
2978
|
static names(): {
|
|
2810
2979
|
[key: string]: string;
|
|
2811
2980
|
};
|
|
@@ -2823,6 +2992,7 @@ export declare class QueryDubbridgeRouterFundrouterResponse extends $tea.Model {
|
|
|
2823
2992
|
fundCode?: string;
|
|
2824
2993
|
abbreFundName?: string;
|
|
2825
2994
|
customerNo?: string;
|
|
2995
|
+
fundList?: GwFundRouterResult[];
|
|
2826
2996
|
static names(): {
|
|
2827
2997
|
[key: string]: string;
|
|
2828
2998
|
};
|
|
@@ -2852,6 +3022,7 @@ export declare class ApplyDubbridgeCreditRequest extends $tea.Model {
|
|
|
2852
3022
|
clickId?: string;
|
|
2853
3023
|
channelType?: string;
|
|
2854
3024
|
customType?: string;
|
|
3025
|
+
fundCode?: string;
|
|
2855
3026
|
static names(): {
|
|
2856
3027
|
[key: string]: string;
|
|
2857
3028
|
};
|
|
@@ -2923,6 +3094,7 @@ export declare class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
2923
3094
|
openId?: string;
|
|
2924
3095
|
cardNo?: string;
|
|
2925
3096
|
mobile?: string;
|
|
3097
|
+
bankName?: string;
|
|
2926
3098
|
static names(): {
|
|
2927
3099
|
[key: string]: string;
|
|
2928
3100
|
};
|
|
@@ -4206,6 +4378,37 @@ export declare class QueryDubbridgeAccountUsecreditResponse extends $tea.Model {
|
|
|
4206
4378
|
[key: string]: any;
|
|
4207
4379
|
});
|
|
4208
4380
|
}
|
|
4381
|
+
export declare class QueryDubbridgeUserAggregationinfoRequest extends $tea.Model {
|
|
4382
|
+
authToken?: string;
|
|
4383
|
+
productInstanceId?: string;
|
|
4384
|
+
orderNo: string;
|
|
4385
|
+
openId?: string;
|
|
4386
|
+
customNo?: string;
|
|
4387
|
+
static names(): {
|
|
4388
|
+
[key: string]: string;
|
|
4389
|
+
};
|
|
4390
|
+
static types(): {
|
|
4391
|
+
[key: string]: any;
|
|
4392
|
+
};
|
|
4393
|
+
constructor(map?: {
|
|
4394
|
+
[key: string]: any;
|
|
4395
|
+
});
|
|
4396
|
+
}
|
|
4397
|
+
export declare class QueryDubbridgeUserAggregationinfoResponse extends $tea.Model {
|
|
4398
|
+
reqMsgId?: string;
|
|
4399
|
+
resultCode?: string;
|
|
4400
|
+
resultMsg?: string;
|
|
4401
|
+
userAggregationInfo?: UserAggregationInfo;
|
|
4402
|
+
static names(): {
|
|
4403
|
+
[key: string]: string;
|
|
4404
|
+
};
|
|
4405
|
+
static types(): {
|
|
4406
|
+
[key: string]: any;
|
|
4407
|
+
};
|
|
4408
|
+
constructor(map?: {
|
|
4409
|
+
[key: string]: any;
|
|
4410
|
+
});
|
|
4411
|
+
}
|
|
4209
4412
|
export declare class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
|
|
4210
4413
|
authToken?: string;
|
|
4211
4414
|
productInstanceId?: string;
|
|
@@ -5058,6 +5261,64 @@ export declare class QueryQmpTextsmsTemplateResponse extends $tea.Model {
|
|
|
5058
5261
|
[key: string]: any;
|
|
5059
5262
|
});
|
|
5060
5263
|
}
|
|
5264
|
+
export declare class PushQmpBackflowEventRequest extends $tea.Model {
|
|
5265
|
+
authToken?: string;
|
|
5266
|
+
productInstanceId?: string;
|
|
5267
|
+
eventId: number;
|
|
5268
|
+
eventRecords: BackflowEventRecord[];
|
|
5269
|
+
static names(): {
|
|
5270
|
+
[key: string]: string;
|
|
5271
|
+
};
|
|
5272
|
+
static types(): {
|
|
5273
|
+
[key: string]: any;
|
|
5274
|
+
};
|
|
5275
|
+
constructor(map?: {
|
|
5276
|
+
[key: string]: any;
|
|
5277
|
+
});
|
|
5278
|
+
}
|
|
5279
|
+
export declare class PushQmpBackflowEventResponse extends $tea.Model {
|
|
5280
|
+
reqMsgId?: string;
|
|
5281
|
+
resultCode?: string;
|
|
5282
|
+
resultMsg?: string;
|
|
5283
|
+
static names(): {
|
|
5284
|
+
[key: string]: string;
|
|
5285
|
+
};
|
|
5286
|
+
static types(): {
|
|
5287
|
+
[key: string]: any;
|
|
5288
|
+
};
|
|
5289
|
+
constructor(map?: {
|
|
5290
|
+
[key: string]: any;
|
|
5291
|
+
});
|
|
5292
|
+
}
|
|
5293
|
+
export declare class PushQmpBackflowJsondataRequest extends $tea.Model {
|
|
5294
|
+
authToken?: string;
|
|
5295
|
+
productInstanceId?: string;
|
|
5296
|
+
eventId: number;
|
|
5297
|
+
eventRecords: string;
|
|
5298
|
+
static names(): {
|
|
5299
|
+
[key: string]: string;
|
|
5300
|
+
};
|
|
5301
|
+
static types(): {
|
|
5302
|
+
[key: string]: any;
|
|
5303
|
+
};
|
|
5304
|
+
constructor(map?: {
|
|
5305
|
+
[key: string]: any;
|
|
5306
|
+
});
|
|
5307
|
+
}
|
|
5308
|
+
export declare class PushQmpBackflowJsondataResponse extends $tea.Model {
|
|
5309
|
+
reqMsgId?: string;
|
|
5310
|
+
resultCode?: string;
|
|
5311
|
+
resultMsg?: string;
|
|
5312
|
+
static names(): {
|
|
5313
|
+
[key: string]: string;
|
|
5314
|
+
};
|
|
5315
|
+
static types(): {
|
|
5316
|
+
[key: string]: any;
|
|
5317
|
+
};
|
|
5318
|
+
constructor(map?: {
|
|
5319
|
+
[key: string]: any;
|
|
5320
|
+
});
|
|
5321
|
+
}
|
|
5061
5322
|
export declare class QueryRbbGenericInvokeRequest extends $tea.Model {
|
|
5062
5323
|
authToken?: string;
|
|
5063
5324
|
productInstanceId?: string;
|
|
@@ -8299,6 +8560,37 @@ export declare class DownloadUmktOfflinedecisionResultResponse extends $tea.Mode
|
|
|
8299
8560
|
[key: string]: any;
|
|
8300
8561
|
});
|
|
8301
8562
|
}
|
|
8563
|
+
export declare class QueryUmktOfflinedecisionPlandetailsRequest extends $tea.Model {
|
|
8564
|
+
authToken?: string;
|
|
8565
|
+
productInstanceId?: string;
|
|
8566
|
+
offlineDecisionPlanId: number;
|
|
8567
|
+
resultDate: string;
|
|
8568
|
+
static names(): {
|
|
8569
|
+
[key: string]: string;
|
|
8570
|
+
};
|
|
8571
|
+
static types(): {
|
|
8572
|
+
[key: string]: any;
|
|
8573
|
+
};
|
|
8574
|
+
constructor(map?: {
|
|
8575
|
+
[key: string]: any;
|
|
8576
|
+
});
|
|
8577
|
+
}
|
|
8578
|
+
export declare class QueryUmktOfflinedecisionPlandetailsResponse extends $tea.Model {
|
|
8579
|
+
reqMsgId?: string;
|
|
8580
|
+
resultCode?: string;
|
|
8581
|
+
resultMsg?: string;
|
|
8582
|
+
offlineDecisionPlanCount?: number;
|
|
8583
|
+
planDetailList?: OfflineDecisionPlanDetail[];
|
|
8584
|
+
static names(): {
|
|
8585
|
+
[key: string]: string;
|
|
8586
|
+
};
|
|
8587
|
+
static types(): {
|
|
8588
|
+
[key: string]: any;
|
|
8589
|
+
};
|
|
8590
|
+
constructor(map?: {
|
|
8591
|
+
[key: string]: any;
|
|
8592
|
+
});
|
|
8593
|
+
}
|
|
8302
8594
|
export declare class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
8303
8595
|
authToken?: string;
|
|
8304
8596
|
apiCode: string;
|
|
@@ -8485,6 +8777,30 @@ export default class Client {
|
|
|
8485
8777
|
queryBatchSecurityPolicyEx(request: QueryBatchSecurityPolicyRequest, headers: {
|
|
8486
8778
|
[key: string]: string;
|
|
8487
8779
|
}, runtime: $Util.RuntimeOptions): Promise<QueryBatchSecurityPolicyResponse>;
|
|
8780
|
+
/**
|
|
8781
|
+
* Description: 峰禾API测试
|
|
8782
|
+
* Summary: 峰禾API测试
|
|
8783
|
+
*/
|
|
8784
|
+
queryFhtestFh(request: QueryFhtestFhRequest): Promise<QueryFhtestFhResponse>;
|
|
8785
|
+
/**
|
|
8786
|
+
* Description: 峰禾API测试
|
|
8787
|
+
* Summary: 峰禾API测试
|
|
8788
|
+
*/
|
|
8789
|
+
queryFhtestFhEx(request: QueryFhtestFhRequest, headers: {
|
|
8790
|
+
[key: string]: string;
|
|
8791
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryFhtestFhResponse>;
|
|
8792
|
+
/**
|
|
8793
|
+
* Description: 信护盾产品批量查询
|
|
8794
|
+
* Summary: 信护盾产品批量查询
|
|
8795
|
+
*/
|
|
8796
|
+
queryCreditshieldProductBatch(request: QueryCreditshieldProductBatchRequest): Promise<QueryCreditshieldProductBatchResponse>;
|
|
8797
|
+
/**
|
|
8798
|
+
* Description: 信护盾产品批量查询
|
|
8799
|
+
* Summary: 信护盾产品批量查询
|
|
8800
|
+
*/
|
|
8801
|
+
queryCreditshieldProductBatchEx(request: QueryCreditshieldProductBatchRequest, headers: {
|
|
8802
|
+
[key: string]: string;
|
|
8803
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryCreditshieldProductBatchResponse>;
|
|
8488
8804
|
/**
|
|
8489
8805
|
* Description: 天枢信贷业务系统线下测试环境测试接口
|
|
8490
8806
|
* Summary: 天枢信贷业务系统线下测试接口
|
|
@@ -9193,6 +9509,18 @@ export default class Client {
|
|
|
9193
9509
|
queryDubbridgeAccountUsecreditEx(request: QueryDubbridgeAccountUsecreditRequest, headers: {
|
|
9194
9510
|
[key: string]: string;
|
|
9195
9511
|
}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeAccountUsecreditResponse>;
|
|
9512
|
+
/**
|
|
9513
|
+
* Description: 天枢用户聚合状态查询接口
|
|
9514
|
+
* Summary: 天枢用户聚合状态查询接口
|
|
9515
|
+
*/
|
|
9516
|
+
queryDubbridgeUserAggregationinfo(request: QueryDubbridgeUserAggregationinfoRequest): Promise<QueryDubbridgeUserAggregationinfoResponse>;
|
|
9517
|
+
/**
|
|
9518
|
+
* Description: 天枢用户聚合状态查询接口
|
|
9519
|
+
* Summary: 天枢用户聚合状态查询接口
|
|
9520
|
+
*/
|
|
9521
|
+
queryDubbridgeUserAggregationinfoEx(request: QueryDubbridgeUserAggregationinfoRequest, headers: {
|
|
9522
|
+
[key: string]: string;
|
|
9523
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeUserAggregationinfoResponse>;
|
|
9196
9524
|
/**
|
|
9197
9525
|
* Description: 四要素认证首先调用此接口
|
|
9198
9526
|
* Summary: 芝麻四要素接口
|
|
@@ -9481,6 +9809,30 @@ export default class Client {
|
|
|
9481
9809
|
queryQmpTextsmsTemplateEx(request: QueryQmpTextsmsTemplateRequest, headers: {
|
|
9482
9810
|
[key: string]: string;
|
|
9483
9811
|
}, runtime: $Util.RuntimeOptions): Promise<QueryQmpTextsmsTemplateResponse>;
|
|
9812
|
+
/**
|
|
9813
|
+
* Description: 蚁盾业务回流事件推送
|
|
9814
|
+
* Summary: 蚁盾回流事件推送
|
|
9815
|
+
*/
|
|
9816
|
+
pushQmpBackflowEvent(request: PushQmpBackflowEventRequest): Promise<PushQmpBackflowEventResponse>;
|
|
9817
|
+
/**
|
|
9818
|
+
* Description: 蚁盾业务回流事件推送
|
|
9819
|
+
* Summary: 蚁盾回流事件推送
|
|
9820
|
+
*/
|
|
9821
|
+
pushQmpBackflowEventEx(request: PushQmpBackflowEventRequest, headers: {
|
|
9822
|
+
[key: string]: string;
|
|
9823
|
+
}, runtime: $Util.RuntimeOptions): Promise<PushQmpBackflowEventResponse>;
|
|
9824
|
+
/**
|
|
9825
|
+
* Description: 蚁盾数据回流推送,用于客户定制json数据
|
|
9826
|
+
* Summary: 蚁盾数据回流json格式推送
|
|
9827
|
+
*/
|
|
9828
|
+
pushQmpBackflowJsondata(request: PushQmpBackflowJsondataRequest): Promise<PushQmpBackflowJsondataResponse>;
|
|
9829
|
+
/**
|
|
9830
|
+
* Description: 蚁盾数据回流推送,用于客户定制json数据
|
|
9831
|
+
* Summary: 蚁盾数据回流json格式推送
|
|
9832
|
+
*/
|
|
9833
|
+
pushQmpBackflowJsondataEx(request: PushQmpBackflowJsondataRequest, headers: {
|
|
9834
|
+
[key: string]: string;
|
|
9835
|
+
}, runtime: $Util.RuntimeOptions): Promise<PushQmpBackflowJsondataResponse>;
|
|
9484
9836
|
/**
|
|
9485
9837
|
* Description: 风险大脑企业版通用查询接口
|
|
9486
9838
|
* Summary: 【已废弃】
|
|
@@ -10637,6 +10989,18 @@ export default class Client {
|
|
|
10637
10989
|
downloadUmktOfflinedecisionResultEx(request: DownloadUmktOfflinedecisionResultRequest, headers: {
|
|
10638
10990
|
[key: string]: string;
|
|
10639
10991
|
}, runtime: $Util.RuntimeOptions): Promise<DownloadUmktOfflinedecisionResultResponse>;
|
|
10992
|
+
/**
|
|
10993
|
+
* Description: 包含离线圈客关联计划和任务状态详情
|
|
10994
|
+
* Summary: 营销盾离线圈客计划执行详情
|
|
10995
|
+
*/
|
|
10996
|
+
queryUmktOfflinedecisionPlandetails(request: QueryUmktOfflinedecisionPlandetailsRequest): Promise<QueryUmktOfflinedecisionPlandetailsResponse>;
|
|
10997
|
+
/**
|
|
10998
|
+
* Description: 包含离线圈客关联计划和任务状态详情
|
|
10999
|
+
* Summary: 营销盾离线圈客计划执行详情
|
|
11000
|
+
*/
|
|
11001
|
+
queryUmktOfflinedecisionPlandetailsEx(request: QueryUmktOfflinedecisionPlandetailsRequest, headers: {
|
|
11002
|
+
[key: string]: string;
|
|
11003
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryUmktOfflinedecisionPlandetailsResponse>;
|
|
10640
11004
|
/**
|
|
10641
11005
|
* Description: 创建HTTP PUT提交的文件上传
|
|
10642
11006
|
* Summary: 文件上传创建
|