@antchain/riskplus 1.13.13 → 1.15.0

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.js CHANGED
@@ -266,6 +266,27 @@ class RtopTypeDistribution extends $tea.Model {
266
266
  }
267
267
  }
268
268
  exports.RtopTypeDistribution = RtopTypeDistribution;
269
+ // 用户的混合策略圈客结果
270
+ class UmktInfoModel extends $tea.Model {
271
+ constructor(map) {
272
+ super(map);
273
+ }
274
+ static names() {
275
+ return {
276
+ sceneStrategyId: 'scene_strategy_id',
277
+ umktResult: 'umkt_result',
278
+ umktOutPutInfo: 'umkt_out_put_info',
279
+ };
280
+ }
281
+ static types() {
282
+ return {
283
+ sceneStrategyId: 'number',
284
+ umktResult: 'number',
285
+ umktOutPutInfo: 'string',
286
+ };
287
+ }
288
+ }
289
+ exports.UmktInfoModel = UmktInfoModel;
269
290
  // 监管风险标签
270
291
  class RtopRiskTag extends $tea.Model {
271
292
  constructor(map) {
@@ -377,7 +398,7 @@ class RepayRef extends $tea.Model {
377
398
  customNo: 'custom_no',
378
399
  period: 'period',
379
400
  needAmount: 'need_amount',
380
- transPrincipal: 'trans_principal',
401
+ needCorpus: 'need_corpus',
381
402
  needAccrual: 'need_accrual',
382
403
  needFee: 'need_fee',
383
404
  alreadyAmount: 'already_amount',
@@ -404,7 +425,7 @@ class RepayRef extends $tea.Model {
404
425
  customNo: 'string',
405
426
  period: 'string',
406
427
  needAmount: 'number',
407
- transPrincipal: 'number',
428
+ needCorpus: 'number',
408
429
  needAccrual: 'number',
409
430
  needFee: 'number',
410
431
  alreadyAmount: 'number',
@@ -1667,33 +1688,6 @@ class RpcommonResp extends $tea.Model {
1667
1688
  }
1668
1689
  }
1669
1690
  exports.RpcommonResp = RpcommonResp;
1670
- // 公司列表
1671
- class CompanyItems extends $tea.Model {
1672
- constructor(map) {
1673
- super(map);
1674
- }
1675
- static names() {
1676
- return {
1677
- companyId: 'company_id',
1678
- companyName: 'company_name',
1679
- matchingName: 'matching_name',
1680
- matchingType: 'matching_type',
1681
- matchingValue: 'matching_value',
1682
- ucCode: 'uc_code',
1683
- };
1684
- }
1685
- static types() {
1686
- return {
1687
- companyId: 'string',
1688
- companyName: 'string',
1689
- matchingName: 'string',
1690
- matchingType: 'string',
1691
- matchingValue: 'string',
1692
- ucCode: 'string',
1693
- };
1694
- }
1695
- }
1696
- exports.CompanyItems = CompanyItems;
1697
1691
  // 标签图片
1698
1692
  class RtopTagImage extends $tea.Model {
1699
1693
  constructor(map) {
@@ -1862,6 +1856,25 @@ class CustomerUmktInfoModel extends $tea.Model {
1862
1856
  }
1863
1857
  }
1864
1858
  exports.CustomerUmktInfoModel = CustomerUmktInfoModel;
1859
+ // 混合批量营销圈客结果
1860
+ class CustomerUmktInfosModel extends $tea.Model {
1861
+ constructor(map) {
1862
+ super(map);
1863
+ }
1864
+ static names() {
1865
+ return {
1866
+ umktResults: 'umkt_results',
1867
+ customerKey: 'customer_key',
1868
+ };
1869
+ }
1870
+ static types() {
1871
+ return {
1872
+ umktResults: { 'type': 'array', 'itemType': UmktInfoModel },
1873
+ customerKey: 'string',
1874
+ };
1875
+ }
1876
+ }
1877
+ exports.CustomerUmktInfosModel = CustomerUmktInfosModel;
1865
1878
  // 模型结果详情
1866
1879
  //
1867
1880
  class ModelDetails extends $tea.Model {
@@ -2179,6 +2192,35 @@ class CreditAmount extends $tea.Model {
2179
2192
  }
2180
2193
  }
2181
2194
  exports.CreditAmount = CreditAmount;
2195
+ // 短信模板内容
2196
+ class CpaasSmsTemplate extends $tea.Model {
2197
+ constructor(map) {
2198
+ super(map);
2199
+ }
2200
+ static names() {
2201
+ return {
2202
+ templateType: 'template_type',
2203
+ templateName: 'template_name',
2204
+ templateContent: 'template_content',
2205
+ status: 'status',
2206
+ templateCode: 'template_code',
2207
+ failReason: 'fail_reason',
2208
+ createTime: 'create_time',
2209
+ };
2210
+ }
2211
+ static types() {
2212
+ return {
2213
+ templateType: 'string',
2214
+ templateName: 'string',
2215
+ templateContent: 'string',
2216
+ status: 'string',
2217
+ templateCode: 'string',
2218
+ failReason: 'string',
2219
+ createTime: 'string',
2220
+ };
2221
+ }
2222
+ }
2223
+ exports.CpaasSmsTemplate = CpaasSmsTemplate;
2182
2224
  // 舆情的详情
2183
2225
  class RtopCompanyOpinionDetail extends $tea.Model {
2184
2226
  constructor(map) {
@@ -3856,6 +3898,10 @@ class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
3856
3898
  customerNo: 'customer_no',
3857
3899
  bankCardNo: 'bank_card_no',
3858
3900
  channelCode: 'channel_code',
3901
+ customName: 'custom_name',
3902
+ openId: 'open_id',
3903
+ cardNo: 'card_no',
3904
+ mobile: 'mobile',
3859
3905
  };
3860
3906
  }
3861
3907
  static types() {
@@ -3866,6 +3912,10 @@ class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
3866
3912
  customerNo: 'string',
3867
3913
  bankCardNo: 'string',
3868
3914
  channelCode: 'string',
3915
+ customName: 'string',
3916
+ openId: 'string',
3917
+ cardNo: 'string',
3918
+ mobile: 'string',
3869
3919
  };
3870
3920
  }
3871
3921
  }
@@ -3906,6 +3956,8 @@ class VerifyDubbridgeCustomerBankcardRequest extends $tea.Model {
3906
3956
  customNo: 'custom_no',
3907
3957
  bindSerialNo: 'bind_serial_no',
3908
3958
  bindValidCode: 'bind_valid_code',
3959
+ bankCardNo: 'bank_card_no',
3960
+ channelCode: 'channel_code',
3909
3961
  };
3910
3962
  }
3911
3963
  static types() {
@@ -3916,6 +3968,8 @@ class VerifyDubbridgeCustomerBankcardRequest extends $tea.Model {
3916
3968
  customNo: 'string',
3917
3969
  bindSerialNo: 'string',
3918
3970
  bindValidCode: 'string',
3971
+ bankCardNo: 'string',
3972
+ channelCode: 'string',
3919
3973
  };
3920
3974
  }
3921
3975
  }
