@antchain/riskplus 1.24.9 → 1.25.5
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 +495 -2
- package/dist/client.js +840 -64
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1216 -79
package/src/client.ts
CHANGED
|
@@ -11853,10 +11853,12 @@ export class QueryDubbridgeInstallmentCreditamtRequest extends $tea.Model {
|
|
|
11853
11853
|
mobile: string;
|
|
11854
11854
|
// 项目编号
|
|
11855
11855
|
projectCode: string;
|
|
11856
|
-
//
|
|
11857
|
-
|
|
11856
|
+
// 资产方购物订单号,如二轮车/摩托车订单号
|
|
11857
|
+
bizOrderNo?: string;
|
|
11858
11858
|
// 身份证号
|
|
11859
11859
|
cardNo?: string;
|
|
11860
|
+
// 交易金额,单位:元,如199.88(用于筛选额度充足的机构)
|
|
11861
|
+
tradeAmount?: string;
|
|
11860
11862
|
// 客户姓名
|
|
11861
11863
|
customerName?: string;
|
|
11862
11864
|
// 导流平台
|
|
@@ -11878,8 +11880,9 @@ export class QueryDubbridgeInstallmentCreditamtRequest extends $tea.Model {
|
|
|
11878
11880
|
openId: 'open_id',
|
|
11879
11881
|
mobile: 'mobile',
|
|
11880
11882
|
projectCode: 'project_code',
|
|
11881
|
-
|
|
11883
|
+
bizOrderNo: 'biz_order_no',
|
|
11882
11884
|
cardNo: 'card_no',
|
|
11885
|
+
tradeAmount: 'trade_amount',
|
|
11883
11886
|
customerName: 'customer_name',
|
|
11884
11887
|
trafficPlatform: 'traffic_platform',
|
|
11885
11888
|
trafficSourceName: 'traffic_source_name',
|
|
@@ -11898,8 +11901,9 @@ export class QueryDubbridgeInstallmentCreditamtRequest extends $tea.Model {
|
|
|
11898
11901
|
openId: 'string',
|
|
11899
11902
|
mobile: 'string',
|
|
11900
11903
|
projectCode: 'string',
|
|
11901
|
-
|
|
11904
|
+
bizOrderNo: 'string',
|
|
11902
11905
|
cardNo: 'string',
|
|
11906
|
+
tradeAmount: 'string',
|
|
11903
11907
|
customerName: 'string',
|
|
11904
11908
|
trafficPlatform: 'string',
|
|
11905
11909
|
trafficSourceName: 'string',
|
|
@@ -12073,13 +12077,13 @@ export class PushDubbridgeInstallmentSupplementRequest extends $tea.Model {
|
|
|
12073
12077
|
productInstanceId?: string;
|
|
12074
12078
|
// 订单号:request请求单号,每次请求唯一,如uuid
|
|
12075
12079
|
orderNo: string;
|
|
12076
|
-
// 业务类型:1-现金贷;2-分期付
|
|
12077
|
-
//
|
|
12078
|
-
prodType: string;
|
|
12079
12080
|
// 资产方用户唯一标识
|
|
12080
12081
|
openId: string;
|
|
12081
12082
|
// 资产方购物订单号,如二轮车/摩托车订单号
|
|
12082
12083
|
bizOrderNo: string;
|
|
12084
|
+
// 业务类型:1-现金贷;2-分期付
|
|
12085
|
+
//
|
|
12086
|
+
prodType?: string;
|
|
12083
12087
|
// 材料场景:2-支用前、3-支用后
|
|
12084
12088
|
fileScene?: string;
|
|
12085
12089
|
// 材料列表
|
|
@@ -12095,9 +12099,9 @@ export class PushDubbridgeInstallmentSupplementRequest extends $tea.Model {
|
|
|
12095
12099
|
authToken: 'auth_token',
|
|
12096
12100
|
productInstanceId: 'product_instance_id',
|
|
12097
12101
|
orderNo: 'order_no',
|
|
12098
|
-
prodType: 'prod_type',
|
|
12099
12102
|
openId: 'open_id',
|
|
12100
12103
|
bizOrderNo: 'biz_order_no',
|
|
12104
|
+
prodType: 'prod_type',
|
|
12101
12105
|
fileScene: 'file_scene',
|
|
12102
12106
|
fileList: 'file_list',
|
|
12103
12107
|
storeInfo: 'store_info',
|
|
@@ -12111,9 +12115,9 @@ export class PushDubbridgeInstallmentSupplementRequest extends $tea.Model {
|
|
|
12111
12115
|
authToken: 'string',
|
|
12112
12116
|
productInstanceId: 'string',
|
|
12113
12117
|
orderNo: 'string',
|
|
12114
|
-
prodType: 'string',
|
|
12115
12118
|
openId: 'string',
|
|
12116
12119
|
bizOrderNo: 'string',
|
|
12120
|
+
prodType: 'string',
|
|
12117
12121
|
fileScene: 'string',
|
|
12118
12122
|
fileList: { 'type': 'array', 'itemType': SupplementFile },
|
|
12119
12123
|
storeInfo: StoreInfo,
|
|
@@ -14778,11 +14782,85 @@ export class UploadQmpOfflinehostplanResponse extends $tea.Model {
|
|
|
14778
14782
|
resultCode?: string;
|
|
14779
14783
|
// 异常信息的文本描述
|
|
14780
14784
|
resultMsg?: string;
|
|
14785
|
+
// 导入id,可以用该id来查询分层结果
|
|
14786
|
+
importId?: string;
|
|
14787
|
+
static names(): { [key: string]: string } {
|
|
14788
|
+
return {
|
|
14789
|
+
reqMsgId: 'req_msg_id',
|
|
14790
|
+
resultCode: 'result_code',
|
|
14791
|
+
resultMsg: 'result_msg',
|
|
14792
|
+
importId: 'import_id',
|
|
14793
|
+
};
|
|
14794
|
+
}
|
|
14795
|
+
|
|
14796
|
+
static types(): { [key: string]: any } {
|
|
14797
|
+
return {
|
|
14798
|
+
reqMsgId: 'string',
|
|
14799
|
+
resultCode: 'string',
|
|
14800
|
+
resultMsg: 'string',
|
|
14801
|
+
importId: 'string',
|
|
14802
|
+
};
|
|
14803
|
+
}
|
|
14804
|
+
|
|
14805
|
+
constructor(map?: { [key: string]: any }) {
|
|
14806
|
+
super(map);
|
|
14807
|
+
}
|
|
14808
|
+
}
|
|
14809
|
+
|
|
14810
|
+
export class QueryQmpOfflinehostplanDecisionresultRequest extends $tea.Model {
|
|
14811
|
+
// OAuth模式下的授权token
|
|
14812
|
+
authToken?: string;
|
|
14813
|
+
productInstanceId?: string;
|
|
14814
|
+
// 文件上传时返回的导入id
|
|
14815
|
+
importId: string;
|
|
14816
|
+
static names(): { [key: string]: string } {
|
|
14817
|
+
return {
|
|
14818
|
+
authToken: 'auth_token',
|
|
14819
|
+
productInstanceId: 'product_instance_id',
|
|
14820
|
+
importId: 'import_id',
|
|
14821
|
+
};
|
|
14822
|
+
}
|
|
14823
|
+
|
|
14824
|
+
static types(): { [key: string]: any } {
|
|
14825
|
+
return {
|
|
14826
|
+
authToken: 'string',
|
|
14827
|
+
productInstanceId: 'string',
|
|
14828
|
+
importId: 'string',
|
|
14829
|
+
};
|
|
14830
|
+
}
|
|
14831
|
+
|
|
14832
|
+
constructor(map?: { [key: string]: any }) {
|
|
14833
|
+
super(map);
|
|
14834
|
+
}
|
|
14835
|
+
}
|
|
14836
|
+
|
|
14837
|
+
export class QueryQmpOfflinehostplanDecisionresultResponse extends $tea.Model {
|
|
14838
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
14839
|
+
reqMsgId?: string;
|
|
14840
|
+
// 结果码,一般OK表示调用成功
|
|
14841
|
+
resultCode?: string;
|
|
14842
|
+
// 异常信息的文本描述
|
|
14843
|
+
resultMsg?: string;
|
|
14844
|
+
// 安全托管计划编码
|
|
14845
|
+
planCode?: string;
|
|
14846
|
+
// EXECUTING/DECISI ON_SUCCESS/DECISION_FAIL/CANCEL。执行中/成功/失败/取消。
|
|
14847
|
+
status?: string;
|
|
14848
|
+
// 总托管数量
|
|
14849
|
+
totalNum?: number;
|
|
14850
|
+
// 分层结果数
|
|
14851
|
+
decisionNum?: number;
|
|
14852
|
+
// 分层结果的oss文件路径
|
|
14853
|
+
fileUrl?: string;
|
|
14781
14854
|
static names(): { [key: string]: string } {
|
|
14782
14855
|
return {
|
|
14783
14856
|
reqMsgId: 'req_msg_id',
|
|
14784
14857
|
resultCode: 'result_code',
|
|
14785
14858
|
resultMsg: 'result_msg',
|
|
14859
|
+
planCode: 'plan_code',
|
|
14860
|
+
status: 'status',
|
|
14861
|
+
totalNum: 'total_num',
|
|
14862
|
+
decisionNum: 'decision_num',
|
|
14863
|
+
fileUrl: 'file_url',
|
|
14786
14864
|
};
|
|
14787
14865
|
}
|
|
14788
14866
|
|
|
@@ -14791,6 +14869,11 @@ export class UploadQmpOfflinehostplanResponse extends $tea.Model {
|
|
|
14791
14869
|
reqMsgId: 'string',
|
|
14792
14870
|
resultCode: 'string',
|
|
14793
14871
|
resultMsg: 'string',
|
|
14872
|
+
planCode: 'string',
|
|
14873
|
+
status: 'string',
|
|
14874
|
+
totalNum: 'number',
|
|
14875
|
+
decisionNum: 'number',
|
|
14876
|
+
fileUrl: 'string',
|
|
14794
14877
|
};
|
|
14795
14878
|
}
|
|
14796
14879
|
|
|
@@ -17145,6 +17228,71 @@ export class ReceiveRbbParamsFileResponse extends $tea.Model {
|
|
|
17145
17228
|
}
|
|
17146
17229
|
}
|
|
17147
17230
|
|
|
17231
|
+
export class ReceiveRbbOverseacompanyProfileRequest extends $tea.Model {
|
|
17232
|
+
// OAuth模式下的授权token
|
|
17233
|
+
authToken?: string;
|
|
17234
|
+
productInstanceId?: string;
|
|
17235
|
+
// fileId
|
|
17236
|
+
fileObject?: Readable;
|
|
17237
|
+
fileObjectName?: string;
|
|
17238
|
+
fileId: string;
|
|
17239
|
+
static names(): { [key: string]: string } {
|
|
17240
|
+
return {
|
|
17241
|
+
authToken: 'auth_token',
|
|
17242
|
+
productInstanceId: 'product_instance_id',
|
|
17243
|
+
fileObject: 'fileObject',
|
|
17244
|
+
fileObjectName: 'fileObjectName',
|
|
17245
|
+
fileId: 'file_id',
|
|
17246
|
+
};
|
|
17247
|
+
}
|
|
17248
|
+
|
|
17249
|
+
static types(): { [key: string]: any } {
|
|
17250
|
+
return {
|
|
17251
|
+
authToken: 'string',
|
|
17252
|
+
productInstanceId: 'string',
|
|
17253
|
+
fileObject: 'Readable',
|
|
17254
|
+
fileObjectName: 'string',
|
|
17255
|
+
fileId: 'string',
|
|
17256
|
+
};
|
|
17257
|
+
}
|
|
17258
|
+
|
|
17259
|
+
constructor(map?: { [key: string]: any }) {
|
|
17260
|
+
super(map);
|
|
17261
|
+
}
|
|
17262
|
+
}
|
|
17263
|
+
|
|
17264
|
+
export class ReceiveRbbOverseacompanyProfileResponse extends $tea.Model {
|
|
17265
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
17266
|
+
reqMsgId?: string;
|
|
17267
|
+
// 结果码,一般OK表示调用成功
|
|
17268
|
+
resultCode?: string;
|
|
17269
|
+
// 异常信息的文本描述
|
|
17270
|
+
resultMsg?: string;
|
|
17271
|
+
// 文件url
|
|
17272
|
+
data?: string;
|
|
17273
|
+
static names(): { [key: string]: string } {
|
|
17274
|
+
return {
|
|
17275
|
+
reqMsgId: 'req_msg_id',
|
|
17276
|
+
resultCode: 'result_code',
|
|
17277
|
+
resultMsg: 'result_msg',
|
|
17278
|
+
data: 'data',
|
|
17279
|
+
};
|
|
17280
|
+
}
|
|
17281
|
+
|
|
17282
|
+
static types(): { [key: string]: any } {
|
|
17283
|
+
return {
|
|
17284
|
+
reqMsgId: 'string',
|
|
17285
|
+
resultCode: 'string',
|
|
17286
|
+
resultMsg: 'string',
|
|
17287
|
+
data: 'string',
|
|
17288
|
+
};
|
|
17289
|
+
}
|
|
17290
|
+
|
|
17291
|
+
constructor(map?: { [key: string]: any }) {
|
|
17292
|
+
super(map);
|
|
17293
|
+
}
|
|
17294
|
+
}
|
|
17295
|
+
|
|
17148
17296
|
export class PushRpaasReportAnswerRequest extends $tea.Model {
|
|
17149
17297
|
// OAuth模式下的授权token
|
|
17150
17298
|
authToken?: string;
|
|
@@ -20058,20 +20206,31 @@ export class QuerySnapshotEventResponse extends $tea.Model {
|
|
|
20058
20206
|
}
|
|
20059
20207
|
}
|
|
20060
20208
|
|
|
20061
|
-
export class
|
|
20209
|
+
export class ApplyTdiquickmsgRtBatchmarketingRequest extends $tea.Model {
|
|
20062
20210
|
// OAuth模式下的授权token
|
|
20063
20211
|
authToken?: string;
|
|
20064
20212
|
productInstanceId?: string;
|
|
20065
|
-
//
|
|
20066
|
-
|
|
20067
|
-
//
|
|
20068
|
-
|
|
20213
|
+
// 场景策略id
|
|
20214
|
+
sceneStrategyId: number;
|
|
20215
|
+
//
|
|
20216
|
+
// 外部流水号
|
|
20217
|
+
outSerialNo: string;
|
|
20218
|
+
//
|
|
20219
|
+
// 用户标识类型
|
|
20220
|
+
paramType: string;
|
|
20221
|
+
// 批量透传字段
|
|
20222
|
+
outInfo?: string;
|
|
20223
|
+
// 用户凭证列表
|
|
20224
|
+
customerDetails: CustomerDetail[];
|
|
20069
20225
|
static names(): { [key: string]: string } {
|
|
20070
20226
|
return {
|
|
20071
20227
|
authToken: 'auth_token',
|
|
20072
20228
|
productInstanceId: 'product_instance_id',
|
|
20073
|
-
|
|
20074
|
-
|
|
20229
|
+
sceneStrategyId: 'scene_strategy_id',
|
|
20230
|
+
outSerialNo: 'out_serial_no',
|
|
20231
|
+
paramType: 'param_type',
|
|
20232
|
+
outInfo: 'out_info',
|
|
20233
|
+
customerDetails: 'customer_details',
|
|
20075
20234
|
};
|
|
20076
20235
|
}
|
|
20077
20236
|
|
|
@@ -20079,8 +20238,11 @@ export class QueryTdisaasSecurityPolicyRequest extends $tea.Model {
|
|
|
20079
20238
|
return {
|
|
20080
20239
|
authToken: 'string',
|
|
20081
20240
|
productInstanceId: 'string',
|
|
20082
|
-
|
|
20083
|
-
|
|
20241
|
+
sceneStrategyId: 'number',
|
|
20242
|
+
outSerialNo: 'string',
|
|
20243
|
+
paramType: 'string',
|
|
20244
|
+
outInfo: 'string',
|
|
20245
|
+
customerDetails: { 'type': 'array', 'itemType': CustomerDetail },
|
|
20084
20246
|
};
|
|
20085
20247
|
}
|
|
20086
20248
|
|
|
@@ -20089,33 +20251,21 @@ export class QueryTdisaasSecurityPolicyRequest extends $tea.Model {
|
|
|
20089
20251
|
}
|
|
20090
20252
|
}
|
|
20091
20253
|
|
|
20092
|
-
export class
|
|
20254
|
+
export class ApplyTdiquickmsgRtBatchmarketingResponse extends $tea.Model {
|
|
20093
20255
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
20094
20256
|
reqMsgId?: string;
|
|
20095
20257
|
// 结果码,一般OK表示调用成功
|
|
20096
20258
|
resultCode?: string;
|
|
20097
20259
|
// 异常信息的文本描述
|
|
20098
20260
|
resultMsg?: string;
|
|
20099
|
-
//
|
|
20100
|
-
|
|
20101
|
-
// 安全请求id
|
|
20102
|
-
securityId?: string;
|
|
20103
|
-
// 策略结果
|
|
20104
|
-
securityResult?: string;
|
|
20105
|
-
// 策略结果详情
|
|
20106
|
-
strategyDetails?: StrategyDetails[];
|
|
20107
|
-
// 决策流信息
|
|
20108
|
-
dfSceneInfos?: DfSceneInfos[];
|
|
20261
|
+
// 批次流水号
|
|
20262
|
+
bizId?: string;
|
|
20109
20263
|
static names(): { [key: string]: string } {
|
|
20110
20264
|
return {
|
|
20111
20265
|
reqMsgId: 'req_msg_id',
|
|
20112
20266
|
resultCode: 'result_code',
|
|
20113
20267
|
resultMsg: 'result_msg',
|
|
20114
|
-
|
|
20115
|
-
securityId: 'security_id',
|
|
20116
|
-
securityResult: 'security_result',
|
|
20117
|
-
strategyDetails: 'strategy_details',
|
|
20118
|
-
dfSceneInfos: 'df_scene_infos',
|
|
20268
|
+
bizId: 'biz_id',
|
|
20119
20269
|
};
|
|
20120
20270
|
}
|
|
20121
20271
|
|
|
@@ -20124,11 +20274,7 @@ export class QueryTdisaasSecurityPolicyResponse extends $tea.Model {
|
|
|
20124
20274
|
reqMsgId: 'string',
|
|
20125
20275
|
resultCode: 'string',
|
|
20126
20276
|
resultMsg: 'string',
|
|
20127
|
-
|
|
20128
|
-
securityId: 'string',
|
|
20129
|
-
securityResult: 'string',
|
|
20130
|
-
strategyDetails: { 'type': 'array', 'itemType': StrategyDetails },
|
|
20131
|
-
dfSceneInfos: { 'type': 'array', 'itemType': DfSceneInfos },
|
|
20277
|
+
bizId: 'string',
|
|
20132
20278
|
};
|
|
20133
20279
|
}
|
|
20134
20280
|
|
|
@@ -20137,33 +20283,29 @@ export class QueryTdisaasSecurityPolicyResponse extends $tea.Model {
|
|
|
20137
20283
|
}
|
|
20138
20284
|
}
|
|
20139
20285
|
|
|
20140
|
-
export class
|
|
20286
|
+
export class ApplyTdiquickmsgRobotcallRequest extends $tea.Model {
|
|
20141
20287
|
// OAuth模式下的授权token
|
|
20142
20288
|
authToken?: string;
|
|
20143
20289
|
productInstanceId?: string;
|
|
20144
|
-
//
|
|
20145
|
-
|
|
20146
|
-
fileObjectName?: string;
|
|
20147
|
-
fileId: string;
|
|
20290
|
+
// 外部流水号
|
|
20291
|
+
outSerialNo: string;
|
|
20148
20292
|
// 场景策略id
|
|
20149
20293
|
sceneStrategyId: number;
|
|
20150
|
-
//
|
|
20151
|
-
|
|
20152
|
-
//
|
|
20153
|
-
|
|
20154
|
-
//
|
|
20155
|
-
|
|
20156
|
-
fileTemplate: string;
|
|
20294
|
+
// 客户透传字段
|
|
20295
|
+
outInfo?: string;
|
|
20296
|
+
// 用户参数类型
|
|
20297
|
+
paramTemplate: string;
|
|
20298
|
+
// 每个手机号的详细参数
|
|
20299
|
+
customerDetails: RobotCallCustomerParam;
|
|
20157
20300
|
static names(): { [key: string]: string } {
|
|
20158
20301
|
return {
|
|
20159
20302
|
authToken: 'auth_token',
|
|
20160
20303
|
productInstanceId: 'product_instance_id',
|
|
20161
|
-
|
|
20162
|
-
fileObjectName: 'fileObjectName',
|
|
20163
|
-
fileId: 'file_id',
|
|
20304
|
+
outSerialNo: 'out_serial_no',
|
|
20164
20305
|
sceneStrategyId: 'scene_strategy_id',
|
|
20165
|
-
|
|
20166
|
-
|
|
20306
|
+
outInfo: 'out_info',
|
|
20307
|
+
paramTemplate: 'param_template',
|
|
20308
|
+
customerDetails: 'customer_details',
|
|
20167
20309
|
};
|
|
20168
20310
|
}
|
|
20169
20311
|
|
|
@@ -20171,12 +20313,11 @@ export class UploadUmktParamsFileRequest extends $tea.Model {
|
|
|
20171
20313
|
return {
|
|
20172
20314
|
authToken: 'string',
|
|
20173
20315
|
productInstanceId: 'string',
|
|
20174
|
-
|
|
20175
|
-
fileObjectName: 'string',
|
|
20176
|
-
fileId: 'string',
|
|
20316
|
+
outSerialNo: 'string',
|
|
20177
20317
|
sceneStrategyId: 'number',
|
|
20178
|
-
|
|
20179
|
-
|
|
20318
|
+
outInfo: 'string',
|
|
20319
|
+
paramTemplate: 'string',
|
|
20320
|
+
customerDetails: RobotCallCustomerParam,
|
|
20180
20321
|
};
|
|
20181
20322
|
}
|
|
20182
20323
|
|
|
@@ -20185,21 +20326,21 @@ export class UploadUmktParamsFileRequest extends $tea.Model {
|
|
|
20185
20326
|
}
|
|
20186
20327
|
}
|
|
20187
20328
|
|
|
20188
|
-
export class
|
|
20329
|
+
export class ApplyTdiquickmsgRobotcallResponse extends $tea.Model {
|
|
20189
20330
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
20190
20331
|
reqMsgId?: string;
|
|
20191
20332
|
// 结果码,一般OK表示调用成功
|
|
20192
20333
|
resultCode?: string;
|
|
20193
20334
|
// 异常信息的文本描述
|
|
20194
20335
|
resultMsg?: string;
|
|
20195
|
-
//
|
|
20196
|
-
|
|
20336
|
+
// 呼叫记录id
|
|
20337
|
+
callId?: string;
|
|
20197
20338
|
static names(): { [key: string]: string } {
|
|
20198
20339
|
return {
|
|
20199
20340
|
reqMsgId: 'req_msg_id',
|
|
20200
20341
|
resultCode: 'result_code',
|
|
20201
20342
|
resultMsg: 'result_msg',
|
|
20202
|
-
|
|
20343
|
+
callId: 'call_id',
|
|
20203
20344
|
};
|
|
20204
20345
|
}
|
|
20205
20346
|
|
|
@@ -20208,7 +20349,7 @@ export class UploadUmktParamsFileResponse extends $tea.Model {
|
|
|
20208
20349
|
reqMsgId: 'string',
|
|
20209
20350
|
resultCode: 'string',
|
|
20210
20351
|
resultMsg: 'string',
|
|
20211
|
-
|
|
20352
|
+
callId: 'string',
|
|
20212
20353
|
};
|
|
20213
20354
|
}
|
|
20214
20355
|
|
|
@@ -20217,21 +20358,805 @@ export class UploadUmktParamsFileResponse extends $tea.Model {
|
|
|
20217
20358
|
}
|
|
20218
20359
|
}
|
|
20219
20360
|
|
|
20220
|
-
export class
|
|
20361
|
+
export class CallbackTdiquickmsgSmsRequest extends $tea.Model {
|
|
20221
20362
|
// OAuth模式下的授权token
|
|
20222
20363
|
authToken?: string;
|
|
20223
20364
|
productInstanceId?: string;
|
|
20224
|
-
//
|
|
20225
|
-
|
|
20226
|
-
|
|
20227
|
-
|
|
20228
|
-
//
|
|
20229
|
-
|
|
20230
|
-
//
|
|
20231
|
-
|
|
20232
|
-
//
|
|
20233
|
-
|
|
20234
|
-
//
|
|
20365
|
+
// 短信回执类型
|
|
20366
|
+
//
|
|
20367
|
+
type: string;
|
|
20368
|
+
// 手机号码
|
|
20369
|
+
//
|
|
20370
|
+
phoneNumber: string;
|
|
20371
|
+
// 发送时间
|
|
20372
|
+
sendTime: string;
|
|
20373
|
+
// 状态报告时间
|
|
20374
|
+
reportTime: string;
|
|
20375
|
+
// 是否接收成功。取值:true:接收成功false:接收失败
|
|
20376
|
+
success: boolean;
|
|
20377
|
+
// 状态报告编码
|
|
20378
|
+
errCode: string;
|
|
20379
|
+
// 状态报告说明
|
|
20380
|
+
//
|
|
20381
|
+
errMsg: string;
|
|
20382
|
+
// 短信长度
|
|
20383
|
+
smsSize: string;
|
|
20384
|
+
// 发送回执ID,即发送流水号
|
|
20385
|
+
bizId: string;
|
|
20386
|
+
// 业务扩展字段,回执时透传,JSON格式
|
|
20387
|
+
bizProperties: string;
|
|
20388
|
+
// 发送卡片短信时,文本短信状态报告中才会有该字段,且取值为CARD_SMS,发送纯文本短信时,状态报告中没有该字段
|
|
20389
|
+
smsType?: string;
|
|
20390
|
+
// 运营商
|
|
20391
|
+
serviceProvider: string;
|
|
20392
|
+
// 手机号码所属城市
|
|
20393
|
+
city?: string;
|
|
20394
|
+
// 手机号模版类型
|
|
20395
|
+
keyTemplate?: string;
|
|
20396
|
+
static names(): { [key: string]: string } {
|
|
20397
|
+
return {
|
|
20398
|
+
authToken: 'auth_token',
|
|
20399
|
+
productInstanceId: 'product_instance_id',
|
|
20400
|
+
type: 'type',
|
|
20401
|
+
phoneNumber: 'phone_number',
|
|
20402
|
+
sendTime: 'send_time',
|
|
20403
|
+
reportTime: 'report_time',
|
|
20404
|
+
success: 'success',
|
|
20405
|
+
errCode: 'err_code',
|
|
20406
|
+
errMsg: 'err_msg',
|
|
20407
|
+
smsSize: 'sms_size',
|
|
20408
|
+
bizId: 'biz_id',
|
|
20409
|
+
bizProperties: 'biz_properties',
|
|
20410
|
+
smsType: 'sms_type',
|
|
20411
|
+
serviceProvider: 'service_provider',
|
|
20412
|
+
city: 'city',
|
|
20413
|
+
keyTemplate: 'key_template',
|
|
20414
|
+
};
|
|
20415
|
+
}
|
|
20416
|
+
|
|
20417
|
+
static types(): { [key: string]: any } {
|
|
20418
|
+
return {
|
|
20419
|
+
authToken: 'string',
|
|
20420
|
+
productInstanceId: 'string',
|
|
20421
|
+
type: 'string',
|
|
20422
|
+
phoneNumber: 'string',
|
|
20423
|
+
sendTime: 'string',
|
|
20424
|
+
reportTime: 'string',
|
|
20425
|
+
success: 'boolean',
|
|
20426
|
+
errCode: 'string',
|
|
20427
|
+
errMsg: 'string',
|
|
20428
|
+
smsSize: 'string',
|
|
20429
|
+
bizId: 'string',
|
|
20430
|
+
bizProperties: 'string',
|
|
20431
|
+
smsType: 'string',
|
|
20432
|
+
serviceProvider: 'string',
|
|
20433
|
+
city: 'string',
|
|
20434
|
+
keyTemplate: 'string',
|
|
20435
|
+
};
|
|
20436
|
+
}
|
|
20437
|
+
|
|
20438
|
+
constructor(map?: { [key: string]: any }) {
|
|
20439
|
+
super(map);
|
|
20440
|
+
}
|
|
20441
|
+
}
|
|
20442
|
+
|
|
20443
|
+
export class CallbackTdiquickmsgSmsResponse extends $tea.Model {
|
|
20444
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
20445
|
+
reqMsgId?: string;
|
|
20446
|
+
// 结果码,一般OK表示调用成功
|
|
20447
|
+
resultCode?: string;
|
|
20448
|
+
// 异常信息的文本描述
|
|
20449
|
+
resultMsg?: string;
|
|
20450
|
+
static names(): { [key: string]: string } {
|
|
20451
|
+
return {
|
|
20452
|
+
reqMsgId: 'req_msg_id',
|
|
20453
|
+
resultCode: 'result_code',
|
|
20454
|
+
resultMsg: 'result_msg',
|
|
20455
|
+
};
|
|
20456
|
+
}
|
|
20457
|
+
|
|
20458
|
+
static types(): { [key: string]: any } {
|
|
20459
|
+
return {
|
|
20460
|
+
reqMsgId: 'string',
|
|
20461
|
+
resultCode: 'string',
|
|
20462
|
+
resultMsg: 'string',
|
|
20463
|
+
};
|
|
20464
|
+
}
|
|
20465
|
+
|
|
20466
|
+
constructor(map?: { [key: string]: any }) {
|
|
20467
|
+
super(map);
|
|
20468
|
+
}
|
|
20469
|
+
}
|
|
20470
|
+
|
|
20471
|
+
export class CallbackTdiquickmsgRobotcallRequest extends $tea.Model {
|
|
20472
|
+
// OAuth模式下的授权token
|
|
20473
|
+
authToken?: string;
|
|
20474
|
+
productInstanceId?: string;
|
|
20475
|
+
// 外呼号码,支持密文
|
|
20476
|
+
customerKey: string;
|
|
20477
|
+
// 当前呼叫次数 Integer
|
|
20478
|
+
currentCallTimes: number;
|
|
20479
|
+
// 号码的模版类型
|
|
20480
|
+
keyTemplate: string;
|
|
20481
|
+
// 导入号码时返回的批次号
|
|
20482
|
+
batchId: string;
|
|
20483
|
+
// 外呼类型 建议按照如下约定给到 2001:批量-预测外呼 2002:批量-AI外呼-不转人工 2003:批量-AI外呼-接通转人工 2004: 批量-AI外呼-智能转人工 2005:批量-语音通知
|
|
20484
|
+
callType: number;
|
|
20485
|
+
// 用户自定义标签
|
|
20486
|
+
tag?: string;
|
|
20487
|
+
// 外呼呼叫实例id
|
|
20488
|
+
callId: string;
|
|
20489
|
+
// 外呼任务编号
|
|
20490
|
+
taskId: number;
|
|
20491
|
+
// 外呼任务名称
|
|
20492
|
+
taskName: string;
|
|
20493
|
+
// 外呼的话术模板ID,可以为空
|
|
20494
|
+
templateId?: number;
|
|
20495
|
+
// 外呼状态编码
|
|
20496
|
+
statusCode: number;
|
|
20497
|
+
// 外呼状态编码对应描述
|
|
20498
|
+
statusDescription: string;
|
|
20499
|
+
// 转人工状态编码
|
|
20500
|
+
transferStatusCode: string;
|
|
20501
|
+
// 转人工状态编码对应描述
|
|
20502
|
+
transferStatus: string;
|
|
20503
|
+
// 分配坐席ID,可以为空
|
|
20504
|
+
agentId?: number;
|
|
20505
|
+
// 建议填写坐席在贵司业务系统唯一标识,用于查询对应agentId;可以为空。
|
|
20506
|
+
agentTag?: string;
|
|
20507
|
+
// 坐席分机号,可以为空
|
|
20508
|
+
agentExtension?: string;
|
|
20509
|
+
// 导入时间,格式:2019-01-09 14:14:19
|
|
20510
|
+
importTime: string;
|
|
20511
|
+
// 开始通话时间,格式:2019-01-09 14:14:19
|
|
20512
|
+
callBeginTime: string;
|
|
20513
|
+
// 振铃时长,单位毫秒
|
|
20514
|
+
ringTime: number;
|
|
20515
|
+
// 接通时间
|
|
20516
|
+
answerTime?: string;
|
|
20517
|
+
// 通话时长,单位:大于1分钟,显示分钟秒,小于1分钟,显示秒
|
|
20518
|
+
speakingTime: string;
|
|
20519
|
+
// 通话时长,单位:秒
|
|
20520
|
+
speakingDuration: number;
|
|
20521
|
+
// 通话挂断时间
|
|
20522
|
+
hangupTime: string;
|
|
20523
|
+
// 对话轮次
|
|
20524
|
+
speakingTurns: number;
|
|
20525
|
+
// 坐席通话时长,单位:大于1分钟,显示分钟秒,小于1分钟,显示秒
|
|
20526
|
+
agentSpeakingTime: string;
|
|
20527
|
+
// 坐席通话时长,单位:秒
|
|
20528
|
+
agentSpeakingDuration: number;
|
|
20529
|
+
// 意向标签
|
|
20530
|
+
intentTag: string;
|
|
20531
|
+
// 意向说明
|
|
20532
|
+
intentDescription: string;
|
|
20533
|
+
// 个性标签
|
|
20534
|
+
individualTag?: string;
|
|
20535
|
+
// 回复关键词
|
|
20536
|
+
keywords?: string;
|
|
20537
|
+
// 挂机方式
|
|
20538
|
+
hungupType: number;
|
|
20539
|
+
// 挂机短信,1:发送,2:不发送
|
|
20540
|
+
sms: number;
|
|
20541
|
+
// 对话录音,url
|
|
20542
|
+
chatRecord?: string;
|
|
20543
|
+
// 对话记录
|
|
20544
|
+
chats?: string;
|
|
20545
|
+
// 0:不添加,1:添加
|
|
20546
|
+
addWx?: number;
|
|
20547
|
+
// 加微进度可选值:已申请、加微成功
|
|
20548
|
+
addWxStatus?: string;
|
|
20549
|
+
// 是否接通重呼 0正常外呼,1接通重呼
|
|
20550
|
+
answerRecall: number;
|
|
20551
|
+
// 导入号码时的参数值
|
|
20552
|
+
properties?: string;
|
|
20553
|
+
// 导入号码时的业务参数值
|
|
20554
|
+
bizProperties?: string;
|
|
20555
|
+
// 拦截原因 可选值:黑名单拦截,灰名单拦截,异常号码拦截
|
|
20556
|
+
interceptReason?: string;
|
|
20557
|
+
// 回调冗余字段
|
|
20558
|
+
extInfo?: string;
|
|
20559
|
+
static names(): { [key: string]: string } {
|
|
20560
|
+
return {
|
|
20561
|
+
authToken: 'auth_token',
|
|
20562
|
+
productInstanceId: 'product_instance_id',
|
|
20563
|
+
customerKey: 'customer_key',
|
|
20564
|
+
currentCallTimes: 'current_call_times',
|
|
20565
|
+
keyTemplate: 'key_template',
|
|
20566
|
+
batchId: 'batch_id',
|
|
20567
|
+
callType: 'call_type',
|
|
20568
|
+
tag: 'tag',
|
|
20569
|
+
callId: 'call_id',
|
|
20570
|
+
taskId: 'task_id',
|
|
20571
|
+
taskName: 'task_name',
|
|
20572
|
+
templateId: 'template_id',
|
|
20573
|
+
statusCode: 'status_code',
|
|
20574
|
+
statusDescription: 'status_description',
|
|
20575
|
+
transferStatusCode: 'transfer_status_code',
|
|
20576
|
+
transferStatus: 'transfer_status',
|
|
20577
|
+
agentId: 'agent_id',
|
|
20578
|
+
agentTag: 'agent_tag',
|
|
20579
|
+
agentExtension: 'agent_extension',
|
|
20580
|
+
importTime: 'import_time',
|
|
20581
|
+
callBeginTime: 'call_begin_time',
|
|
20582
|
+
ringTime: 'ring_time',
|
|
20583
|
+
answerTime: 'answer_time',
|
|
20584
|
+
speakingTime: 'speaking_time',
|
|
20585
|
+
speakingDuration: 'speaking_duration',
|
|
20586
|
+
hangupTime: 'hangup_time',
|
|
20587
|
+
speakingTurns: 'speaking_turns',
|
|
20588
|
+
agentSpeakingTime: 'agent_speaking_time',
|
|
20589
|
+
agentSpeakingDuration: 'agent_speaking_duration',
|
|
20590
|
+
intentTag: 'intent_tag',
|
|
20591
|
+
intentDescription: 'intent_description',
|
|
20592
|
+
individualTag: 'individual_tag',
|
|
20593
|
+
keywords: 'keywords',
|
|
20594
|
+
hungupType: 'hungup_type',
|
|
20595
|
+
sms: 'sms',
|
|
20596
|
+
chatRecord: 'chat_record',
|
|
20597
|
+
chats: 'chats',
|
|
20598
|
+
addWx: 'add_wx',
|
|
20599
|
+
addWxStatus: 'add_wx_status',
|
|
20600
|
+
answerRecall: 'answer_recall',
|
|
20601
|
+
properties: 'properties',
|
|
20602
|
+
bizProperties: 'biz_properties',
|
|
20603
|
+
interceptReason: 'intercept_reason',
|
|
20604
|
+
extInfo: 'ext_info',
|
|
20605
|
+
};
|
|
20606
|
+
}
|
|
20607
|
+
|
|
20608
|
+
static types(): { [key: string]: any } {
|
|
20609
|
+
return {
|
|
20610
|
+
authToken: 'string',
|
|
20611
|
+
productInstanceId: 'string',
|
|
20612
|
+
customerKey: 'string',
|
|
20613
|
+
currentCallTimes: 'number',
|
|
20614
|
+
keyTemplate: 'string',
|
|
20615
|
+
batchId: 'string',
|
|
20616
|
+
callType: 'number',
|
|
20617
|
+
tag: 'string',
|
|
20618
|
+
callId: 'string',
|
|
20619
|
+
taskId: 'number',
|
|
20620
|
+
taskName: 'string',
|
|
20621
|
+
templateId: 'number',
|
|
20622
|
+
statusCode: 'number',
|
|
20623
|
+
statusDescription: 'string',
|
|
20624
|
+
transferStatusCode: 'string',
|
|
20625
|
+
transferStatus: 'string',
|
|
20626
|
+
agentId: 'number',
|
|
20627
|
+
agentTag: 'string',
|
|
20628
|
+
agentExtension: 'string',
|
|
20629
|
+
importTime: 'string',
|
|
20630
|
+
callBeginTime: 'string',
|
|
20631
|
+
ringTime: 'number',
|
|
20632
|
+
answerTime: 'string',
|
|
20633
|
+
speakingTime: 'string',
|
|
20634
|
+
speakingDuration: 'number',
|
|
20635
|
+
hangupTime: 'string',
|
|
20636
|
+
speakingTurns: 'number',
|
|
20637
|
+
agentSpeakingTime: 'string',
|
|
20638
|
+
agentSpeakingDuration: 'number',
|
|
20639
|
+
intentTag: 'string',
|
|
20640
|
+
intentDescription: 'string',
|
|
20641
|
+
individualTag: 'string',
|
|
20642
|
+
keywords: 'string',
|
|
20643
|
+
hungupType: 'number',
|
|
20644
|
+
sms: 'number',
|
|
20645
|
+
chatRecord: 'string',
|
|
20646
|
+
chats: 'string',
|
|
20647
|
+
addWx: 'number',
|
|
20648
|
+
addWxStatus: 'string',
|
|
20649
|
+
answerRecall: 'number',
|
|
20650
|
+
properties: 'string',
|
|
20651
|
+
bizProperties: 'string',
|
|
20652
|
+
interceptReason: 'string',
|
|
20653
|
+
extInfo: 'string',
|
|
20654
|
+
};
|
|
20655
|
+
}
|
|
20656
|
+
|
|
20657
|
+
constructor(map?: { [key: string]: any }) {
|
|
20658
|
+
super(map);
|
|
20659
|
+
}
|
|
20660
|
+
}
|
|
20661
|
+
|
|
20662
|
+
export class CallbackTdiquickmsgRobotcallResponse extends $tea.Model {
|
|
20663
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
20664
|
+
reqMsgId?: string;
|
|
20665
|
+
// 结果码,一般OK表示调用成功
|
|
20666
|
+
resultCode?: string;
|
|
20667
|
+
// 异常信息的文本描述
|
|
20668
|
+
resultMsg?: string;
|
|
20669
|
+
static names(): { [key: string]: string } {
|
|
20670
|
+
return {
|
|
20671
|
+
reqMsgId: 'req_msg_id',
|
|
20672
|
+
resultCode: 'result_code',
|
|
20673
|
+
resultMsg: 'result_msg',
|
|
20674
|
+
};
|
|
20675
|
+
}
|
|
20676
|
+
|
|
20677
|
+
static types(): { [key: string]: any } {
|
|
20678
|
+
return {
|
|
20679
|
+
reqMsgId: 'string',
|
|
20680
|
+
resultCode: 'string',
|
|
20681
|
+
resultMsg: 'string',
|
|
20682
|
+
};
|
|
20683
|
+
}
|
|
20684
|
+
|
|
20685
|
+
constructor(map?: { [key: string]: any }) {
|
|
20686
|
+
super(map);
|
|
20687
|
+
}
|
|
20688
|
+
}
|
|
20689
|
+
|
|
20690
|
+
export class CallbackTdiquickmsgSmsUpRequest extends $tea.Model {
|
|
20691
|
+
// OAuth模式下的授权token
|
|
20692
|
+
authToken?: string;
|
|
20693
|
+
productInstanceId?: string;
|
|
20694
|
+
// 回执类型
|
|
20695
|
+
type: string;
|
|
20696
|
+
// 手机号码
|
|
20697
|
+
phoneNumber: string;
|
|
20698
|
+
// 发送时间
|
|
20699
|
+
sendTime: string;
|
|
20700
|
+
// 发送内容
|
|
20701
|
+
content: string;
|
|
20702
|
+
// 签名信息
|
|
20703
|
+
signName: string;
|
|
20704
|
+
// 签名对应的客户ak
|
|
20705
|
+
appKey: string;
|
|
20706
|
+
// 行短信扩展号码
|
|
20707
|
+
destCode: string;
|
|
20708
|
+
// 序列号
|
|
20709
|
+
sequenceId: number;
|
|
20710
|
+
// 手机号模版类型
|
|
20711
|
+
keyTemplate?: string;
|
|
20712
|
+
// 原始手机号模版类型
|
|
20713
|
+
originKeyTemplate?: string;
|
|
20714
|
+
static names(): { [key: string]: string } {
|
|
20715
|
+
return {
|
|
20716
|
+
authToken: 'auth_token',
|
|
20717
|
+
productInstanceId: 'product_instance_id',
|
|
20718
|
+
type: 'type',
|
|
20719
|
+
phoneNumber: 'phone_number',
|
|
20720
|
+
sendTime: 'send_time',
|
|
20721
|
+
content: 'content',
|
|
20722
|
+
signName: 'sign_name',
|
|
20723
|
+
appKey: 'app_key',
|
|
20724
|
+
destCode: 'dest_code',
|
|
20725
|
+
sequenceId: 'sequence_id',
|
|
20726
|
+
keyTemplate: 'key_template',
|
|
20727
|
+
originKeyTemplate: 'origin_key_template',
|
|
20728
|
+
};
|
|
20729
|
+
}
|
|
20730
|
+
|
|
20731
|
+
static types(): { [key: string]: any } {
|
|
20732
|
+
return {
|
|
20733
|
+
authToken: 'string',
|
|
20734
|
+
productInstanceId: 'string',
|
|
20735
|
+
type: 'string',
|
|
20736
|
+
phoneNumber: 'string',
|
|
20737
|
+
sendTime: 'string',
|
|
20738
|
+
content: 'string',
|
|
20739
|
+
signName: 'string',
|
|
20740
|
+
appKey: 'string',
|
|
20741
|
+
destCode: 'string',
|
|
20742
|
+
sequenceId: 'number',
|
|
20743
|
+
keyTemplate: 'string',
|
|
20744
|
+
originKeyTemplate: 'string',
|
|
20745
|
+
};
|
|
20746
|
+
}
|
|
20747
|
+
|
|
20748
|
+
constructor(map?: { [key: string]: any }) {
|
|
20749
|
+
super(map);
|
|
20750
|
+
}
|
|
20751
|
+
}
|
|
20752
|
+
|
|
20753
|
+
export class CallbackTdiquickmsgSmsUpResponse extends $tea.Model {
|
|
20754
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
20755
|
+
reqMsgId?: string;
|
|
20756
|
+
// 结果码,一般OK表示调用成功
|
|
20757
|
+
resultCode?: string;
|
|
20758
|
+
// 异常信息的文本描述
|
|
20759
|
+
resultMsg?: string;
|
|
20760
|
+
static names(): { [key: string]: string } {
|
|
20761
|
+
return {
|
|
20762
|
+
reqMsgId: 'req_msg_id',
|
|
20763
|
+
resultCode: 'result_code',
|
|
20764
|
+
resultMsg: 'result_msg',
|
|
20765
|
+
};
|
|
20766
|
+
}
|
|
20767
|
+
|
|
20768
|
+
static types(): { [key: string]: any } {
|
|
20769
|
+
return {
|
|
20770
|
+
reqMsgId: 'string',
|
|
20771
|
+
resultCode: 'string',
|
|
20772
|
+
resultMsg: 'string',
|
|
20773
|
+
};
|
|
20774
|
+
}
|
|
20775
|
+
|
|
20776
|
+
constructor(map?: { [key: string]: any }) {
|
|
20777
|
+
super(map);
|
|
20778
|
+
}
|
|
20779
|
+
}
|
|
20780
|
+
|
|
20781
|
+
export class QueryTdiquickmsgRobotcallStatisticinfoRequest extends $tea.Model {
|
|
20782
|
+
// OAuth模式下的授权token
|
|
20783
|
+
authToken?: string;
|
|
20784
|
+
productInstanceId?: string;
|
|
20785
|
+
// 场景策略id
|
|
20786
|
+
sceneStrategyId: number;
|
|
20787
|
+
// 客户透传字段
|
|
20788
|
+
outInfo: string;
|
|
20789
|
+
// 分流字段,行业标签区分哈啰流量归属于umkt或qmp
|
|
20790
|
+
industryTag?: string;
|
|
20791
|
+
static names(): { [key: string]: string } {
|
|
20792
|
+
return {
|
|
20793
|
+
authToken: 'auth_token',
|
|
20794
|
+
productInstanceId: 'product_instance_id',
|
|
20795
|
+
sceneStrategyId: 'scene_strategy_id',
|
|
20796
|
+
outInfo: 'out_info',
|
|
20797
|
+
industryTag: 'industry_tag',
|
|
20798
|
+
};
|
|
20799
|
+
}
|
|
20800
|
+
|
|
20801
|
+
static types(): { [key: string]: any } {
|
|
20802
|
+
return {
|
|
20803
|
+
authToken: 'string',
|
|
20804
|
+
productInstanceId: 'string',
|
|
20805
|
+
sceneStrategyId: 'number',
|
|
20806
|
+
outInfo: 'string',
|
|
20807
|
+
industryTag: 'string',
|
|
20808
|
+
};
|
|
20809
|
+
}
|
|
20810
|
+
|
|
20811
|
+
constructor(map?: { [key: string]: any }) {
|
|
20812
|
+
super(map);
|
|
20813
|
+
}
|
|
20814
|
+
}
|
|
20815
|
+
|
|
20816
|
+
export class QueryTdiquickmsgRobotcallStatisticinfoResponse extends $tea.Model {
|
|
20817
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
20818
|
+
reqMsgId?: string;
|
|
20819
|
+
// 结果码,一般OK表示调用成功
|
|
20820
|
+
resultCode?: string;
|
|
20821
|
+
// 异常信息的文本描述
|
|
20822
|
+
resultMsg?: string;
|
|
20823
|
+
// 全量手机号数量
|
|
20824
|
+
totalCount?: number;
|
|
20825
|
+
// 累计拨打次数
|
|
20826
|
+
callCount?: number;
|
|
20827
|
+
// 已经拨打的手机号数量
|
|
20828
|
+
calleeCount?: string;
|
|
20829
|
+
// 已拨打次数中接通的数量
|
|
20830
|
+
connectCount?: number;
|
|
20831
|
+
// 拨打率
|
|
20832
|
+
callRate?: string;
|
|
20833
|
+
// 接通率
|
|
20834
|
+
connectRate?: string;
|
|
20835
|
+
static names(): { [key: string]: string } {
|
|
20836
|
+
return {
|
|
20837
|
+
reqMsgId: 'req_msg_id',
|
|
20838
|
+
resultCode: 'result_code',
|
|
20839
|
+
resultMsg: 'result_msg',
|
|
20840
|
+
totalCount: 'total_count',
|
|
20841
|
+
callCount: 'call_count',
|
|
20842
|
+
calleeCount: 'callee_count',
|
|
20843
|
+
connectCount: 'connect_count',
|
|
20844
|
+
callRate: 'call_rate',
|
|
20845
|
+
connectRate: 'connect_rate',
|
|
20846
|
+
};
|
|
20847
|
+
}
|
|
20848
|
+
|
|
20849
|
+
static types(): { [key: string]: any } {
|
|
20850
|
+
return {
|
|
20851
|
+
reqMsgId: 'string',
|
|
20852
|
+
resultCode: 'string',
|
|
20853
|
+
resultMsg: 'string',
|
|
20854
|
+
totalCount: 'number',
|
|
20855
|
+
callCount: 'number',
|
|
20856
|
+
calleeCount: 'string',
|
|
20857
|
+
connectCount: 'number',
|
|
20858
|
+
callRate: 'string',
|
|
20859
|
+
connectRate: 'string',
|
|
20860
|
+
};
|
|
20861
|
+
}
|
|
20862
|
+
|
|
20863
|
+
constructor(map?: { [key: string]: any }) {
|
|
20864
|
+
super(map);
|
|
20865
|
+
}
|
|
20866
|
+
}
|
|
20867
|
+
|
|
20868
|
+
export class PushTdiquickmsgBackflowEventRequest extends $tea.Model {
|
|
20869
|
+
// OAuth模式下的授权token
|
|
20870
|
+
authToken?: string;
|
|
20871
|
+
productInstanceId?: string;
|
|
20872
|
+
// 回流事件id,对应租户回流事件id
|
|
20873
|
+
eventId: number;
|
|
20874
|
+
// 回流事件记录列表
|
|
20875
|
+
eventRecords: BackflowEventRecord[];
|
|
20876
|
+
static names(): { [key: string]: string } {
|
|
20877
|
+
return {
|
|
20878
|
+
authToken: 'auth_token',
|
|
20879
|
+
productInstanceId: 'product_instance_id',
|
|
20880
|
+
eventId: 'event_id',
|
|
20881
|
+
eventRecords: 'event_records',
|
|
20882
|
+
};
|
|
20883
|
+
}
|
|
20884
|
+
|
|
20885
|
+
static types(): { [key: string]: any } {
|
|
20886
|
+
return {
|
|
20887
|
+
authToken: 'string',
|
|
20888
|
+
productInstanceId: 'string',
|
|
20889
|
+
eventId: 'number',
|
|
20890
|
+
eventRecords: { 'type': 'array', 'itemType': BackflowEventRecord },
|
|
20891
|
+
};
|
|
20892
|
+
}
|
|
20893
|
+
|
|
20894
|
+
constructor(map?: { [key: string]: any }) {
|
|
20895
|
+
super(map);
|
|
20896
|
+
}
|
|
20897
|
+
}
|
|
20898
|
+
|
|
20899
|
+
export class PushTdiquickmsgBackflowEventResponse extends $tea.Model {
|
|
20900
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
20901
|
+
reqMsgId?: string;
|
|
20902
|
+
// 结果码,一般OK表示调用成功
|
|
20903
|
+
resultCode?: string;
|
|
20904
|
+
// 异常信息的文本描述
|
|
20905
|
+
resultMsg?: string;
|
|
20906
|
+
static names(): { [key: string]: string } {
|
|
20907
|
+
return {
|
|
20908
|
+
reqMsgId: 'req_msg_id',
|
|
20909
|
+
resultCode: 'result_code',
|
|
20910
|
+
resultMsg: 'result_msg',
|
|
20911
|
+
};
|
|
20912
|
+
}
|
|
20913
|
+
|
|
20914
|
+
static types(): { [key: string]: any } {
|
|
20915
|
+
return {
|
|
20916
|
+
reqMsgId: 'string',
|
|
20917
|
+
resultCode: 'string',
|
|
20918
|
+
resultMsg: 'string',
|
|
20919
|
+
};
|
|
20920
|
+
}
|
|
20921
|
+
|
|
20922
|
+
constructor(map?: { [key: string]: any }) {
|
|
20923
|
+
super(map);
|
|
20924
|
+
}
|
|
20925
|
+
}
|
|
20926
|
+
|
|
20927
|
+
export class PushTdiquickmsgBackflowJsondataRequest extends $tea.Model {
|
|
20928
|
+
// OAuth模式下的授权token
|
|
20929
|
+
authToken?: string;
|
|
20930
|
+
productInstanceId?: string;
|
|
20931
|
+
// 回流事件id,对应租户回流事件id
|
|
20932
|
+
eventId: number;
|
|
20933
|
+
// 回流事件记录列表
|
|
20934
|
+
eventRecords: string;
|
|
20935
|
+
static names(): { [key: string]: string } {
|
|
20936
|
+
return {
|
|
20937
|
+
authToken: 'auth_token',
|
|
20938
|
+
productInstanceId: 'product_instance_id',
|
|
20939
|
+
eventId: 'event_id',
|
|
20940
|
+
eventRecords: 'event_records',
|
|
20941
|
+
};
|
|
20942
|
+
}
|
|
20943
|
+
|
|
20944
|
+
static types(): { [key: string]: any } {
|
|
20945
|
+
return {
|
|
20946
|
+
authToken: 'string',
|
|
20947
|
+
productInstanceId: 'string',
|
|
20948
|
+
eventId: 'number',
|
|
20949
|
+
eventRecords: 'string',
|
|
20950
|
+
};
|
|
20951
|
+
}
|
|
20952
|
+
|
|
20953
|
+
constructor(map?: { [key: string]: any }) {
|
|
20954
|
+
super(map);
|
|
20955
|
+
}
|
|
20956
|
+
}
|
|
20957
|
+
|
|
20958
|
+
export class PushTdiquickmsgBackflowJsondataResponse extends $tea.Model {
|
|
20959
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
20960
|
+
reqMsgId?: string;
|
|
20961
|
+
// 结果码,一般OK表示调用成功
|
|
20962
|
+
resultCode?: string;
|
|
20963
|
+
// 异常信息的文本描述
|
|
20964
|
+
resultMsg?: string;
|
|
20965
|
+
static names(): { [key: string]: string } {
|
|
20966
|
+
return {
|
|
20967
|
+
reqMsgId: 'req_msg_id',
|
|
20968
|
+
resultCode: 'result_code',
|
|
20969
|
+
resultMsg: 'result_msg',
|
|
20970
|
+
};
|
|
20971
|
+
}
|
|
20972
|
+
|
|
20973
|
+
static types(): { [key: string]: any } {
|
|
20974
|
+
return {
|
|
20975
|
+
reqMsgId: 'string',
|
|
20976
|
+
resultCode: 'string',
|
|
20977
|
+
resultMsg: 'string',
|
|
20978
|
+
};
|
|
20979
|
+
}
|
|
20980
|
+
|
|
20981
|
+
constructor(map?: { [key: string]: any }) {
|
|
20982
|
+
super(map);
|
|
20983
|
+
}
|
|
20984
|
+
}
|
|
20985
|
+
|
|
20986
|
+
export class QueryTdisaasSecurityPolicyRequest extends $tea.Model {
|
|
20987
|
+
// OAuth模式下的授权token
|
|
20988
|
+
authToken?: string;
|
|
20989
|
+
productInstanceId?: string;
|
|
20990
|
+
// 风控事件咨询查询入参
|
|
20991
|
+
eventInfo: EventInfo;
|
|
20992
|
+
// 请求处理方式
|
|
20993
|
+
riskType: string;
|
|
20994
|
+
static names(): { [key: string]: string } {
|
|
20995
|
+
return {
|
|
20996
|
+
authToken: 'auth_token',
|
|
20997
|
+
productInstanceId: 'product_instance_id',
|
|
20998
|
+
eventInfo: 'event_info',
|
|
20999
|
+
riskType: 'risk_type',
|
|
21000
|
+
};
|
|
21001
|
+
}
|
|
21002
|
+
|
|
21003
|
+
static types(): { [key: string]: any } {
|
|
21004
|
+
return {
|
|
21005
|
+
authToken: 'string',
|
|
21006
|
+
productInstanceId: 'string',
|
|
21007
|
+
eventInfo: EventInfo,
|
|
21008
|
+
riskType: 'string',
|
|
21009
|
+
};
|
|
21010
|
+
}
|
|
21011
|
+
|
|
21012
|
+
constructor(map?: { [key: string]: any }) {
|
|
21013
|
+
super(map);
|
|
21014
|
+
}
|
|
21015
|
+
}
|
|
21016
|
+
|
|
21017
|
+
export class QueryTdisaasSecurityPolicyResponse extends $tea.Model {
|
|
21018
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
21019
|
+
reqMsgId?: string;
|
|
21020
|
+
// 结果码,一般OK表示调用成功
|
|
21021
|
+
resultCode?: string;
|
|
21022
|
+
// 异常信息的文本描述
|
|
21023
|
+
resultMsg?: string;
|
|
21024
|
+
// 场景分
|
|
21025
|
+
modelDetails?: ModelDetails[];
|
|
21026
|
+
// 安全请求id
|
|
21027
|
+
securityId?: string;
|
|
21028
|
+
// 策略结果
|
|
21029
|
+
securityResult?: string;
|
|
21030
|
+
// 策略结果详情
|
|
21031
|
+
strategyDetails?: StrategyDetails[];
|
|
21032
|
+
// 决策流信息
|
|
21033
|
+
dfSceneInfos?: DfSceneInfos[];
|
|
21034
|
+
static names(): { [key: string]: string } {
|
|
21035
|
+
return {
|
|
21036
|
+
reqMsgId: 'req_msg_id',
|
|
21037
|
+
resultCode: 'result_code',
|
|
21038
|
+
resultMsg: 'result_msg',
|
|
21039
|
+
modelDetails: 'model_details',
|
|
21040
|
+
securityId: 'security_id',
|
|
21041
|
+
securityResult: 'security_result',
|
|
21042
|
+
strategyDetails: 'strategy_details',
|
|
21043
|
+
dfSceneInfos: 'df_scene_infos',
|
|
21044
|
+
};
|
|
21045
|
+
}
|
|
21046
|
+
|
|
21047
|
+
static types(): { [key: string]: any } {
|
|
21048
|
+
return {
|
|
21049
|
+
reqMsgId: 'string',
|
|
21050
|
+
resultCode: 'string',
|
|
21051
|
+
resultMsg: 'string',
|
|
21052
|
+
modelDetails: { 'type': 'array', 'itemType': ModelDetails },
|
|
21053
|
+
securityId: 'string',
|
|
21054
|
+
securityResult: 'string',
|
|
21055
|
+
strategyDetails: { 'type': 'array', 'itemType': StrategyDetails },
|
|
21056
|
+
dfSceneInfos: { 'type': 'array', 'itemType': DfSceneInfos },
|
|
21057
|
+
};
|
|
21058
|
+
}
|
|
21059
|
+
|
|
21060
|
+
constructor(map?: { [key: string]: any }) {
|
|
21061
|
+
super(map);
|
|
21062
|
+
}
|
|
21063
|
+
}
|
|
21064
|
+
|
|
21065
|
+
export class UploadUmktParamsFileRequest extends $tea.Model {
|
|
21066
|
+
// OAuth模式下的授权token
|
|
21067
|
+
authToken?: string;
|
|
21068
|
+
productInstanceId?: string;
|
|
21069
|
+
// file_id
|
|
21070
|
+
fileObject?: Readable;
|
|
21071
|
+
fileObjectName?: string;
|
|
21072
|
+
fileId: string;
|
|
21073
|
+
// 场景策略id
|
|
21074
|
+
sceneStrategyId: number;
|
|
21075
|
+
// 预计执行时间,不设置则为立即执行
|
|
21076
|
+
execTime?: string;
|
|
21077
|
+
// 支持不同的文件模版:
|
|
21078
|
+
// MOBILE_MD5_WITH_MS_VARIABLE、MOBILE_MD5
|
|
21079
|
+
// 后续支持
|
|
21080
|
+
// DEVICE_MD5
|
|
21081
|
+
fileTemplate: string;
|
|
21082
|
+
static names(): { [key: string]: string } {
|
|
21083
|
+
return {
|
|
21084
|
+
authToken: 'auth_token',
|
|
21085
|
+
productInstanceId: 'product_instance_id',
|
|
21086
|
+
fileObject: 'fileObject',
|
|
21087
|
+
fileObjectName: 'fileObjectName',
|
|
21088
|
+
fileId: 'file_id',
|
|
21089
|
+
sceneStrategyId: 'scene_strategy_id',
|
|
21090
|
+
execTime: 'exec_time',
|
|
21091
|
+
fileTemplate: 'file_template',
|
|
21092
|
+
};
|
|
21093
|
+
}
|
|
21094
|
+
|
|
21095
|
+
static types(): { [key: string]: any } {
|
|
21096
|
+
return {
|
|
21097
|
+
authToken: 'string',
|
|
21098
|
+
productInstanceId: 'string',
|
|
21099
|
+
fileObject: 'Readable',
|
|
21100
|
+
fileObjectName: 'string',
|
|
21101
|
+
fileId: 'string',
|
|
21102
|
+
sceneStrategyId: 'number',
|
|
21103
|
+
execTime: 'string',
|
|
21104
|
+
fileTemplate: 'string',
|
|
21105
|
+
};
|
|
21106
|
+
}
|
|
21107
|
+
|
|
21108
|
+
constructor(map?: { [key: string]: any }) {
|
|
21109
|
+
super(map);
|
|
21110
|
+
}
|
|
21111
|
+
}
|
|
21112
|
+
|
|
21113
|
+
export class UploadUmktParamsFileResponse extends $tea.Model {
|
|
21114
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
21115
|
+
reqMsgId?: string;
|
|
21116
|
+
// 结果码,一般OK表示调用成功
|
|
21117
|
+
resultCode?: string;
|
|
21118
|
+
// 异常信息的文本描述
|
|
21119
|
+
resultMsg?: string;
|
|
21120
|
+
// 上传后返回的任务id
|
|
21121
|
+
taskId?: number;
|
|
21122
|
+
static names(): { [key: string]: string } {
|
|
21123
|
+
return {
|
|
21124
|
+
reqMsgId: 'req_msg_id',
|
|
21125
|
+
resultCode: 'result_code',
|
|
21126
|
+
resultMsg: 'result_msg',
|
|
21127
|
+
taskId: 'task_id',
|
|
21128
|
+
};
|
|
21129
|
+
}
|
|
21130
|
+
|
|
21131
|
+
static types(): { [key: string]: any } {
|
|
21132
|
+
return {
|
|
21133
|
+
reqMsgId: 'string',
|
|
21134
|
+
resultCode: 'string',
|
|
21135
|
+
resultMsg: 'string',
|
|
21136
|
+
taskId: 'number',
|
|
21137
|
+
};
|
|
21138
|
+
}
|
|
21139
|
+
|
|
21140
|
+
constructor(map?: { [key: string]: any }) {
|
|
21141
|
+
super(map);
|
|
21142
|
+
}
|
|
21143
|
+
}
|
|
21144
|
+
|
|
21145
|
+
export class BatchqueryUmktRtMarketingRequest extends $tea.Model {
|
|
21146
|
+
// OAuth模式下的授权token
|
|
21147
|
+
authToken?: string;
|
|
21148
|
+
productInstanceId?: string;
|
|
21149
|
+
// 场景营销策略id
|
|
21150
|
+
sceneStrategyId: number;
|
|
21151
|
+
// 用户列表传输模版
|
|
21152
|
+
queryTemplate?: string;
|
|
21153
|
+
// 用户查询凭证列表
|
|
21154
|
+
customerKeys: string[];
|
|
21155
|
+
// 业务方流水号
|
|
21156
|
+
bizSerialNo: string;
|
|
21157
|
+
// 访问类型,PROD/TEST,正式流量/测试流量
|
|
21158
|
+
visitType?: string;
|
|
21159
|
+
// 圈客阈值干预参数,json-map格式
|
|
20235
21160
|
bizProperties?: string;
|
|
20236
21161
|
static names(): { [key: string]: string } {
|
|
20237
21162
|
return {
|
|
@@ -23584,7 +24509,7 @@ export default class Client {
|
|
|
23584
24509
|
req_msg_id: AntchainUtil.getNonce(),
|
|
23585
24510
|
access_key: this._accessKeyId,
|
|
23586
24511
|
base_sdk_version: "TeaSDK-2.0",
|
|
23587
|
-
sdk_version: "1.
|
|
24512
|
+
sdk_version: "1.25.5",
|
|
23588
24513
|
_prod_code: "RISKPLUS",
|
|
23589
24514
|
_prod_channel: "undefined",
|
|
23590
24515
|
};
|
|
@@ -25848,6 +26773,25 @@ export default class Client {
|
|
|
25848
26773
|
return $tea.cast<UploadQmpOfflinehostplanResponse>(await this.doRequest("1.0", "riskplus.qmp.offlinehostplan.upload", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UploadQmpOfflinehostplanResponse({}));
|
|
25849
26774
|
}
|
|
25850
26775
|
|
|
26776
|
+
/**
|
|
26777
|
+
* Description: 安全托管分层结果查询接口
|
|
26778
|
+
* Summary: 安全托管分层结果查询接口
|
|
26779
|
+
*/
|
|
26780
|
+
async queryQmpOfflinehostplanDecisionresult(request: QueryQmpOfflinehostplanDecisionresultRequest): Promise<QueryQmpOfflinehostplanDecisionresultResponse> {
|
|
26781
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
26782
|
+
let headers : {[key: string ]: string} = { };
|
|
26783
|
+
return await this.queryQmpOfflinehostplanDecisionresultEx(request, headers, runtime);
|
|
26784
|
+
}
|
|
26785
|
+
|
|
26786
|
+
/**
|
|
26787
|
+
* Description: 安全托管分层结果查询接口
|
|
26788
|
+
* Summary: 安全托管分层结果查询接口
|
|
26789
|
+
*/
|
|
26790
|
+
async queryQmpOfflinehostplanDecisionresultEx(request: QueryQmpOfflinehostplanDecisionresultRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryQmpOfflinehostplanDecisionresultResponse> {
|
|
26791
|
+
Util.validateModel(request);
|
|
26792
|
+
return $tea.cast<QueryQmpOfflinehostplanDecisionresultResponse>(await this.doRequest("1.0", "riskplus.qmp.offlinehostplan.decisionresult.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryQmpOfflinehostplanDecisionresultResponse({}));
|
|
26793
|
+
}
|
|
26794
|
+
|
|
25851
26795
|
/**
|
|
25852
26796
|
* Description: 企管盾票税交接授权信息表的同步
|
|
25853
26797
|
* Summary: 企管盾票税交接授权信息表的同步
|
|
@@ -26563,6 +27507,47 @@ export default class Client {
|
|
|
26563
27507
|
return $tea.cast<ReceiveRbbParamsFileResponse>(await this.doRequest("1.0", "riskplus.rbb.params.file.receive", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new ReceiveRbbParamsFileResponse({}));
|
|
26564
27508
|
}
|
|
26565
27509
|
|
|
27510
|
+
/**
|
|
27511
|
+
* Description: 境外企业画像数据接收
|
|
27512
|
+
* Summary: 境外企业画像数据接收
|
|
27513
|
+
*/
|
|
27514
|
+
async receiveRbbOverseacompanyProfile(request: ReceiveRbbOverseacompanyProfileRequest): Promise<ReceiveRbbOverseacompanyProfileResponse> {
|
|
27515
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
27516
|
+
let headers : {[key: string ]: string} = { };
|
|
27517
|
+
return await this.receiveRbbOverseacompanyProfileEx(request, headers, runtime);
|
|
27518
|
+
}
|
|
27519
|
+
|
|
27520
|
+
/**
|
|
27521
|
+
* Description: 境外企业画像数据接收
|
|
27522
|
+
* Summary: 境外企业画像数据接收
|
|
27523
|
+
*/
|
|
27524
|
+
async receiveRbbOverseacompanyProfileEx(request: ReceiveRbbOverseacompanyProfileRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ReceiveRbbOverseacompanyProfileResponse> {
|
|
27525
|
+
if (!Util.isUnset(request.fileObject)) {
|
|
27526
|
+
let uploadReq = new CreateAntcloudGatewayxFileUploadRequest({
|
|
27527
|
+
authToken: request.authToken,
|
|
27528
|
+
apiCode: "riskplus.rbb.overseacompany.profile.receive",
|
|
27529
|
+
fileName: request.fileObjectName,
|
|
27530
|
+
});
|
|
27531
|
+
let uploadResp = await this.createAntcloudGatewayxFileUploadEx(uploadReq, headers, runtime);
|
|
27532
|
+
if (!AntchainUtil.isSuccess(uploadResp.resultCode, "ok")) {
|
|
27533
|
+
let receiveRbbOverseacompanyProfileResponse = new ReceiveRbbOverseacompanyProfileResponse({
|
|
27534
|
+
reqMsgId: uploadResp.reqMsgId,
|
|
27535
|
+
resultCode: uploadResp.resultCode,
|
|
27536
|
+
resultMsg: uploadResp.resultMsg,
|
|
27537
|
+
});
|
|
27538
|
+
return receiveRbbOverseacompanyProfileResponse;
|
|
27539
|
+
}
|
|
27540
|
+
|
|
27541
|
+
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
27542
|
+
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
27543
|
+
request.fileId = uploadResp.fileId;
|
|
27544
|
+
request.fileObject = null;
|
|
27545
|
+
}
|
|
27546
|
+
|
|
27547
|
+
Util.validateModel(request);
|
|
27548
|
+
return $tea.cast<ReceiveRbbOverseacompanyProfileResponse>(await this.doRequest("1.0", "riskplus.rbb.overseacompany.profile.receive", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new ReceiveRbbOverseacompanyProfileResponse({}));
|
|
27549
|
+
}
|
|
27550
|
+
|
|
26566
27551
|
/**
|
|
26567
27552
|
* Description: 报告结果推送,算法调用
|
|
26568
27553
|
* Summary: 报告结果推送
|
|
@@ -27230,6 +28215,158 @@ export default class Client {
|
|
|
27230
28215
|
return $tea.cast<QuerySnapshotEventResponse>(await this.doRequest("1.0", "riskplus.snapshot.event.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QuerySnapshotEventResponse({}));
|
|
27231
28216
|
}
|
|
27232
28217
|
|
|
28218
|
+
/**
|
|
28219
|
+
* Description: 批量实时触达接口
|
|
28220
|
+
* Summary: 发起触达任务
|
|
28221
|
+
*/
|
|
28222
|
+
async applyTdiquickmsgRtBatchmarketing(request: ApplyTdiquickmsgRtBatchmarketingRequest): Promise<ApplyTdiquickmsgRtBatchmarketingResponse> {
|
|
28223
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
28224
|
+
let headers : {[key: string ]: string} = { };
|
|
28225
|
+
return await this.applyTdiquickmsgRtBatchmarketingEx(request, headers, runtime);
|
|
28226
|
+
}
|
|
28227
|
+
|
|
28228
|
+
/**
|
|
28229
|
+
* Description: 批量实时触达接口
|
|
28230
|
+
* Summary: 发起触达任务
|
|
28231
|
+
*/
|
|
28232
|
+
async applyTdiquickmsgRtBatchmarketingEx(request: ApplyTdiquickmsgRtBatchmarketingRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ApplyTdiquickmsgRtBatchmarketingResponse> {
|
|
28233
|
+
Util.validateModel(request);
|
|
28234
|
+
return $tea.cast<ApplyTdiquickmsgRtBatchmarketingResponse>(await this.doRequest("1.0", "riskplus.tdiquickmsg.rt.batchmarketing.apply", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new ApplyTdiquickmsgRtBatchmarketingResponse({}));
|
|
28235
|
+
}
|
|
28236
|
+
|
|
28237
|
+
/**
|
|
28238
|
+
* Description: 发起AI外呼
|
|
28239
|
+
* Summary: 发起AI外呼
|
|
28240
|
+
*/
|
|
28241
|
+
async applyTdiquickmsgRobotcall(request: ApplyTdiquickmsgRobotcallRequest): Promise<ApplyTdiquickmsgRobotcallResponse> {
|
|
28242
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
28243
|
+
let headers : {[key: string ]: string} = { };
|
|
28244
|
+
return await this.applyTdiquickmsgRobotcallEx(request, headers, runtime);
|
|
28245
|
+
}
|
|
28246
|
+
|
|
28247
|
+
/**
|
|
28248
|
+
* Description: 发起AI外呼
|
|
28249
|
+
* Summary: 发起AI外呼
|
|
28250
|
+
*/
|
|
28251
|
+
async applyTdiquickmsgRobotcallEx(request: ApplyTdiquickmsgRobotcallRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ApplyTdiquickmsgRobotcallResponse> {
|
|
28252
|
+
Util.validateModel(request);
|
|
28253
|
+
return $tea.cast<ApplyTdiquickmsgRobotcallResponse>(await this.doRequest("1.0", "riskplus.tdiquickmsg.robotcall.apply", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new ApplyTdiquickmsgRobotcallResponse({}));
|
|
28254
|
+
}
|
|
28255
|
+
|
|
28256
|
+
/**
|
|
28257
|
+
* Description: 短信状态回调接口
|
|
28258
|
+
* Summary: 短信状态回调接口
|
|
28259
|
+
*/
|
|
28260
|
+
async callbackTdiquickmsgSms(request: CallbackTdiquickmsgSmsRequest): Promise<CallbackTdiquickmsgSmsResponse> {
|
|
28261
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
28262
|
+
let headers : {[key: string ]: string} = { };
|
|
28263
|
+
return await this.callbackTdiquickmsgSmsEx(request, headers, runtime);
|
|
28264
|
+
}
|
|
28265
|
+
|
|
28266
|
+
/**
|
|
28267
|
+
* Description: 短信状态回调接口
|
|
28268
|
+
* Summary: 短信状态回调接口
|
|
28269
|
+
*/
|
|
28270
|
+
async callbackTdiquickmsgSmsEx(request: CallbackTdiquickmsgSmsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CallbackTdiquickmsgSmsResponse> {
|
|
28271
|
+
Util.validateModel(request);
|
|
28272
|
+
return $tea.cast<CallbackTdiquickmsgSmsResponse>(await this.doRequest("1.0", "riskplus.tdiquickmsg.sms.callback", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CallbackTdiquickmsgSmsResponse({}));
|
|
28273
|
+
}
|
|
28274
|
+
|
|
28275
|
+
/**
|
|
28276
|
+
* Description: 新接入ai外呼服务商的回调接口
|
|
28277
|
+
* Summary: ai外呼回调接口
|
|
28278
|
+
*/
|
|
28279
|
+
async callbackTdiquickmsgRobotcall(request: CallbackTdiquickmsgRobotcallRequest): Promise<CallbackTdiquickmsgRobotcallResponse> {
|
|
28280
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
28281
|
+
let headers : {[key: string ]: string} = { };
|
|
28282
|
+
return await this.callbackTdiquickmsgRobotcallEx(request, headers, runtime);
|
|
28283
|
+
}
|
|
28284
|
+
|
|
28285
|
+
/**
|
|
28286
|
+
* Description: 新接入ai外呼服务商的回调接口
|
|
28287
|
+
* Summary: ai外呼回调接口
|
|
28288
|
+
*/
|
|
28289
|
+
async callbackTdiquickmsgRobotcallEx(request: CallbackTdiquickmsgRobotcallRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CallbackTdiquickmsgRobotcallResponse> {
|
|
28290
|
+
Util.validateModel(request);
|
|
28291
|
+
return $tea.cast<CallbackTdiquickmsgRobotcallResponse>(await this.doRequest("1.0", "riskplus.tdiquickmsg.robotcall.callback", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CallbackTdiquickmsgRobotcallResponse({}));
|
|
28292
|
+
}
|
|
28293
|
+
|
|
28294
|
+
/**
|
|
28295
|
+
* Description: 上行短信回调
|
|
28296
|
+
* Summary: 上行短信回调
|
|
28297
|
+
*/
|
|
28298
|
+
async callbackTdiquickmsgSmsUp(request: CallbackTdiquickmsgSmsUpRequest): Promise<CallbackTdiquickmsgSmsUpResponse> {
|
|
28299
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
28300
|
+
let headers : {[key: string ]: string} = { };
|
|
28301
|
+
return await this.callbackTdiquickmsgSmsUpEx(request, headers, runtime);
|
|
28302
|
+
}
|
|
28303
|
+
|
|
28304
|
+
/**
|
|
28305
|
+
* Description: 上行短信回调
|
|
28306
|
+
* Summary: 上行短信回调
|
|
28307
|
+
*/
|
|
28308
|
+
async callbackTdiquickmsgSmsUpEx(request: CallbackTdiquickmsgSmsUpRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CallbackTdiquickmsgSmsUpResponse> {
|
|
28309
|
+
Util.validateModel(request);
|
|
28310
|
+
return $tea.cast<CallbackTdiquickmsgSmsUpResponse>(await this.doRequest("1.0", "riskplus.tdiquickmsg.sms.up.callback", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CallbackTdiquickmsgSmsUpResponse({}));
|
|
28311
|
+
}
|
|
28312
|
+
|
|
28313
|
+
/**
|
|
28314
|
+
* Description: 外呼任务统计查询接口
|
|
28315
|
+
* Summary: 外呼任务统计查询接口
|
|
28316
|
+
*/
|
|
28317
|
+
async queryTdiquickmsgRobotcallStatisticinfo(request: QueryTdiquickmsgRobotcallStatisticinfoRequest): Promise<QueryTdiquickmsgRobotcallStatisticinfoResponse> {
|
|
28318
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
28319
|
+
let headers : {[key: string ]: string} = { };
|
|
28320
|
+
return await this.queryTdiquickmsgRobotcallStatisticinfoEx(request, headers, runtime);
|
|
28321
|
+
}
|
|
28322
|
+
|
|
28323
|
+
/**
|
|
28324
|
+
* Description: 外呼任务统计查询接口
|
|
28325
|
+
* Summary: 外呼任务统计查询接口
|
|
28326
|
+
*/
|
|
28327
|
+
async queryTdiquickmsgRobotcallStatisticinfoEx(request: QueryTdiquickmsgRobotcallStatisticinfoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryTdiquickmsgRobotcallStatisticinfoResponse> {
|
|
28328
|
+
Util.validateModel(request);
|
|
28329
|
+
return $tea.cast<QueryTdiquickmsgRobotcallStatisticinfoResponse>(await this.doRequest("1.0", "riskplus.tdiquickmsg.robotcall.statisticinfo.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryTdiquickmsgRobotcallStatisticinfoResponse({}));
|
|
28330
|
+
}
|
|
28331
|
+
|
|
28332
|
+
/**
|
|
28333
|
+
* Description: 蚁盾业务回流事件推送
|
|
28334
|
+
* Summary: 蚁盾业务回流事件推送
|
|
28335
|
+
*/
|
|
28336
|
+
async pushTdiquickmsgBackflowEvent(request: PushTdiquickmsgBackflowEventRequest): Promise<PushTdiquickmsgBackflowEventResponse> {
|
|
28337
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
28338
|
+
let headers : {[key: string ]: string} = { };
|
|
28339
|
+
return await this.pushTdiquickmsgBackflowEventEx(request, headers, runtime);
|
|
28340
|
+
}
|
|
28341
|
+
|
|
28342
|
+
/**
|
|
28343
|
+
* Description: 蚁盾业务回流事件推送
|
|
28344
|
+
* Summary: 蚁盾业务回流事件推送
|
|
28345
|
+
*/
|
|
28346
|
+
async pushTdiquickmsgBackflowEventEx(request: PushTdiquickmsgBackflowEventRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PushTdiquickmsgBackflowEventResponse> {
|
|
28347
|
+
Util.validateModel(request);
|
|
28348
|
+
return $tea.cast<PushTdiquickmsgBackflowEventResponse>(await this.doRequest("1.0", "riskplus.tdiquickmsg.backflow.event.push", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PushTdiquickmsgBackflowEventResponse({}));
|
|
28349
|
+
}
|
|
28350
|
+
|
|
28351
|
+
/**
|
|
28352
|
+
* Description: 蚁盾数据回流推送,用于客户定制json数据
|
|
28353
|
+
* Summary: 蚁盾数据回流json格式推送
|
|
28354
|
+
*/
|
|
28355
|
+
async pushTdiquickmsgBackflowJsondata(request: PushTdiquickmsgBackflowJsondataRequest): Promise<PushTdiquickmsgBackflowJsondataResponse> {
|
|
28356
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
28357
|
+
let headers : {[key: string ]: string} = { };
|
|
28358
|
+
return await this.pushTdiquickmsgBackflowJsondataEx(request, headers, runtime);
|
|
28359
|
+
}
|
|
28360
|
+
|
|
28361
|
+
/**
|
|
28362
|
+
* Description: 蚁盾数据回流推送,用于客户定制json数据
|
|
28363
|
+
* Summary: 蚁盾数据回流json格式推送
|
|
28364
|
+
*/
|
|
28365
|
+
async pushTdiquickmsgBackflowJsondataEx(request: PushTdiquickmsgBackflowJsondataRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PushTdiquickmsgBackflowJsondataResponse> {
|
|
28366
|
+
Util.validateModel(request);
|
|
28367
|
+
return $tea.cast<PushTdiquickmsgBackflowJsondataResponse>(await this.doRequest("1.0", "riskplus.tdiquickmsg.backflow.jsondata.push", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PushTdiquickmsgBackflowJsondataResponse({}));
|
|
28368
|
+
}
|
|
28369
|
+
|
|
27233
28370
|
/**
|
|
27234
28371
|
* Description: saas风险咨询,决策流模式
|
|
27235
28372
|
* Summary: saas风险咨询
|