@antchain/riskplus 1.16.43 → 1.16.59
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 +455 -1
- package/dist/client.js +752 -58
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1151 -134
package/dist/client.js
CHANGED
|
@@ -125,6 +125,25 @@ class InfoCodes extends $tea.Model {
|
|
|
125
125
|
}
|
|
126
126
|
}
|
|
127
127
|
exports.InfoCodes = InfoCodes;
|
|
128
|
+
// 营销盾触达媒介参数信息
|
|
129
|
+
class ActionParamInfo extends $tea.Model {
|
|
130
|
+
constructor(map) {
|
|
131
|
+
super(map);
|
|
132
|
+
}
|
|
133
|
+
static names() {
|
|
134
|
+
return {
|
|
135
|
+
contentType: 'content_type',
|
|
136
|
+
actionParam: 'action_param',
|
|
137
|
+
};
|
|
138
|
+
}
|
|
139
|
+
static types() {
|
|
140
|
+
return {
|
|
141
|
+
contentType: 'string',
|
|
142
|
+
actionParam: { 'type': 'array', 'itemType': 'string' },
|
|
143
|
+
};
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
exports.ActionParamInfo = ActionParamInfo;
|
|
128
147
|
// 天枢系统Contact结构体
|
|
129
148
|
class Contact extends $tea.Model {
|
|
130
149
|
constructor(map) {
|
|
@@ -956,6 +975,33 @@ class SecurityDataQueryStruct extends $tea.Model {
|
|
|
956
975
|
}
|
|
957
976
|
}
|
|
958
977
|
exports.SecurityDataQueryStruct = SecurityDataQueryStruct;
|
|
978
|
+
// 触达策略信息
|
|
979
|
+
class ActionPlanDetailInfo extends $tea.Model {
|
|
980
|
+
constructor(map) {
|
|
981
|
+
super(map);
|
|
982
|
+
}
|
|
983
|
+
static names() {
|
|
984
|
+
return {
|
|
985
|
+
sceneStrategyId: 'scene_strategy_id',
|
|
986
|
+
sceneStrategyName: 'scene_strategy_name',
|
|
987
|
+
sceneStrategyStatus: 'scene_strategy_status',
|
|
988
|
+
gmtCreate: 'gmt_create',
|
|
989
|
+
gmtModified: 'gmt_modified',
|
|
990
|
+
actionParamInfo: 'action_param_info',
|
|
991
|
+
};
|
|
992
|
+
}
|
|
993
|
+
static types() {
|
|
994
|
+
return {
|
|
995
|
+
sceneStrategyId: 'number',
|
|
996
|
+
sceneStrategyName: 'string',
|
|
997
|
+
sceneStrategyStatus: 'string',
|
|
998
|
+
gmtCreate: 'string',
|
|
999
|
+
gmtModified: 'string',
|
|
1000
|
+
actionParamInfo: { 'type': 'array', 'itemType': ActionParamInfo },
|
|
1001
|
+
};
|
|
1002
|
+
}
|
|
1003
|
+
}
|
|
1004
|
+
exports.ActionPlanDetailInfo = ActionPlanDetailInfo;
|
|
959
1005
|
// 标签信息
|
|
960
1006
|
class RiskLabelInfo extends $tea.Model {
|
|
961
1007
|
constructor(map) {
|
|
@@ -1370,6 +1416,105 @@ class RtopCrowdRiskSummaryResp extends $tea.Model {
|
|
|
1370
1416
|
}
|
|
1371
1417
|
}
|
|
1372
1418
|
exports.RtopCrowdRiskSummaryResp = RtopCrowdRiskSummaryResp;
|
|
1419
|
+
// 营销盾外呼记录
|
|
1420
|
+
class CommonRobotCallDetail extends $tea.Model {
|
|
1421
|
+
constructor(map) {
|
|
1422
|
+
super(map);
|
|
1423
|
+
}
|
|
1424
|
+
static names() {
|
|
1425
|
+
return {
|
|
1426
|
+
extInfo: 'ext_info',
|
|
1427
|
+
resultCode: 'result_code',
|
|
1428
|
+
customerKey: 'customer_key',
|
|
1429
|
+
currentCallTimes: 'current_call_times',
|
|
1430
|
+
keyTemplate: 'key_template',
|
|
1431
|
+
batchId: 'batch_id',
|
|
1432
|
+
callType: 'call_type',
|
|
1433
|
+
tag: 'tag',
|
|
1434
|
+
callId: 'call_id',
|
|
1435
|
+
taskId: 'task_id',
|
|
1436
|
+
templateId: 'template_id',
|
|
1437
|
+
statusCode: 'status_code',
|
|
1438
|
+
statusDescription: 'status_description',
|
|
1439
|
+
transferStatusCode: 'transfer_status_code',
|
|
1440
|
+
transferStatus: 'transfer_status',
|
|
1441
|
+
agentId: 'agent_id',
|
|
1442
|
+
agentTag: 'agent_tag',
|
|
1443
|
+
agentExtension: 'agent_extension',
|
|
1444
|
+
importTime: 'import_time',
|
|
1445
|
+
callBeginTime: 'call_begin_time',
|
|
1446
|
+
ringTime: 'ring_time',
|
|
1447
|
+
answerTime: 'answer_time',
|
|
1448
|
+
speakingTime: 'speaking_time',
|
|
1449
|
+
speakingDuration: 'speaking_duration',
|
|
1450
|
+
hangupTime: 'hangup_time',
|
|
1451
|
+
speakingTurns: 'speaking_turns',
|
|
1452
|
+
agentSpeakingTime: 'agent_speaking_time',
|
|
1453
|
+
agentSpeakingDuration: 'agent_speaking_duration',
|
|
1454
|
+
intentTag: 'intent_tag',
|
|
1455
|
+
intentDescription: 'intent_description',
|
|
1456
|
+
individualTag: 'individual_tag',
|
|
1457
|
+
keywords: 'keywords',
|
|
1458
|
+
hungupType: 'hungup_type',
|
|
1459
|
+
sms: 'sms',
|
|
1460
|
+
chatRecord: 'chat_record',
|
|
1461
|
+
chats: 'chats',
|
|
1462
|
+
addWx: 'add_wx',
|
|
1463
|
+
addWxStatus: 'add_wx_status',
|
|
1464
|
+
answerRecall: 'answer_recall',
|
|
1465
|
+
properties: 'properties',
|
|
1466
|
+
bizProperties: 'biz_properties',
|
|
1467
|
+
interceptReason: 'intercept_reason',
|
|
1468
|
+
};
|
|
1469
|
+
}
|
|
1470
|
+
static types() {
|
|
1471
|
+
return {
|
|
1472
|
+
extInfo: 'string',
|
|
1473
|
+
resultCode: 'string',
|
|
1474
|
+
customerKey: 'string',
|
|
1475
|
+
currentCallTimes: 'number',
|
|
1476
|
+
keyTemplate: 'string',
|
|
1477
|
+
batchId: 'string',
|
|
1478
|
+
callType: 'number',
|
|
1479
|
+
tag: 'string',
|
|
1480
|
+
callId: 'string',
|
|
1481
|
+
taskId: 'number',
|
|
1482
|
+
templateId: 'number',
|
|
1483
|
+
statusCode: 'number',
|
|
1484
|
+
statusDescription: 'string',
|
|
1485
|
+
transferStatusCode: 'number',
|
|
1486
|
+
transferStatus: 'string',
|
|
1487
|
+
agentId: 'number',
|
|
1488
|
+
agentTag: 'string',
|
|
1489
|
+
agentExtension: 'string',
|
|
1490
|
+
importTime: 'string',
|
|
1491
|
+
callBeginTime: 'string',
|
|
1492
|
+
ringTime: 'number',
|
|
1493
|
+
answerTime: 'string',
|
|
1494
|
+
speakingTime: 'string',
|
|
1495
|
+
speakingDuration: 'number',
|
|
1496
|
+
hangupTime: 'string',
|
|
1497
|
+
speakingTurns: 'number',
|
|
1498
|
+
agentSpeakingTime: 'string',
|
|
1499
|
+
agentSpeakingDuration: 'number',
|
|
1500
|
+
intentTag: 'string',
|
|
1501
|
+
intentDescription: 'string',
|
|
1502
|
+
individualTag: 'string',
|
|
1503
|
+
keywords: 'string',
|
|
1504
|
+
hungupType: 'number',
|
|
1505
|
+
sms: 'string',
|
|
1506
|
+
chatRecord: 'string',
|
|
1507
|
+
chats: 'string',
|
|
1508
|
+
addWx: 'number',
|
|
1509
|
+
addWxStatus: 'string',
|
|
1510
|
+
answerRecall: 'number',
|
|
1511
|
+
properties: 'string',
|
|
1512
|
+
bizProperties: 'string',
|
|
1513
|
+
interceptReason: 'string',
|
|
1514
|
+
};
|
|
1515
|
+
}
|
|
1516
|
+
}
|
|
1517
|
+
exports.CommonRobotCallDetail = CommonRobotCallDetail;
|
|
1373
1518
|
// 回执统计结果
|
|
1374
1519
|
class StatisticResult extends $tea.Model {
|
|
1375
1520
|
constructor(map) {
|
|
@@ -2471,6 +2616,25 @@ class SmsReponse extends $tea.Model {
|
|
|
2471
2616
|
}
|
|
2472
2617
|
}
|
|
2473
2618
|
exports.SmsReponse = SmsReponse;
|
|
2619
|
+
// 风控事件咨询查询入参
|
|
2620
|
+
class EventInfo extends $tea.Model {
|
|
2621
|
+
constructor(map) {
|
|
2622
|
+
super(map);
|
|
2623
|
+
}
|
|
2624
|
+
static names() {
|
|
2625
|
+
return {
|
|
2626
|
+
eventCode: 'event_code',
|
|
2627
|
+
gmtOccur: 'gmt_occur',
|
|
2628
|
+
};
|
|
2629
|
+
}
|
|
2630
|
+
static types() {
|
|
2631
|
+
return {
|
|
2632
|
+
eventCode: 'string',
|
|
2633
|
+
gmtOccur: 'string',
|
|
2634
|
+
};
|
|
2635
|
+
}
|
|
2636
|
+
}
|
|
2637
|
+
exports.EventInfo = EventInfo;
|
|
2474
2638
|
// 天枢专用RepayTrail结构体
|
|
2475
2639
|
class RepayTrail extends $tea.Model {
|
|
2476
2640
|
constructor(map) {
|
|
@@ -2905,6 +3069,58 @@ class ExecSecurityRiskdataserviceResponse extends $tea.Model {
|
|
|
2905
3069
|
}
|
|
2906
3070
|
}
|
|
2907
3071
|
exports.ExecSecurityRiskdataserviceResponse = ExecSecurityRiskdataserviceResponse;
|
|
3072
|
+
class QuerySaasSecurityPolicyRequest extends $tea.Model {
|
|
3073
|
+
constructor(map) {
|
|
3074
|
+
super(map);
|
|
3075
|
+
}
|
|
3076
|
+
static names() {
|
|
3077
|
+
return {
|
|
3078
|
+
authToken: 'auth_token',
|
|
3079
|
+
productInstanceId: 'product_instance_id',
|
|
3080
|
+
eventInfo: 'event_info',
|
|
3081
|
+
riskType: 'risk_type',
|
|
3082
|
+
};
|
|
3083
|
+
}
|
|
3084
|
+
static types() {
|
|
3085
|
+
return {
|
|
3086
|
+
authToken: 'string',
|
|
3087
|
+
productInstanceId: 'string',
|
|
3088
|
+
eventInfo: EventInfo,
|
|
3089
|
+
riskType: 'string',
|
|
3090
|
+
};
|
|
3091
|
+
}
|
|
3092
|
+
}
|
|
3093
|
+
exports.QuerySaasSecurityPolicyRequest = QuerySaasSecurityPolicyRequest;
|
|
3094
|
+
class QuerySaasSecurityPolicyResponse extends $tea.Model {
|
|
3095
|
+
constructor(map) {
|
|
3096
|
+
super(map);
|
|
3097
|
+
}
|
|
3098
|
+
static names() {
|
|
3099
|
+
return {
|
|
3100
|
+
reqMsgId: 'req_msg_id',
|
|
3101
|
+
resultCode: 'result_code',
|
|
3102
|
+
resultMsg: 'result_msg',
|
|
3103
|
+
modelDetails: 'model_details',
|
|
3104
|
+
securityId: 'security_id',
|
|
3105
|
+
securityResult: 'security_result',
|
|
3106
|
+
strategyDetails: 'strategy_details',
|
|
3107
|
+
dfSceneInfos: 'df_scene_infos',
|
|
3108
|
+
};
|
|
3109
|
+
}
|
|
3110
|
+
static types() {
|
|
3111
|
+
return {
|
|
3112
|
+
reqMsgId: 'string',
|
|
3113
|
+
resultCode: 'string',
|
|
3114
|
+
resultMsg: 'string',
|
|
3115
|
+
modelDetails: { 'type': 'array', 'itemType': ModelDetails },
|
|
3116
|
+
securityId: 'string',
|
|
3117
|
+
securityResult: 'string',
|
|
3118
|
+
strategyDetails: { 'type': 'array', 'itemType': StrategyDetails },
|
|
3119
|
+
dfSceneInfos: { 'type': 'array', 'itemType': DfSceneInfos },
|
|
3120
|
+
};
|
|
3121
|
+
}
|
|
3122
|
+
}
|
|
3123
|
+
exports.QuerySaasSecurityPolicyResponse = QuerySaasSecurityPolicyResponse;
|
|
2908
3124
|
class QueryDubheTestRequest extends $tea.Model {
|
|
2909
3125
|
constructor(map) {
|
|
2910
3126
|
super(map);
|
|
@@ -9761,7 +9977,7 @@ class QueryUmktTenantActionplaninfoRequest extends $tea.Model {
|
|
|
9761
9977
|
productInstanceId: 'product_instance_id',
|
|
9762
9978
|
pageNum: 'page_num',
|
|
9763
9979
|
pageSize: 'page_size',
|
|
9764
|
-
|
|
9980
|
+
contentType: 'content_type',
|
|
9765
9981
|
};
|
|
9766
9982
|
}
|
|
9767
9983
|
static types() {
|
|
@@ -9770,7 +9986,7 @@ class QueryUmktTenantActionplaninfoRequest extends $tea.Model {
|
|
|
9770
9986
|
productInstanceId: 'string',
|
|
9771
9987
|
pageNum: 'number',
|
|
9772
9988
|
pageSize: 'number',
|
|
9773
|
-
|
|
9989
|
+
contentType: 'string',
|
|
9774
9990
|
};
|
|
9775
9991
|
}
|
|
9776
9992
|
}
|
|
@@ -9975,6 +10191,7 @@ class CallbackUmktRobotcallRequest extends $tea.Model {
|
|
|
9975
10191
|
tag: 'tag',
|
|
9976
10192
|
callId: 'call_id',
|
|
9977
10193
|
taskId: 'task_id',
|
|
10194
|
+
taskName: 'task_name',
|
|
9978
10195
|
templateId: 'template_id',
|
|
9979
10196
|
statusCode: 'status_code',
|
|
9980
10197
|
statusDescription: 'status_description',
|
|
@@ -10022,6 +10239,7 @@ class CallbackUmktRobotcallRequest extends $tea.Model {
|
|
|
10022
10239
|
tag: 'string',
|
|
10023
10240
|
callId: 'string',
|
|
10024
10241
|
taskId: 'number',
|
|
10242
|
+
taskName: 'string',
|
|
10025
10243
|
templateId: 'number',
|
|
10026
10244
|
statusCode: 'number',
|
|
10027
10245
|
statusDescription: 'string',
|
|
@@ -10152,6 +10370,8 @@ class CallbackUmktSmsReportRequest extends $tea.Model {
|
|
|
10152
10370
|
bizId: 'biz_id',
|
|
10153
10371
|
bizProperties: 'biz_properties',
|
|
10154
10372
|
smsType: 'sms_type',
|
|
10373
|
+
serviceProvider: 'service_provider',
|
|
10374
|
+
city: 'city',
|
|
10155
10375
|
};
|
|
10156
10376
|
}
|
|
10157
10377
|
static types() {
|
|
@@ -10169,6 +10389,8 @@ class CallbackUmktSmsReportRequest extends $tea.Model {
|
|
|
10169
10389
|
bizId: 'string',
|
|
10170
10390
|
bizProperties: 'string',
|
|
10171
10391
|
smsType: 'string',
|
|
10392
|
+
serviceProvider: 'string',
|
|
10393
|
+
city: 'string',
|
|
10172
10394
|
};
|
|
10173
10395
|
}
|
|
10174
10396
|
}
|
|
@@ -10193,35 +10415,31 @@ class CallbackUmktSmsReportResponse extends $tea.Model {
|
|
|
10193
10415
|
}
|
|
10194
10416
|
}
|
|
10195
10417
|
exports.CallbackUmktSmsReportResponse = CallbackUmktSmsReportResponse;
|
|
10196
|
-
class
|
|
10418
|
+
class BatchqueryUmktTenantActionplaninfoRequest extends $tea.Model {
|
|
10197
10419
|
constructor(map) {
|
|
10198
10420
|
super(map);
|
|
10199
10421
|
}
|
|
10200
10422
|
static names() {
|
|
10201
10423
|
return {
|
|
10202
10424
|
authToken: 'auth_token',
|
|
10203
|
-
|
|
10204
|
-
|
|
10205
|
-
|
|
10206
|
-
|
|
10207
|
-
mimeType: 'mime_type',
|
|
10208
|
-
apiCluster: 'api_cluster',
|
|
10425
|
+
productInstanceId: 'product_instance_id',
|
|
10426
|
+
contentType: 'content_type',
|
|
10427
|
+
pageNum: 'page_num',
|
|
10428
|
+
pageSize: 'page_size',
|
|
10209
10429
|
};
|
|
10210
10430
|
}
|
|
10211
10431
|
static types() {
|
|
10212
10432
|
return {
|
|
10213
10433
|
authToken: 'string',
|
|
10214
|
-
|
|
10215
|
-
|
|
10216
|
-
|
|
10217
|
-
|
|
10218
|
-
mimeType: 'string',
|
|
10219
|
-
apiCluster: 'string',
|
|
10434
|
+
productInstanceId: 'string',
|
|
10435
|
+
contentType: 'string',
|
|
10436
|
+
pageNum: 'number',
|
|
10437
|
+
pageSize: 'number',
|
|
10220
10438
|
};
|
|
10221
10439
|
}
|
|
10222
10440
|
}
|
|
10223
|
-
exports.
|
|
10224
|
-
class
|
|
10441
|
+
exports.BatchqueryUmktTenantActionplaninfoRequest = BatchqueryUmktTenantActionplaninfoRequest;
|
|
10442
|
+
class BatchqueryUmktTenantActionplaninfoResponse extends $tea.Model {
|
|
10225
10443
|
constructor(map) {
|
|
10226
10444
|
super(map);
|
|
10227
10445
|
}
|
|
@@ -10230,10 +10448,8 @@ class CreateAntcloudGatewayxFileUploadResponse extends $tea.Model {
|
|
|
10230
10448
|
reqMsgId: 'req_msg_id',
|
|
10231
10449
|
resultCode: 'result_code',
|
|
10232
10450
|
resultMsg: 'result_msg',
|
|
10233
|
-
|
|
10234
|
-
|
|
10235
|
-
uploadHeaders: 'upload_headers',
|
|
10236
|
-
uploadUrl: 'upload_url',
|
|
10451
|
+
queryResult: 'query_result',
|
|
10452
|
+
totalCount: 'total_count',
|
|
10237
10453
|
};
|
|
10238
10454
|
}
|
|
10239
10455
|
static types() {
|
|
@@ -10241,46 +10457,386 @@ class CreateAntcloudGatewayxFileUploadResponse extends $tea.Model {
|
|
|
10241
10457
|
reqMsgId: 'string',
|
|
10242
10458
|
resultCode: 'string',
|
|
10243
10459
|
resultMsg: 'string',
|
|
10244
|
-
|
|
10245
|
-
|
|
10246
|
-
uploadHeaders: { 'type': 'array', 'itemType': XNameValuePair },
|
|
10247
|
-
uploadUrl: 'string',
|
|
10460
|
+
queryResult: { 'type': 'array', 'itemType': ActionPlanDetailInfo },
|
|
10461
|
+
totalCount: 'number',
|
|
10248
10462
|
};
|
|
10249
10463
|
}
|
|
10250
10464
|
}
|
|
10251
|
-
exports.
|
|
10252
|
-
class
|
|
10253
|
-
|
|
10254
|
-
|
|
10255
|
-
* @param config config contains the necessary information to create a client
|
|
10256
|
-
*/
|
|
10257
|
-
constructor(config) {
|
|
10258
|
-
if (tea_util_1.default.isUnset($tea.toMap(config))) {
|
|
10259
|
-
throw $tea.newError({
|
|
10260
|
-
code: "ParameterMissing",
|
|
10261
|
-
message: "'config' can not be unset",
|
|
10262
|
-
});
|
|
10263
|
-
}
|
|
10264
|
-
this._accessKeyId = config.accessKeyId;
|
|
10265
|
-
this._accessKeySecret = config.accessKeySecret;
|
|
10266
|
-
this._securityToken = config.securityToken;
|
|
10267
|
-
this._endpoint = config.endpoint;
|
|
10268
|
-
this._protocol = config.protocol;
|
|
10269
|
-
this._userAgent = config.userAgent;
|
|
10270
|
-
this._readTimeout = tea_util_1.default.defaultNumber(config.readTimeout, 20000);
|
|
10271
|
-
this._connectTimeout = tea_util_1.default.defaultNumber(config.connectTimeout, 20000);
|
|
10272
|
-
this._httpProxy = config.httpProxy;
|
|
10273
|
-
this._httpsProxy = config.httpsProxy;
|
|
10274
|
-
this._noProxy = config.noProxy;
|
|
10275
|
-
this._socks5Proxy = config.socks5Proxy;
|
|
10276
|
-
this._socks5NetWork = config.socks5NetWork;
|
|
10277
|
-
this._maxIdleConns = tea_util_1.default.defaultNumber(config.maxIdleConns, 60000);
|
|
10278
|
-
this._maxIdleTimeMillis = tea_util_1.default.defaultNumber(config.maxIdleTimeMillis, 5);
|
|
10279
|
-
this._keepAliveDurationMillis = tea_util_1.default.defaultNumber(config.keepAliveDurationMillis, 5000);
|
|
10280
|
-
this._maxRequests = tea_util_1.default.defaultNumber(config.maxRequests, 100);
|
|
10281
|
-
this._maxRequestsPerHost = tea_util_1.default.defaultNumber(config.maxRequestsPerHost, 100);
|
|
10465
|
+
exports.BatchqueryUmktTenantActionplaninfoResponse = BatchqueryUmktTenantActionplaninfoResponse;
|
|
10466
|
+
class BatchqueryUmktRobotcallDetailRequest extends $tea.Model {
|
|
10467
|
+
constructor(map) {
|
|
10468
|
+
super(map);
|
|
10282
10469
|
}
|
|
10283
|
-
|
|
10470
|
+
static names() {
|
|
10471
|
+
return {
|
|
10472
|
+
authToken: 'auth_token',
|
|
10473
|
+
productInstanceId: 'product_instance_id',
|
|
10474
|
+
bizId: 'biz_id',
|
|
10475
|
+
phoneNumbers: 'phone_numbers',
|
|
10476
|
+
templateType: 'template_type',
|
|
10477
|
+
sceneStrategyId: 'scene_strategy_id',
|
|
10478
|
+
intentTags: 'intent_tags',
|
|
10479
|
+
callDate: 'call_date',
|
|
10480
|
+
endCallDate: 'end_call_date',
|
|
10481
|
+
pageNum: 'page_num',
|
|
10482
|
+
pageSize: 'page_size',
|
|
10483
|
+
};
|
|
10484
|
+
}
|
|
10485
|
+
static types() {
|
|
10486
|
+
return {
|
|
10487
|
+
authToken: 'string',
|
|
10488
|
+
productInstanceId: 'string',
|
|
10489
|
+
bizId: 'string',
|
|
10490
|
+
phoneNumbers: { 'type': 'array', 'itemType': 'string' },
|
|
10491
|
+
templateType: 'string',
|
|
10492
|
+
sceneStrategyId: 'number',
|
|
10493
|
+
intentTags: { 'type': 'array', 'itemType': 'string' },
|
|
10494
|
+
callDate: 'string',
|
|
10495
|
+
endCallDate: 'string',
|
|
10496
|
+
pageNum: 'number',
|
|
10497
|
+
pageSize: 'number',
|
|
10498
|
+
};
|
|
10499
|
+
}
|
|
10500
|
+
}
|
|
10501
|
+
exports.BatchqueryUmktRobotcallDetailRequest = BatchqueryUmktRobotcallDetailRequest;
|
|
10502
|
+
class BatchqueryUmktRobotcallDetailResponse extends $tea.Model {
|
|
10503
|
+
constructor(map) {
|
|
10504
|
+
super(map);
|
|
10505
|
+
}
|
|
10506
|
+
static names() {
|
|
10507
|
+
return {
|
|
10508
|
+
reqMsgId: 'req_msg_id',
|
|
10509
|
+
resultCode: 'result_code',
|
|
10510
|
+
resultMsg: 'result_msg',
|
|
10511
|
+
outInfo: 'out_info',
|
|
10512
|
+
callInfo: 'call_info',
|
|
10513
|
+
};
|
|
10514
|
+
}
|
|
10515
|
+
static types() {
|
|
10516
|
+
return {
|
|
10517
|
+
reqMsgId: 'string',
|
|
10518
|
+
resultCode: 'string',
|
|
10519
|
+
resultMsg: 'string',
|
|
10520
|
+
outInfo: 'string',
|
|
10521
|
+
callInfo: { 'type': 'array', 'itemType': CommonRobotCallDetail },
|
|
10522
|
+
};
|
|
10523
|
+
}
|
|
10524
|
+
}
|
|
10525
|
+
exports.BatchqueryUmktRobotcallDetailResponse = BatchqueryUmktRobotcallDetailResponse;
|
|
10526
|
+
class BatchqueryUmktActionplanDetailRequest extends $tea.Model {
|
|
10527
|
+
constructor(map) {
|
|
10528
|
+
super(map);
|
|
10529
|
+
}
|
|
10530
|
+
static names() {
|
|
10531
|
+
return {
|
|
10532
|
+
authToken: 'auth_token',
|
|
10533
|
+
productInstanceId: 'product_instance_id',
|
|
10534
|
+
sceneStrategyId: 'scene_strategy_id',
|
|
10535
|
+
};
|
|
10536
|
+
}
|
|
10537
|
+
static types() {
|
|
10538
|
+
return {
|
|
10539
|
+
authToken: 'string',
|
|
10540
|
+
productInstanceId: 'string',
|
|
10541
|
+
sceneStrategyId: { 'type': 'array', 'itemType': 'number' },
|
|
10542
|
+
};
|
|
10543
|
+
}
|
|
10544
|
+
}
|
|
10545
|
+
exports.BatchqueryUmktActionplanDetailRequest = BatchqueryUmktActionplanDetailRequest;
|
|
10546
|
+
class BatchqueryUmktActionplanDetailResponse extends $tea.Model {
|
|
10547
|
+
constructor(map) {
|
|
10548
|
+
super(map);
|
|
10549
|
+
}
|
|
10550
|
+
static names() {
|
|
10551
|
+
return {
|
|
10552
|
+
reqMsgId: 'req_msg_id',
|
|
10553
|
+
resultCode: 'result_code',
|
|
10554
|
+
resultMsg: 'result_msg',
|
|
10555
|
+
actionPlanDetailInfo: 'action_plan_detail_info',
|
|
10556
|
+
};
|
|
10557
|
+
}
|
|
10558
|
+
static types() {
|
|
10559
|
+
return {
|
|
10560
|
+
reqMsgId: 'string',
|
|
10561
|
+
resultCode: 'string',
|
|
10562
|
+
resultMsg: 'string',
|
|
10563
|
+
actionPlanDetailInfo: { 'type': 'array', 'itemType': ActionPlanDetailInfo },
|
|
10564
|
+
};
|
|
10565
|
+
}
|
|
10566
|
+
}
|
|
10567
|
+
exports.BatchqueryUmktActionplanDetailResponse = BatchqueryUmktActionplanDetailResponse;
|
|
10568
|
+
class PushRiskplusUmktCommonbackflowRequest extends $tea.Model {
|
|
10569
|
+
constructor(map) {
|
|
10570
|
+
super(map);
|
|
10571
|
+
}
|
|
10572
|
+
static names() {
|
|
10573
|
+
return {
|
|
10574
|
+
authToken: 'auth_token',
|
|
10575
|
+
productInstanceId: 'product_instance_id',
|
|
10576
|
+
tenantId: 'tenant_id',
|
|
10577
|
+
backFlowTemplateId: 'back_flow_template_id',
|
|
10578
|
+
backFlowDesc: 'back_flow_desc',
|
|
10579
|
+
properties: 'properties',
|
|
10580
|
+
};
|
|
10581
|
+
}
|
|
10582
|
+
static types() {
|
|
10583
|
+
return {
|
|
10584
|
+
authToken: 'string',
|
|
10585
|
+
productInstanceId: 'string',
|
|
10586
|
+
tenantId: 'number',
|
|
10587
|
+
backFlowTemplateId: 'number',
|
|
10588
|
+
backFlowDesc: 'string',
|
|
10589
|
+
properties: 'string',
|
|
10590
|
+
};
|
|
10591
|
+
}
|
|
10592
|
+
}
|
|
10593
|
+
exports.PushRiskplusUmktCommonbackflowRequest = PushRiskplusUmktCommonbackflowRequest;
|
|
10594
|
+
class PushRiskplusUmktCommonbackflowResponse extends $tea.Model {
|
|
10595
|
+
constructor(map) {
|
|
10596
|
+
super(map);
|
|
10597
|
+
}
|
|
10598
|
+
static names() {
|
|
10599
|
+
return {
|
|
10600
|
+
reqMsgId: 'req_msg_id',
|
|
10601
|
+
resultCode: 'result_code',
|
|
10602
|
+
resultMsg: 'result_msg',
|
|
10603
|
+
};
|
|
10604
|
+
}
|
|
10605
|
+
static types() {
|
|
10606
|
+
return {
|
|
10607
|
+
reqMsgId: 'string',
|
|
10608
|
+
resultCode: 'string',
|
|
10609
|
+
resultMsg: 'string',
|
|
10610
|
+
};
|
|
10611
|
+
}
|
|
10612
|
+
}
|
|
10613
|
+
exports.PushRiskplusUmktCommonbackflowResponse = PushRiskplusUmktCommonbackflowResponse;
|
|
10614
|
+
class PushUmktCommonDataRequest extends $tea.Model {
|
|
10615
|
+
constructor(map) {
|
|
10616
|
+
super(map);
|
|
10617
|
+
}
|
|
10618
|
+
static names() {
|
|
10619
|
+
return {
|
|
10620
|
+
authToken: 'auth_token',
|
|
10621
|
+
productInstanceId: 'product_instance_id',
|
|
10622
|
+
eventId: 'event_id',
|
|
10623
|
+
properties: 'properties',
|
|
10624
|
+
};
|
|
10625
|
+
}
|
|
10626
|
+
static types() {
|
|
10627
|
+
return {
|
|
10628
|
+
authToken: 'string',
|
|
10629
|
+
productInstanceId: 'string',
|
|
10630
|
+
eventId: 'number',
|
|
10631
|
+
properties: 'string',
|
|
10632
|
+
};
|
|
10633
|
+
}
|
|
10634
|
+
}
|
|
10635
|
+
exports.PushUmktCommonDataRequest = PushUmktCommonDataRequest;
|
|
10636
|
+
class PushUmktCommonDataResponse extends $tea.Model {
|
|
10637
|
+
constructor(map) {
|
|
10638
|
+
super(map);
|
|
10639
|
+
}
|
|
10640
|
+
static names() {
|
|
10641
|
+
return {
|
|
10642
|
+
reqMsgId: 'req_msg_id',
|
|
10643
|
+
resultCode: 'result_code',
|
|
10644
|
+
resultMsg: 'result_msg',
|
|
10645
|
+
};
|
|
10646
|
+
}
|
|
10647
|
+
static types() {
|
|
10648
|
+
return {
|
|
10649
|
+
reqMsgId: 'string',
|
|
10650
|
+
resultCode: 'string',
|
|
10651
|
+
resultMsg: 'string',
|
|
10652
|
+
};
|
|
10653
|
+
}
|
|
10654
|
+
}
|
|
10655
|
+
exports.PushUmktCommonDataResponse = PushUmktCommonDataResponse;
|
|
10656
|
+
class PushUmktCustomerGroupRequest extends $tea.Model {
|
|
10657
|
+
constructor(map) {
|
|
10658
|
+
super(map);
|
|
10659
|
+
}
|
|
10660
|
+
static names() {
|
|
10661
|
+
return {
|
|
10662
|
+
authToken: 'auth_token',
|
|
10663
|
+
productInstanceId: 'product_instance_id',
|
|
10664
|
+
eventId: 'event_id',
|
|
10665
|
+
properties: 'properties',
|
|
10666
|
+
};
|
|
10667
|
+
}
|
|
10668
|
+
static types() {
|
|
10669
|
+
return {
|
|
10670
|
+
authToken: 'string',
|
|
10671
|
+
productInstanceId: 'string',
|
|
10672
|
+
eventId: 'string',
|
|
10673
|
+
properties: 'string',
|
|
10674
|
+
};
|
|
10675
|
+
}
|
|
10676
|
+
}
|
|
10677
|
+
exports.PushUmktCustomerGroupRequest = PushUmktCustomerGroupRequest;
|
|
10678
|
+
class PushUmktCustomerGroupResponse extends $tea.Model {
|
|
10679
|
+
constructor(map) {
|
|
10680
|
+
super(map);
|
|
10681
|
+
}
|
|
10682
|
+
static names() {
|
|
10683
|
+
return {
|
|
10684
|
+
reqMsgId: 'req_msg_id',
|
|
10685
|
+
resultCode: 'result_code',
|
|
10686
|
+
resultMsg: 'result_msg',
|
|
10687
|
+
};
|
|
10688
|
+
}
|
|
10689
|
+
static types() {
|
|
10690
|
+
return {
|
|
10691
|
+
reqMsgId: 'string',
|
|
10692
|
+
resultCode: 'string',
|
|
10693
|
+
resultMsg: 'string',
|
|
10694
|
+
};
|
|
10695
|
+
}
|
|
10696
|
+
}
|
|
10697
|
+
exports.PushUmktCustomerGroupResponse = PushUmktCustomerGroupResponse;
|
|
10698
|
+
class BatchqueryUmktTaskDetailRequest extends $tea.Model {
|
|
10699
|
+
constructor(map) {
|
|
10700
|
+
super(map);
|
|
10701
|
+
}
|
|
10702
|
+
static names() {
|
|
10703
|
+
return {
|
|
10704
|
+
authToken: 'auth_token',
|
|
10705
|
+
productInstanceId: 'product_instance_id',
|
|
10706
|
+
bizId: 'biz_id',
|
|
10707
|
+
customerKeys: 'customer_keys',
|
|
10708
|
+
keyTemplate: 'key_template',
|
|
10709
|
+
sceneStrategyId: 'scene_strategy_id',
|
|
10710
|
+
callDate: 'call_date',
|
|
10711
|
+
endCallDate: 'end_call_date',
|
|
10712
|
+
};
|
|
10713
|
+
}
|
|
10714
|
+
static types() {
|
|
10715
|
+
return {
|
|
10716
|
+
authToken: 'string',
|
|
10717
|
+
productInstanceId: 'string',
|
|
10718
|
+
bizId: 'string',
|
|
10719
|
+
customerKeys: { 'type': 'array', 'itemType': 'string' },
|
|
10720
|
+
keyTemplate: 'string',
|
|
10721
|
+
sceneStrategyId: 'number',
|
|
10722
|
+
callDate: 'string',
|
|
10723
|
+
endCallDate: 'string',
|
|
10724
|
+
};
|
|
10725
|
+
}
|
|
10726
|
+
}
|
|
10727
|
+
exports.BatchqueryUmktTaskDetailRequest = BatchqueryUmktTaskDetailRequest;
|
|
10728
|
+
class BatchqueryUmktTaskDetailResponse extends $tea.Model {
|
|
10729
|
+
constructor(map) {
|
|
10730
|
+
super(map);
|
|
10731
|
+
}
|
|
10732
|
+
static names() {
|
|
10733
|
+
return {
|
|
10734
|
+
reqMsgId: 'req_msg_id',
|
|
10735
|
+
resultCode: 'result_code',
|
|
10736
|
+
resultMsg: 'result_msg',
|
|
10737
|
+
outInfo: 'out_info',
|
|
10738
|
+
callInfo: 'call_info',
|
|
10739
|
+
};
|
|
10740
|
+
}
|
|
10741
|
+
static types() {
|
|
10742
|
+
return {
|
|
10743
|
+
reqMsgId: 'string',
|
|
10744
|
+
resultCode: 'string',
|
|
10745
|
+
resultMsg: 'string',
|
|
10746
|
+
outInfo: 'string',
|
|
10747
|
+
callInfo: { 'type': 'array', 'itemType': CommonRobotCallDetail },
|
|
10748
|
+
};
|
|
10749
|
+
}
|
|
10750
|
+
}
|
|
10751
|
+
exports.BatchqueryUmktTaskDetailResponse = BatchqueryUmktTaskDetailResponse;
|
|
10752
|
+
class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
10753
|
+
constructor(map) {
|
|
10754
|
+
super(map);
|
|
10755
|
+
}
|
|
10756
|
+
static names() {
|
|
10757
|
+
return {
|
|
10758
|
+
authToken: 'auth_token',
|
|
10759
|
+
apiCode: 'api_code',
|
|
10760
|
+
fileLabel: 'file_label',
|
|
10761
|
+
fileMetadata: 'file_metadata',
|
|
10762
|
+
fileName: 'file_name',
|
|
10763
|
+
mimeType: 'mime_type',
|
|
10764
|
+
apiCluster: 'api_cluster',
|
|
10765
|
+
};
|
|
10766
|
+
}
|
|
10767
|
+
static types() {
|
|
10768
|
+
return {
|
|
10769
|
+
authToken: 'string',
|
|
10770
|
+
apiCode: 'string',
|
|
10771
|
+
fileLabel: 'string',
|
|
10772
|
+
fileMetadata: 'string',
|
|
10773
|
+
fileName: 'string',
|
|
10774
|
+
mimeType: 'string',
|
|
10775
|
+
apiCluster: 'string',
|
|
10776
|
+
};
|
|
10777
|
+
}
|
|
10778
|
+
}
|
|
10779
|
+
exports.CreateAntcloudGatewayxFileUploadRequest = CreateAntcloudGatewayxFileUploadRequest;
|
|
10780
|
+
class CreateAntcloudGatewayxFileUploadResponse extends $tea.Model {
|
|
10781
|
+
constructor(map) {
|
|
10782
|
+
super(map);
|
|
10783
|
+
}
|
|
10784
|
+
static names() {
|
|
10785
|
+
return {
|
|
10786
|
+
reqMsgId: 'req_msg_id',
|
|
10787
|
+
resultCode: 'result_code',
|
|
10788
|
+
resultMsg: 'result_msg',
|
|
10789
|
+
expiredTime: 'expired_time',
|
|
10790
|
+
fileId: 'file_id',
|
|
10791
|
+
uploadHeaders: 'upload_headers',
|
|
10792
|
+
uploadUrl: 'upload_url',
|
|
10793
|
+
};
|
|
10794
|
+
}
|
|
10795
|
+
static types() {
|
|
10796
|
+
return {
|
|
10797
|
+
reqMsgId: 'string',
|
|
10798
|
+
resultCode: 'string',
|
|
10799
|
+
resultMsg: 'string',
|
|
10800
|
+
expiredTime: 'string',
|
|
10801
|
+
fileId: 'string',
|
|
10802
|
+
uploadHeaders: { 'type': 'array', 'itemType': XNameValuePair },
|
|
10803
|
+
uploadUrl: 'string',
|
|
10804
|
+
};
|
|
10805
|
+
}
|
|
10806
|
+
}
|
|
10807
|
+
exports.CreateAntcloudGatewayxFileUploadResponse = CreateAntcloudGatewayxFileUploadResponse;
|
|
10808
|
+
class Client {
|
|
10809
|
+
/**
|
|
10810
|
+
* Init client with Config
|
|
10811
|
+
* @param config config contains the necessary information to create a client
|
|
10812
|
+
*/
|
|
10813
|
+
constructor(config) {
|
|
10814
|
+
if (tea_util_1.default.isUnset($tea.toMap(config))) {
|
|
10815
|
+
throw $tea.newError({
|
|
10816
|
+
code: "ParameterMissing",
|
|
10817
|
+
message: "'config' can not be unset",
|
|
10818
|
+
});
|
|
10819
|
+
}
|
|
10820
|
+
this._accessKeyId = config.accessKeyId;
|
|
10821
|
+
this._accessKeySecret = config.accessKeySecret;
|
|
10822
|
+
this._securityToken = config.securityToken;
|
|
10823
|
+
this._endpoint = config.endpoint;
|
|
10824
|
+
this._protocol = config.protocol;
|
|
10825
|
+
this._userAgent = config.userAgent;
|
|
10826
|
+
this._readTimeout = tea_util_1.default.defaultNumber(config.readTimeout, 20000);
|
|
10827
|
+
this._connectTimeout = tea_util_1.default.defaultNumber(config.connectTimeout, 20000);
|
|
10828
|
+
this._httpProxy = config.httpProxy;
|
|
10829
|
+
this._httpsProxy = config.httpsProxy;
|
|
10830
|
+
this._noProxy = config.noProxy;
|
|
10831
|
+
this._socks5Proxy = config.socks5Proxy;
|
|
10832
|
+
this._socks5NetWork = config.socks5NetWork;
|
|
10833
|
+
this._maxIdleConns = tea_util_1.default.defaultNumber(config.maxIdleConns, 60000);
|
|
10834
|
+
this._maxIdleTimeMillis = tea_util_1.default.defaultNumber(config.maxIdleTimeMillis, 5);
|
|
10835
|
+
this._keepAliveDurationMillis = tea_util_1.default.defaultNumber(config.keepAliveDurationMillis, 5000);
|
|
10836
|
+
this._maxRequests = tea_util_1.default.defaultNumber(config.maxRequests, 100);
|
|
10837
|
+
this._maxRequestsPerHost = tea_util_1.default.defaultNumber(config.maxRequestsPerHost, 100);
|
|
10838
|
+
}
|
|
10839
|
+
/**
|
|
10284
10840
|
* Encapsulate the request and invoke the network
|
|
10285
10841
|
* @param action api name
|
|
10286
10842
|
* @param protocol http or https
|
|
@@ -10337,7 +10893,7 @@ class Client {
|
|
|
10337
10893
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
10338
10894
|
access_key: this._accessKeyId,
|
|
10339
10895
|
base_sdk_version: "TeaSDK-2.0",
|
|
10340
|
-
sdk_version: "1.16.
|
|
10896
|
+
sdk_version: "1.16.59",
|
|
10341
10897
|
_prod_code: "RISKPLUS",
|
|
10342
10898
|
_prod_channel: "undefined",
|
|
10343
10899
|
};
|
|
@@ -10493,6 +11049,23 @@ class Client {
|
|
|
10493
11049
|
tea_util_1.default.validateModel(request);
|
|
10494
11050
|
return $tea.cast(await this.doRequest("1.0", "riskplus.security.riskdataservice.exec", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new ExecSecurityRiskdataserviceResponse({}));
|
|
10495
11051
|
}
|
|
11052
|
+
/**
|
|
11053
|
+
* Description: 风控云SaaS租户调用接口
|
|
11054
|
+
* Summary: 风控云SaaS租户调用接口
|
|
11055
|
+
*/
|
|
11056
|
+
async querySaasSecurityPolicy(request) {
|
|
11057
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
11058
|
+
let headers = {};
|
|
11059
|
+
return await this.querySaasSecurityPolicyEx(request, headers, runtime);
|
|
11060
|
+
}
|
|
11061
|
+
/**
|
|
11062
|
+
* Description: 风控云SaaS租户调用接口
|
|
11063
|
+
* Summary: 风控云SaaS租户调用接口
|
|
11064
|
+
*/
|
|
11065
|
+
async querySaasSecurityPolicyEx(request, headers, runtime) {
|
|
11066
|
+
tea_util_1.default.validateModel(request);
|
|
11067
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.saas.security.policy.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QuerySaasSecurityPolicyResponse({}));
|
|
11068
|
+
}
|
|
10496
11069
|
/**
|
|
10497
11070
|
* Description: 天枢信贷业务系统线下测试环境测试接口
|
|
10498
11071
|
* Summary: 天枢信贷业务系统线下测试接口
|
|
@@ -12936,6 +13509,127 @@ class Client {
|
|
|
12936
13509
|
tea_util_1.default.validateModel(request);
|
|
12937
13510
|
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.sms.report.callback", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CallbackUmktSmsReportResponse({}));
|
|
12938
13511
|
}
|
|
13512
|
+
/**
|
|
13513
|
+
* Description: 分页查询租户外呼策略
|
|
13514
|
+
* Summary: 营销盾租户场景批量信息查询
|
|
13515
|
+
*/
|
|
13516
|
+
async batchqueryUmktTenantActionplaninfo(request) {
|
|
13517
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
13518
|
+
let headers = {};
|
|
13519
|
+
return await this.batchqueryUmktTenantActionplaninfoEx(request, headers, runtime);
|
|
13520
|
+
}
|
|
13521
|
+
/**
|
|
13522
|
+
* Description: 分页查询租户外呼策略
|
|
13523
|
+
* Summary: 营销盾租户场景批量信息查询
|
|
13524
|
+
*/
|
|
13525
|
+
async batchqueryUmktTenantActionplaninfoEx(request, headers, runtime) {
|
|
13526
|
+
tea_util_1.default.validateModel(request);
|
|
13527
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.tenant.actionplaninfo.batchquery", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new BatchqueryUmktTenantActionplaninfoResponse({}));
|
|
13528
|
+
}
|
|
13529
|
+
/**
|
|
13530
|
+
* Description: 营销盾批次外呼内单个/多个手机号查询拨打情况
|
|
13531
|
+
(已下线)
|
|
13532
|
+
* Summary: 营销盾外呼详情查询接口
|
|
13533
|
+
*/
|
|
13534
|
+
async batchqueryUmktRobotcallDetail(request) {
|
|
13535
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
13536
|
+
let headers = {};
|
|
13537
|
+
return await this.batchqueryUmktRobotcallDetailEx(request, headers, runtime);
|
|
13538
|
+
}
|
|
13539
|
+
/**
|
|
13540
|
+
* Description: 营销盾批次外呼内单个/多个手机号查询拨打情况
|
|
13541
|
+
(已下线)
|
|
13542
|
+
* Summary: 营销盾外呼详情查询接口
|
|
13543
|
+
*/
|
|
13544
|
+
async batchqueryUmktRobotcallDetailEx(request, headers, runtime) {
|
|
13545
|
+
tea_util_1.default.validateModel(request);
|
|
13546
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.robotcall.detail.batchquery", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new BatchqueryUmktRobotcallDetailResponse({}));
|
|
13547
|
+
}
|
|
13548
|
+
/**
|
|
13549
|
+
* Description: 营销盾查询外呼策略详情
|
|
13550
|
+
* Summary: 营销盾查询外呼策略详情
|
|
13551
|
+
*/
|
|
13552
|
+
async batchqueryUmktActionplanDetail(request) {
|
|
13553
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
13554
|
+
let headers = {};
|
|
13555
|
+
return await this.batchqueryUmktActionplanDetailEx(request, headers, runtime);
|
|
13556
|
+
}
|
|
13557
|
+
/**
|
|
13558
|
+
* Description: 营销盾查询外呼策略详情
|
|
13559
|
+
* Summary: 营销盾查询外呼策略详情
|
|
13560
|
+
*/
|
|
13561
|
+
async batchqueryUmktActionplanDetailEx(request, headers, runtime) {
|
|
13562
|
+
tea_util_1.default.validateModel(request);
|
|
13563
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.actionplan.detail.batchquery", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new BatchqueryUmktActionplanDetailResponse({}));
|
|
13564
|
+
}
|
|
13565
|
+
/**
|
|
13566
|
+
* Description: 营销盾通用回流推送服务
|
|
13567
|
+
* Summary: 营销盾通用回流推送服务
|
|
13568
|
+
*/
|
|
13569
|
+
async pushRiskplusUmktCommonbackflow(request) {
|
|
13570
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
13571
|
+
let headers = {};
|
|
13572
|
+
return await this.pushRiskplusUmktCommonbackflowEx(request, headers, runtime);
|
|
13573
|
+
}
|
|
13574
|
+
/**
|
|
13575
|
+
* Description: 营销盾通用回流推送服务
|
|
13576
|
+
* Summary: 营销盾通用回流推送服务
|
|
13577
|
+
*/
|
|
13578
|
+
async pushRiskplusUmktCommonbackflowEx(request, headers, runtime) {
|
|
13579
|
+
tea_util_1.default.validateModel(request);
|
|
13580
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.riskplus.umkt.commonbackflow.push", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PushRiskplusUmktCommonbackflowResponse({}));
|
|
13581
|
+
}
|
|
13582
|
+
/**
|
|
13583
|
+
* Description: 营销盾通用数据推送服务
|
|
13584
|
+
* Summary: 营销盾通用数据推送服务
|
|
13585
|
+
*/
|
|
13586
|
+
async pushUmktCommonData(request) {
|
|
13587
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
13588
|
+
let headers = {};
|
|
13589
|
+
return await this.pushUmktCommonDataEx(request, headers, runtime);
|
|
13590
|
+
}
|
|
13591
|
+
/**
|
|
13592
|
+
* Description: 营销盾通用数据推送服务
|
|
13593
|
+
* Summary: 营销盾通用数据推送服务
|
|
13594
|
+
*/
|
|
13595
|
+
async pushUmktCommonDataEx(request, headers, runtime) {
|
|
13596
|
+
tea_util_1.default.validateModel(request);
|
|
13597
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.common.data.push", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PushUmktCommonDataResponse({}));
|
|
13598
|
+
}
|
|
13599
|
+
/**
|
|
13600
|
+
* Description: 营销盾客群推送服务
|
|
13601
|
+
* Summary: 营销盾客群推送服务
|
|
13602
|
+
*/
|
|
13603
|
+
async pushUmktCustomerGroup(request) {
|
|
13604
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
13605
|
+
let headers = {};
|
|
13606
|
+
return await this.pushUmktCustomerGroupEx(request, headers, runtime);
|
|
13607
|
+
}
|
|
13608
|
+
/**
|
|
13609
|
+
* Description: 营销盾客群推送服务
|
|
13610
|
+
* Summary: 营销盾客群推送服务
|
|
13611
|
+
*/
|
|
13612
|
+
async pushUmktCustomerGroupEx(request, headers, runtime) {
|
|
13613
|
+
tea_util_1.default.validateModel(request);
|
|
13614
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.customer.group.push", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PushUmktCustomerGroupResponse({}));
|
|
13615
|
+
}
|
|
13616
|
+
/**
|
|
13617
|
+
* Description: 触达执行任务详情查询
|
|
13618
|
+
* Summary: 触达执行任务详情查询
|
|
13619
|
+
*/
|
|
13620
|
+
async batchqueryUmktTaskDetail(request) {
|
|
13621
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
13622
|
+
let headers = {};
|
|
13623
|
+
return await this.batchqueryUmktTaskDetailEx(request, headers, runtime);
|
|
13624
|
+
}
|
|
13625
|
+
/**
|
|
13626
|
+
* Description: 触达执行任务详情查询
|
|
13627
|
+
* Summary: 触达执行任务详情查询
|
|
13628
|
+
*/
|
|
13629
|
+
async batchqueryUmktTaskDetailEx(request, headers, runtime) {
|
|
13630
|
+
tea_util_1.default.validateModel(request);
|
|
13631
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.task.detail.batchquery", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new BatchqueryUmktTaskDetailResponse({}));
|
|
13632
|
+
}
|
|
12939
13633
|
/**
|
|
12940
13634
|
* Description: 创建HTTP PUT提交的文件上传
|
|
12941
13635
|
* Summary: 文件上传创建
|