@@ -4909,6 +4963,7 @@ class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
4909
4963
  originalOrderNo: 'original_order_no',
4910
4964
  repayType: 'repay_type',
4911
4965
  orderNo: 'order_no',
4966
+ validRepayAmount: 'valid_repay_amount',
4912
4967
  };
4913
4968
  }
4914
4969
  static types() {
@@ -4918,6 +4973,7 @@ class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
4918
4973
  originalOrderNo: 'string',
4919
4974
  repayType: 'string',
4920
4975
  orderNo: 'string',
4976
+ validRepayAmount: 'string',
4921
4977
  };
4922
4978
  }
4923
4979
  }
@@ -4975,7 +5031,7 @@ class QueryDubbridgeSearchContractResponse extends $tea.Model {
4975
5031
  reqMsgId: 'req_msg_id',
4976
5032
  resultCode: 'result_code',
4977
5033
  resultMsg: 'result_msg',
4978
- contractResponseList: 'contract_response_list',
5034
+ contracts: 'contracts',
4979
5035
  };
4980
5036
  }
4981
5037
  static types() {
@@ -4983,7 +5039,7 @@ class QueryDubbridgeSearchContractResponse extends $tea.Model {
4983
5039
  reqMsgId: 'string',
4984
5040
  resultCode: 'string',
4985
5041
  resultMsg: 'string',
4986
- contractResponseList: { 'type': 'array', 'itemType': Contract },
5042
+ contracts: { 'type': 'array', 'itemType': Contract },
4987
5043
  };
4988
5044
  }
