@antchain/riskplus 1.24.7 → 1.25.4

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