4989
5045
  }
@@ -5204,50 +5260,6 @@ class QueryDubbridgeCustomerCommonagreementsignResponse extends $tea.Model {
5204
5260
  }
5205
5261
  }
5206
5262
  exports.QueryDubbridgeCustomerCommonagreementsignResponse = QueryDubbridgeCustomerCommonagreementsignResponse;
5207
- class QueryDubbridgeCompanyItemsRequest extends $tea.Model {
5208
- constructor(map) {
5209
- super(map);
5210
- }
5211
- static names() {
5212
- return {
5213
- authToken: 'auth_token',
5214
- productInstanceId: 'product_instance_id',
5215
- keyword: 'keyword',
5216
- };
5217
- }
5218
- static types() {
5219
- return {
5220
- authToken: 'string',
5221
- productInstanceId: 'string',
5222
- keyword: 'string',
5223
- };
5224
- }
5225
- }
5226
- exports.QueryDubbridgeCompanyItemsRequest = QueryDubbridgeCompanyItemsRequest;
5227
- class QueryDubbridgeCompanyItemsResponse extends $tea.Model {
5228
- constructor(map) {
5229
- super(map);
5230
- }
5231
- static names() {
5232
- return {
5233
- reqMsgId: 'req_msg_id',
5234
- resultCode: 'result_code',
5235
- resultMsg: 'result_msg',
5236
- businessItems: 'business_items',
5237
- total: 'total',
5238
- };
5239
- }
5240
- static types() {
5241
- return {
5242
- reqMsgId: 'string',
5243
- resultCode: 'string',
5244
- resultMsg: 'string',
5245
- businessItems: { 'type': 'array', 'itemType': CompanyItems },
5246
- total: 'number',
5247
- };
5248
- }
5249
- }
5250
- exports.QueryDubbridgeCompanyItemsResponse = QueryDubbridgeCompanyItemsResponse;
5251
5263
  class UpdateDubbridgeFileRequest extends $tea.Model {
5252
5264
  constructor(map) {
5253
5265
  super(map);
@@ -5294,92 +5306,6 @@ class UpdateDubbridgeFileResponse extends $tea.Model {
5294
5306
  }
5295
5307
  }
5296
5308
  exports.UpdateDubbridgeFileResponse = UpdateDubbridgeFileResponse;
5297
- class QueryDubbridgeCreditUrlRequest extends $tea.Model {
5298
- constructor(map) {
5299
- super(map);
5300
- }
5301
- static names() {
5302
- return {
5303
- authToken: 'auth_token',
5304
- productInstanceId: 'product_instance_id',
5305
- };
5306
- }
5307
- static types() {
5308
- return {
5309
- authToken: 'string',
5310
- productInstanceId: 'string',
5311
- };
5312
- }
5313
- }
5314
- exports.QueryDubbridgeCreditUrlRequest = QueryDubbridgeCreditUrlRequest;
5315
- class QueryDubbridgeCreditUrlResponse extends $tea.Model {
5316
- constructor(map) {
5317
- super(map);
5318
- }
5319
- static names() {
5320
- return {
5321
- reqMsgId: 'req_msg_id',
5322
- resultCode: 'result_code',
5323
- resultMsg: 'result_msg',
5324
- };
5325
- }
5326
- static types() {
5327
- return {
5328
- reqMsgId: 'string',
5329
- resultCode: 'string',
5330
- resultMsg: 'string',
5331
- };
5332
- }
5333
- }
5334
- exports.QueryDubbridgeCreditUrlResponse = QueryDubbridgeCreditUrlResponse;
5335
- class QueryDubbridgeBusinessDetailRequest extends $tea.Model {
5336
- constructor(map) {
5337
- super(map);
5338
- }
5339
- static names() {
5340
- return {
5341
- authToken: 'auth_token',
5342
- productInstanceId: 'product_instance_id',
5343
- keyword: 'keyword',
5344
- };
5345
- }
5346
- static types() {
5347
- return {
5348
- authToken: 'string',
5349
- productInstanceId: 'string',
5350
- keyword: 'string',
5351
- };
5352
- }
5353
- }
5354
- exports.QueryDubbridgeBusinessDetailRequest = QueryDubbridgeBusinessDetailRequest;
5355
- class QueryDubbridgeBusinessDetailResponse extends $tea.Model {
5356
- constructor(map) {
5357
- super(map);
5358
- }
5359
- static names() {
5360
- return {
5361
- reqMsgId: 'req_msg_id',
5362
- resultCode: 'result_code',
5363
- resultMsg: 'result_msg',
5364
- ucCode: 'uc_code',
5365
- registerDate: 'register_date',
5366
- operatingAddrJson: 'operating_addr_json',
5367
- addressDetail: 'address_detail',
5368
- };
5369
- }
5370
- static types() {
5371
- return {
5372
- reqMsgId: 'string',
5373
- resultCode: 'string',
5374
- resultMsg: 'string',
5375
- ucCode: 'string',
5376
- registerDate: 'string',
5377
- operatingAddrJson: 'string',
5378
- addressDetail: 'string',
5379
- };
5380
- }
5381
- }
5382
- exports.QueryDubbridgeBusinessDetailResponse = QueryDubbridgeBusinessDetailResponse;
5383
5309
  class NotifyDubbridgeCallbackRequest extends $tea.Model {
5384
5310
  constructor(map) {
5385
5311
  super(map);
@@ -8930,6 +8856,114 @@ class SendUmktDigitalsmsBatchResponse extends $tea.Model {
8930
8856
  }
8931
8857
  }
8932
8858
  exports.SendUmktDigitalsmsBatchResponse = SendUmktDigitalsmsBatchResponse;
8859
+ class QueryUmktCpaassmsTemplateRequest extends $tea.Model {
8860
+ constructor(map) {
8861
+ super(map);
8862
+ }
8863
+ static names() {
8864
+ return {
8865
+ authToken: 'auth_token',
8866
+ productInstanceId: 'product_instance_id',
8867
+ tenantId: 'tenant_id',
8868
+ smsType: 'sms_type',
8869
+ tenantIndustry: 'tenant_industry',
8870
+ status: 'status',
8871
+ pageNum: 'page_num',
8872
+ pageSize: 'page_size',
8873
+ };
8874
+ }
8875
+ static types() {
8876
+ return {
8877
+ authToken: 'string',
8878
+ productInstanceId: 'string',
8879
+ tenantId: 'string',
8880
+ smsType: 'string',
8881
+ tenantIndustry: 'string',
8882
+ status: 'string',
8883
+ pageNum: 'number',
8884
+ pageSize: 'number',
8885
+ };
8886
+ }
8887
+ }
8888
+ exports.QueryUmktCpaassmsTemplateRequest = QueryUmktCpaassmsTemplateRequest;
8889
+ class QueryUmktCpaassmsTemplateResponse extends $tea.Model {
8890
+ constructor(map) {
8891
+ super(map);
8892
+ }
8893
+ static names() {
8894
+ return {
8895
+ reqMsgId: 'req_msg_id',
8896
+ resultCode: 'result_code',
8897
+ resultMsg: 'result_msg',
8898
+ total: 'total',
8899
+ pageSize: 'page_size',
8900
+ pageNum: 'page_num',
8901
+ cpassSmsTemplates: 'cpass_sms_templates',
8902
+ };
8903
+ }
8904
+ static types() {
8905
+ return {
8906
+ reqMsgId: 'string',
8907
+ resultCode: 'string',
8908
+ resultMsg: 'string',
8909
+ total: 'number',
8910
+ pageSize: 'number',
8911
+ pageNum: 'number',
8912
+ cpassSmsTemplates: { 'type': 'array', 'itemType': CpaasSmsTemplate },
8913
+ };
8914
+ }
8915
+ }
8916
+ exports.QueryUmktCpaassmsTemplateResponse = QueryUmktCpaassmsTemplateResponse;
8917
+ class BatchqueryUmktRtMixedmarketingRequest extends $tea.Model {
8918
+ constructor(map) {
8919
+ super(map);
8920
+ }
8921
+ static names() {
8922
+ return {
8923
+ authToken: 'auth_token',
8924
+ productInstanceId: 'product_instance_id',
8925
+ sceneStrategyIds: 'scene_strategy_ids',
8926
+ sceneStrategySetCode: 'scene_strategy_set_code',
8927
+ queryTemplate: 'query_template',
8928
+ customerKeys: 'customer_keys',
8929
+ bizSerialNo: 'biz_serial_no',
8930
+ };
8931
+ }
8932
+ static types() {
8933
+ return {
8934
+ authToken: 'string',
8935
+ productInstanceId: 'string',
8936
+ sceneStrategyIds: { 'type': 'array', 'itemType': 'number' },
8937
+ sceneStrategySetCode: 'string',
8938
+ queryTemplate: 'string',
8939
+ customerKeys: { 'type': 'array', 'itemType': 'string' },
8940
+ bizSerialNo: 'string',
8941
+ };
8942
+ }
8943
+ }
8944
+ exports.BatchqueryUmktRtMixedmarketingRequest = BatchqueryUmktRtMixedmarketingRequest;
8945
+ class BatchqueryUmktRtMixedmarketingResponse extends $tea.Model {
8946
+ constructor(map) {
8947
+ super(map);
8948
+ }
8949
+ static names() {
8950
+ return {
8951
+ reqMsgId: 'req_msg_id',
8952
+ resultCode: 'result_code',
8953
+ resultMsg: 'result_msg',
8954
+ queryResults: 'query_results',
8955
+ };
8956
+ }
8957
+ static types() {
8958
+ return {
8959
+ reqMsgId: 'string',
8960
+ resultCode: 'string',
8961
+ resultMsg: 'string',
8962
+ queryResults: { 'type': 'array', 'itemType': CustomerUmktInfosModel },
8963
+ };
8964
+ }
8965
+ }
8966
+ exports.BatchqueryUmktRtMixedmarketingResponse = BatchqueryUmktRtMixedmarketingResponse;
8933
8967
  class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
8934
8968
  constructor(map) {
8935
8969
  super(map);
@@ -9074,7 +9108,9 @@ class Client {
9074
9108
  req_msg_id: alipay_util_1.default.getNonce(),
9075
9109
  access_key: this._accessKeyId,
9076
9110
  base_sdk_version: "TeaSDK-2.0",
9077
- sdk_version: "1.13.13",
9111
+ sdk_version: "1.15.0",
9112
+ _prod_code: "RISKPLUS",
9113
+ _prod_channel: "undefined",
9078
9114
  };
9079
9115
  if (!tea_util_1.default.empty(this._securityToken)) {
9080
9116
  request_.query["security_token"] = this._securityToken;
@@ -10063,23 +10099,6 @@ class Client {
10063
10099
  tea_util_1.default.validateModel(request);
10064
10100
  return $tea.cast(await this.doRequest("1.0", "riskplus.dubbridge.customer.commonagreementsign.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeCustomerCommonagreementsignResponse({}));
10065
10101
  }
10066
- /**
10067
- * Description: 根据关键字从第三方查询企业信息
10068
- * Summary: 天枢系统企业搜索
10069
- */
10070
- async queryDubbridgeCompanyItems(request) {
10071
- let runtime = new $Util.RuntimeOptions({});
10072
- let headers = {};
10073
- return await this.queryDubbridgeCompanyItemsEx(request, headers, runtime);
10074
- }
10075
- /**
10076
- * Description: 根据关键字从第三方查询企业信息
10077
- * Summary: 天枢系统企业搜索
10078
- */
10079
- async queryDubbridgeCompanyItemsEx(request, headers, runtime) {
10080
- tea_util_1.default.validateModel(request);
10081
- return $tea.cast(await this.doRequest("1.0", "riskplus.dubbridge.company.items.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeCompanyItemsResponse({}));
10082
- }
10083
10102
  /**
10084
10103
  * Description: 客户影像信息更新
10085
10104
  * Summary: 客户影像信息更新
@@ -10097,40 +10116,6 @@ class Client {
10097
10116
  tea_util_1.default.validateModel(request);
10098
10117
  return $tea.cast(await this.doRequest("1.0", "riskplus.dubbridge.file.update", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UpdateDubbridgeFileResponse({}));
10099
10118
  }
10100
- /**
10101
- * Description: 天枢系统获取授信H5地址
10102
- * Summary: 天枢系统获取授信H5地址
10103
- */
10104
- async queryDubbridgeCreditUrl(request) {
10105
- let runtime = new $Util.RuntimeOptions({});
10106
- let headers = {};
10107
- return await this.queryDubbridgeCreditUrlEx(request, headers, runtime);
10108
- }
10109
- /**
10110
- * Description: 天枢系统获取授信H5地址
10111
- * Summary: 天枢系统获取授信H5地址
10112
- */
10113
- async queryDubbridgeCreditUrlEx(request, headers, runtime) {
10114
- tea_util_1.default.validateModel(request);
10115
- return $tea.cast(await this.doRequest("1.0", "riskplus.dubbridge.credit.url.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeCreditUrlResponse({}));
10116
- }
10117
- /**
10118
- * Description: 根据关键字从第三方查询企业详情信息
10119
- * Summary: 天枢系统企业详情信息查询
10120
- */
10121
- async queryDubbridgeBusinessDetail(request) {
10122
- let runtime = new $Util.RuntimeOptions({});
10123
- let headers = {};
10124
- return await this.queryDubbridgeBusinessDetailEx(request, headers, runtime);
10125
- }
10126
- /**
10127
- * Description: 根据关键字从第三方查询企业详情信息
10128
- * Summary: 天枢系统企业详情信息查询
10129
- */
10130
- async queryDubbridgeBusinessDetailEx(request, headers, runtime) {
10131
- tea_util_1.default.validateModel(request);
10132
- return $tea.cast(await this.doRequest("1.0", "riskplus.dubbridge.business.detail.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeBusinessDetailResponse({}));
10133
- }
10134
10119
  /**
10135
10120
  * Description: 天枢回调通用接口
10136
10121
  * Summary: 天枢回调通用接口
@@ -11361,6 +11346,40 @@ class Client {
11361
11346
  tea_util_1.default.validateModel(request);
11362
11347
  return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.digitalsms.batch.send", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new SendUmktDigitalsmsBatchResponse({}));
11363
11348
  }
11349
+ /**
11350
+ * Description: 分页查询cpaas短信模板
11351
+ * Summary: cpaas短信模板分页查询
11352
+ */
11353
+ async queryUmktCpaassmsTemplate(request) {
11354
+ let runtime = new $Util.RuntimeOptions({});
11355
+ let headers = {};
11356
+ return await this.queryUmktCpaassmsTemplateEx(request, headers, runtime);
11357
+ }
11358
+ /**
11359
+ * Description: 分页查询cpaas短信模板
11360
+ * Summary: cpaas短信模板分页查询
11361
+ */
11362
+ async queryUmktCpaassmsTemplateEx(request, headers, runtime) {
11363
+ tea_util_1.default.validateModel(request);
11364
+ return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.cpaassms.template.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryUmktCpaassmsTemplateResponse({}));
11365
+ }
11366
+ /**
11367
+ * Description: 实时混合批量营销圈客
11368
+ * Summary: 实时混合批量营销圈客
11369
+ */
11370
+ async batchqueryUmktRtMixedmarketing(request) {
11371
+ let runtime = new $Util.RuntimeOptions({});
11372
+ let headers = {};
11373
+ return await this.batchqueryUmktRtMixedmarketingEx(request, headers, runtime);
11374
+ }
11375
+ /**
11376
+ * Description: 实时混合批量营销圈客
11377
+ * Summary: 实时混合批量营销圈客
11378
+ */
11379
+ async batchqueryUmktRtMixedmarketingEx(request, headers, runtime) {
11380
+ tea_util_1.default.validateModel(request);
11381
+ return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.rt.mixedmarketing.batchquery", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new BatchqueryUmktRtMixedmarketingResponse({}));
11382
+ }
11364
11383
  /**
11365
11384
  * Description: 创建HTTP PUT提交的文件上传
11366
11385
  * Summary: 文件上传创建