@antchain/riskplus 1.13.14 → 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.d.ts +147 -1
- package/dist/client.js +228 -3
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +335 -4
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -351,6 +351,35 @@ export class RtopTypeDistribution extends $tea.Model {
|
|
|
351
351
|
}
|
|
352
352
|
}
|
|
353
353
|
|
|
354
|
+
// 用户的混合策略圈客结果
|
|
355
|
+
export class UmktInfoModel extends $tea.Model {
|
|
356
|
+
// 场景策略id
|
|
357
|
+
sceneStrategyId: number;
|
|
358
|
+
// 实时营销结果
|
|
359
|
+
umktResult: number;
|
|
360
|
+
// json 结构的营销额外输出信息
|
|
361
|
+
umktOutPutInfo: string;
|
|
362
|
+
static names(): { [key: string]: string } {
|
|
363
|
+
return {
|
|
364
|
+
sceneStrategyId: 'scene_strategy_id',
|
|
365
|
+
umktResult: 'umkt_result',
|
|
366
|
+
umktOutPutInfo: 'umkt_out_put_info',
|
|
367
|
+
};
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
static types(): { [key: string]: any } {
|
|
371
|
+
return {
|
|
372
|
+
sceneStrategyId: 'number',
|
|
373
|
+
umktResult: 'number',
|
|
374
|
+
umktOutPutInfo: 'string',
|
|
375
|
+
};
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
constructor(map?: { [key: string]: any }) {
|
|
379
|
+
super(map);
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
|
|
354
383
|
// 监管风险标签
|
|
355
384
|
export class RtopRiskTag extends $tea.Model {
|
|
356
385
|
// 标签ID
|
|
@@ -523,7 +552,7 @@ export class RepayRef extends $tea.Model {
|
|
|
523
552
|
// 应还总额
|
|
524
553
|
needAmount: number;
|
|
525
554
|
// 应还本金
|
|
526
|
-
|
|
555
|
+
needCorpus: number;
|
|
527
556
|
// 应还利息
|
|
528
557
|
needAccrual: number;
|
|
529
558
|
// 应还手续费
|
|
@@ -567,7 +596,7 @@ export class RepayRef extends $tea.Model {
|
|
|
567
596
|
customNo: 'custom_no',
|
|
568
597
|
period: 'period',
|
|
569
598
|
needAmount: 'need_amount',
|
|
570
|
-
|
|
599
|
+
needCorpus: 'need_corpus',
|
|
571
600
|
needAccrual: 'need_accrual',
|
|
572
601
|
needFee: 'need_fee',
|
|
573
602
|
alreadyAmount: 'already_amount',
|
|
@@ -595,7 +624,7 @@ export class RepayRef extends $tea.Model {
|
|
|
595
624
|
customNo: 'string',
|
|
596
625
|
period: 'string',
|
|
597
626
|
needAmount: 'number',
|
|
598
|
-
|
|
627
|
+
needCorpus: 'number',
|
|
599
628
|
needAccrual: 'number',
|
|
600
629
|
needFee: 'number',
|
|
601
630
|
alreadyAmount: 'number',
|
|
@@ -2833,6 +2862,31 @@ export class CustomerUmktInfoModel extends $tea.Model {
|
|
|
2833
2862
|
}
|
|
2834
2863
|
}
|
|
2835
2864
|
|
|
2865
|
+
// 混合批量营销圈客结果
|
|
2866
|
+
export class CustomerUmktInfosModel extends $tea.Model {
|
|
2867
|
+
// 归属用户的混合营销决策结果
|
|
2868
|
+
umktResults: UmktInfoModel[];
|
|
2869
|
+
// 用户凭证
|
|
2870
|
+
customerKey: string;
|
|
2871
|
+
static names(): { [key: string]: string } {
|
|
2872
|
+
return {
|
|
2873
|
+
umktResults: 'umkt_results',
|
|
2874
|
+
customerKey: 'customer_key',
|
|
2875
|
+
};
|
|
2876
|
+
}
|
|
2877
|
+
|
|
2878
|
+
static types(): { [key: string]: any } {
|
|
2879
|
+
return {
|
|
2880
|
+
umktResults: { 'type': 'array', 'itemType': UmktInfoModel },
|
|
2881
|
+
customerKey: 'string',
|
|
2882
|
+
};
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2885
|
+
constructor(map?: { [key: string]: any }) {
|
|
2886
|
+
super(map);
|
|
2887
|
+
}
|
|
2888
|
+
}
|
|
2889
|
+
|
|
2836
2890
|
// 模型结果详情
|
|
2837
2891
|
//
|
|
2838
2892
|
export class ModelDetails extends $tea.Model {
|
|
@@ -3316,6 +3370,51 @@ export class CreditAmount extends $tea.Model {
|
|
|
3316
3370
|
}
|
|
3317
3371
|
}
|
|
3318
3372
|
|
|
3373
|
+
// 短信模板内容
|
|
3374
|
+
export class CpaasSmsTemplate extends $tea.Model {
|
|
3375
|
+
// 模板类型
|
|
3376
|
+
templateType?: string;
|
|
3377
|
+
// 模板名称
|
|
3378
|
+
templateName?: string;
|
|
3379
|
+
// 模板内容
|
|
3380
|
+
templateContent?: string;
|
|
3381
|
+
// 审批状态
|
|
3382
|
+
status?: string;
|
|
3383
|
+
// 模版code
|
|
3384
|
+
templateCode?: string;
|
|
3385
|
+
// 审核未通过原因
|
|
3386
|
+
failReason?: string;
|
|
3387
|
+
// 短信创建时间
|
|
3388
|
+
createTime?: string;
|
|
3389
|
+
static names(): { [key: string]: string } {
|
|
3390
|
+
return {
|
|
3391
|
+
templateType: 'template_type',
|
|
3392
|
+
templateName: 'template_name',
|
|
3393
|
+
templateContent: 'template_content',
|
|
3394
|
+
status: 'status',
|
|
3395
|
+
templateCode: 'template_code',
|
|
3396
|
+
failReason: 'fail_reason',
|
|
3397
|
+
createTime: 'create_time',
|
|
3398
|
+
};
|
|
3399
|
+
}
|
|
3400
|
+
|
|
3401
|
+
static types(): { [key: string]: any } {
|
|
3402
|
+
return {
|
|
3403
|
+
templateType: 'string',
|
|
3404
|
+
templateName: 'string',
|
|
3405
|
+
templateContent: 'string',
|
|
3406
|
+
status: 'string',
|
|
3407
|
+
templateCode: 'string',
|
|
3408
|
+
failReason: 'string',
|
|
3409
|
+
createTime: 'string',
|
|
3410
|
+
};
|
|
3411
|
+
}
|
|
3412
|
+
|
|
3413
|
+
constructor(map?: { [key: string]: any }) {
|
|
3414
|
+
super(map);
|
|
3415
|
+
}
|
|
3416
|
+
}
|
|
3417
|
+
|
|
3319
3418
|
// 舆情的详情
|
|
3320
3419
|
export class RtopCompanyOpinionDetail extends $tea.Model {
|
|
3321
3420
|
// 具体的舆情内容
|
|
@@ -5871,6 +5970,14 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
5871
5970
|
bankCardNo: string;
|
|
5872
5971
|
// 渠道描述,具体请见分配
|
|
5873
5972
|
channelCode: string;
|
|
5973
|
+
// 客户名称
|
|
5974
|
+
customName?: string;
|
|
5975
|
+
// 资产方用户唯一标识
|
|
5976
|
+
openId?: string;
|
|
5977
|
+
// 身份证号
|
|
5978
|
+
cardNo?: string;
|
|
5979
|
+
// 手机号
|
|
5980
|
+
mobile?: string;
|
|
5874
5981
|
static names(): { [key: string]: string } {
|
|
5875
5982
|
return {
|
|
5876
5983
|
authToken: 'auth_token',
|
|
@@ -5879,6 +5986,10 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
5879
5986
|
customerNo: 'customer_no',
|
|
5880
5987
|
bankCardNo: 'bank_card_no',
|
|
5881
5988
|
channelCode: 'channel_code',
|
|
5989
|
+
customName: 'custom_name',
|
|
5990
|
+
openId: 'open_id',
|
|
5991
|
+
cardNo: 'card_no',
|
|
5992
|
+
mobile: 'mobile',
|
|
5882
5993
|
};
|
|
5883
5994
|
}
|
|
5884
5995
|
|
|
@@ -5890,6 +6001,10 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
5890
6001
|
customerNo: 'string',
|
|
5891
6002
|
bankCardNo: 'string',
|
|
5892
6003
|
channelCode: 'string',
|
|
6004
|
+
customName: 'string',
|
|
6005
|
+
openId: 'string',
|
|
6006
|
+
cardNo: 'string',
|
|
6007
|
+
mobile: 'string',
|
|
5893
6008
|
};
|
|
5894
6009
|
}
|
|
5895
6010
|
|
|
@@ -5946,6 +6061,10 @@ export class VerifyDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
5946
6061
|
bindSerialNo: string;
|
|
5947
6062
|
// 绑卡验证码
|
|
5948
6063
|
bindValidCode: string;
|
|
6064
|
+
// 银行卡号
|
|
6065
|
+
bankCardNo: string;
|
|
6066
|
+
// 渠道号
|
|
6067
|
+
channelCode: string;
|
|
5949
6068
|
static names(): { [key: string]: string } {
|
|
5950
6069
|
return {
|
|
5951
6070
|
authToken: 'auth_token',
|
|
@@ -5954,6 +6073,8 @@ export class VerifyDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
5954
6073
|
customNo: 'custom_no',
|
|
5955
6074
|
bindSerialNo: 'bind_serial_no',
|
|
5956
6075
|
bindValidCode: 'bind_valid_code',
|
|
6076
|
+
bankCardNo: 'bank_card_no',
|
|
6077
|
+
channelCode: 'channel_code',
|
|
5957
6078
|
};
|
|
5958
6079
|
}
|
|
5959
6080
|
|
|
@@ -5965,6 +6086,8 @@ export class VerifyDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
5965
6086
|
customNo: 'string',
|
|
5966
6087
|
bindSerialNo: 'string',
|
|
5967
6088
|
bindValidCode: 'string',
|
|
6089
|
+
bankCardNo: 'string',
|
|
6090
|
+
channelCode: 'string',
|
|
5968
6091
|
};
|
|
5969
6092
|
}
|
|
5970
6093
|
|
|
@@ -7477,6 +7600,8 @@ export class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
|
7477
7600
|
repayType: string;
|
|
7478
7601
|
// 订单号
|
|
7479
7602
|
orderNo: string;
|
|
7603
|
+
// 校验还款金额
|
|
7604
|
+
validRepayAmount?: string;
|
|
7480
7605
|
static names(): { [key: string]: string } {
|
|
7481
7606
|
return {
|
|
7482
7607
|
authToken: 'auth_token',
|
|
@@ -7484,6 +7609,7 @@ export class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
|
7484
7609
|
originalOrderNo: 'original_order_no',
|
|
7485
7610
|
repayType: 'repay_type',
|
|
7486
7611
|
orderNo: 'order_no',
|
|
7612
|
+
validRepayAmount: 'valid_repay_amount',
|
|
7487
7613
|
};
|
|
7488
7614
|
}
|
|
7489
7615
|
|
|
@@ -7494,6 +7620,7 @@ export class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
|
7494
7620
|
originalOrderNo: 'string',
|
|
7495
7621
|
repayType: 'string',
|
|
7496
7622
|
orderNo: 'string',
|
|
7623
|
+
validRepayAmount: 'string',
|
|
7497
7624
|
};
|
|
7498
7625
|
}
|
|
7499
7626
|
|
|
@@ -13352,6 +13479,172 @@ export class SendUmktDigitalsmsBatchResponse extends $tea.Model {
|
|
|
13352
13479
|
}
|
|
13353
13480
|
}
|
|
13354
13481
|
|
|
13482
|
+
export class QueryUmktCpaassmsTemplateRequest extends $tea.Model {
|
|
13483
|
+
// OAuth模式下的授权token
|
|
13484
|
+
authToken?: string;
|
|
13485
|
+
productInstanceId?: string;
|
|
13486
|
+
// 租户id
|
|
13487
|
+
tenantId: string;
|
|
13488
|
+
// 短信类型
|
|
13489
|
+
smsType: string;
|
|
13490
|
+
// 行业标签
|
|
13491
|
+
tenantIndustry: string;
|
|
13492
|
+
// 审批状态
|
|
13493
|
+
status?: string;
|
|
13494
|
+
// 页码
|
|
13495
|
+
pageNum?: number;
|
|
13496
|
+
// 每页记录数量
|
|
13497
|
+
pageSize?: number;
|
|
13498
|
+
static names(): { [key: string]: string } {
|
|
13499
|
+
return {
|
|
13500
|
+
authToken: 'auth_token',
|
|
13501
|
+
productInstanceId: 'product_instance_id',
|
|
13502
|
+
tenantId: 'tenant_id',
|
|
13503
|
+
smsType: 'sms_type',
|
|
13504
|
+
tenantIndustry: 'tenant_industry',
|
|
13505
|
+
status: 'status',
|
|
13506
|
+
pageNum: 'page_num',
|
|
13507
|
+
pageSize: 'page_size',
|
|
13508
|
+
};
|
|
13509
|
+
}
|
|
13510
|
+
|
|
13511
|
+
static types(): { [key: string]: any } {
|
|
13512
|
+
return {
|
|
13513
|
+
authToken: 'string',
|
|
13514
|
+
productInstanceId: 'string',
|
|
13515
|
+
tenantId: 'string',
|
|
13516
|
+
smsType: 'string',
|
|
13517
|
+
tenantIndustry: 'string',
|
|
13518
|
+
status: 'string',
|
|
13519
|
+
pageNum: 'number',
|
|
13520
|
+
pageSize: 'number',
|
|
13521
|
+
};
|
|
13522
|
+
}
|
|
13523
|
+
|
|
13524
|
+
constructor(map?: { [key: string]: any }) {
|
|
13525
|
+
super(map);
|
|
13526
|
+
}
|
|
13527
|
+
}
|
|
13528
|
+
|
|
13529
|
+
export class QueryUmktCpaassmsTemplateResponse extends $tea.Model {
|
|
13530
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
13531
|
+
reqMsgId?: string;
|
|
13532
|
+
// 结果码,一般OK表示调用成功
|
|
13533
|
+
resultCode?: string;
|
|
13534
|
+
// 异常信息的文本描述
|
|
13535
|
+
resultMsg?: string;
|
|
13536
|
+
// 总数
|
|
13537
|
+
total?: number;
|
|
13538
|
+
// 每页记录数
|
|
13539
|
+
pageSize?: number;
|
|
13540
|
+
// 页码
|
|
13541
|
+
pageNum?: number;
|
|
13542
|
+
// 模板列表
|
|
13543
|
+
cpassSmsTemplates?: CpaasSmsTemplate[];
|
|
13544
|
+
static names(): { [key: string]: string } {
|
|
13545
|
+
return {
|
|
13546
|
+
reqMsgId: 'req_msg_id',
|
|
13547
|
+
resultCode: 'result_code',
|
|
13548
|
+
resultMsg: 'result_msg',
|
|
13549
|
+
total: 'total',
|
|
13550
|
+
pageSize: 'page_size',
|
|
13551
|
+
pageNum: 'page_num',
|
|
13552
|
+
cpassSmsTemplates: 'cpass_sms_templates',
|
|
13553
|
+
};
|
|
13554
|
+
}
|
|
13555
|
+
|
|
13556
|
+
static types(): { [key: string]: any } {
|
|
13557
|
+
return {
|
|
13558
|
+
reqMsgId: 'string',
|
|
13559
|
+
resultCode: 'string',
|
|
13560
|
+
resultMsg: 'string',
|
|
13561
|
+
total: 'number',
|
|
13562
|
+
pageSize: 'number',
|
|
13563
|
+
pageNum: 'number',
|
|
13564
|
+
cpassSmsTemplates: { 'type': 'array', 'itemType': CpaasSmsTemplate },
|
|
13565
|
+
};
|
|
13566
|
+
}
|
|
13567
|
+
|
|
13568
|
+
constructor(map?: { [key: string]: any }) {
|
|
13569
|
+
super(map);
|
|
13570
|
+
}
|
|
13571
|
+
}
|
|
13572
|
+
|
|
13573
|
+
export class BatchqueryUmktRtMixedmarketingRequest extends $tea.Model {
|
|
13574
|
+
// OAuth模式下的授权token
|
|
13575
|
+
authToken?: string;
|
|
13576
|
+
productInstanceId?: string;
|
|
13577
|
+
// 场景策略id列表
|
|
13578
|
+
sceneStrategyIds: number[];
|
|
13579
|
+
// 场景策略集合code,对标场景策略id列表,一般不可变
|
|
13580
|
+
sceneStrategySetCode?: string;
|
|
13581
|
+
// 查询协议模版
|
|
13582
|
+
queryTemplate: string;
|
|
13583
|
+
// 查询的用户凭证列表
|
|
13584
|
+
customerKeys: string[];
|
|
13585
|
+
// 业务流水号,uuid
|
|
13586
|
+
bizSerialNo: string;
|
|
13587
|
+
static names(): { [key: string]: string } {
|
|
13588
|
+
return {
|
|
13589
|
+
authToken: 'auth_token',
|
|
13590
|
+
productInstanceId: 'product_instance_id',
|
|
13591
|
+
sceneStrategyIds: 'scene_strategy_ids',
|
|
13592
|
+
sceneStrategySetCode: 'scene_strategy_set_code',
|
|
13593
|
+
queryTemplate: 'query_template',
|
|
13594
|
+
customerKeys: 'customer_keys',
|
|
13595
|
+
bizSerialNo: 'biz_serial_no',
|
|
13596
|
+
};
|
|
13597
|
+
}
|
|
13598
|
+
|
|
13599
|
+
static types(): { [key: string]: any } {
|
|
13600
|
+
return {
|
|
13601
|
+
authToken: 'string',
|
|
13602
|
+
productInstanceId: 'string',
|
|
13603
|
+
sceneStrategyIds: { 'type': 'array', 'itemType': 'number' },
|
|
13604
|
+
sceneStrategySetCode: 'string',
|
|
13605
|
+
queryTemplate: 'string',
|
|
13606
|
+
customerKeys: { 'type': 'array', 'itemType': 'string' },
|
|
13607
|
+
bizSerialNo: 'string',
|
|
13608
|
+
};
|
|
13609
|
+
}
|
|
13610
|
+
|
|
13611
|
+
constructor(map?: { [key: string]: any }) {
|
|
13612
|
+
super(map);
|
|
13613
|
+
}
|
|
13614
|
+
}
|
|
13615
|
+
|
|
13616
|
+
export class BatchqueryUmktRtMixedmarketingResponse extends $tea.Model {
|
|
13617
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
13618
|
+
reqMsgId?: string;
|
|
13619
|
+
// 结果码,一般OK表示调用成功
|
|
13620
|
+
resultCode?: string;
|
|
13621
|
+
// 异常信息的文本描述
|
|
13622
|
+
resultMsg?: string;
|
|
13623
|
+
// 查询结果
|
|
13624
|
+
queryResults?: CustomerUmktInfosModel[];
|
|
13625
|
+
static names(): { [key: string]: string } {
|
|
13626
|
+
return {
|
|
13627
|
+
reqMsgId: 'req_msg_id',
|
|
13628
|
+
resultCode: 'result_code',
|
|
13629
|
+
resultMsg: 'result_msg',
|
|
13630
|
+
queryResults: 'query_results',
|
|
13631
|
+
};
|
|
13632
|
+
}
|
|
13633
|
+
|
|
13634
|
+
static types(): { [key: string]: any } {
|
|
13635
|
+
return {
|
|
13636
|
+
reqMsgId: 'string',
|
|
13637
|
+
resultCode: 'string',
|
|
13638
|
+
resultMsg: 'string',
|
|
13639
|
+
queryResults: { 'type': 'array', 'itemType': CustomerUmktInfosModel },
|
|
13640
|
+
};
|
|
13641
|
+
}
|
|
13642
|
+
|
|
13643
|
+
constructor(map?: { [key: string]: any }) {
|
|
13644
|
+
super(map);
|
|
13645
|
+
}
|
|
13646
|
+
}
|
|
13647
|
+
|
|
13355
13648
|
export class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
13356
13649
|
// OAuth模式下的授权token
|
|
13357
13650
|
authToken?: string;
|
|
@@ -13553,7 +13846,7 @@ export default class Client {
|
|
|
13553
13846
|
req_msg_id: AntchainUtil.getNonce(),
|
|
13554
13847
|
access_key: this._accessKeyId,
|
|
13555
13848
|
base_sdk_version: "TeaSDK-2.0",
|
|
13556
|
-
sdk_version: "1.
|
|
13849
|
+
sdk_version: "1.15.0",
|
|
13557
13850
|
_prod_code: "RISKPLUS",
|
|
13558
13851
|
_prod_channel: "undefined",
|
|
13559
13852
|
};
|
|
@@ -16060,6 +16353,44 @@ export default class Client {
|
|
|
16060
16353
|
return $tea.cast<SendUmktDigitalsmsBatchResponse>(await this.doRequest("1.0", "riskplus.umkt.digitalsms.batch.send", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new SendUmktDigitalsmsBatchResponse({}));
|
|
16061
16354
|
}
|
|
16062
16355
|
|
|
16356
|
+
/**
|
|
16357
|
+
* Description: 分页查询cpaas短信模板
|
|
16358
|
+
* Summary: cpaas短信模板分页查询
|
|
16359
|
+
*/
|
|
16360
|
+
async queryUmktCpaassmsTemplate(request: QueryUmktCpaassmsTemplateRequest): Promise<QueryUmktCpaassmsTemplateResponse> {
|
|
16361
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16362
|
+
let headers : {[key: string ]: string} = { };
|
|
16363
|
+
return await this.queryUmktCpaassmsTemplateEx(request, headers, runtime);
|
|
16364
|
+
}
|
|
16365
|
+
|
|
16366
|
+
/**
|
|
16367
|
+
* Description: 分页查询cpaas短信模板
|
|
16368
|
+
* Summary: cpaas短信模板分页查询
|
|
16369
|
+
*/
|
|
16370
|
+
async queryUmktCpaassmsTemplateEx(request: QueryUmktCpaassmsTemplateRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryUmktCpaassmsTemplateResponse> {
|
|
16371
|
+
Util.validateModel(request);
|
|
16372
|
+
return $tea.cast<QueryUmktCpaassmsTemplateResponse>(await this.doRequest("1.0", "riskplus.umkt.cpaassms.template.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryUmktCpaassmsTemplateResponse({}));
|
|
16373
|
+
}
|
|
16374
|
+
|
|
16375
|
+
/**
|
|
16376
|
+
* Description: 实时混合批量营销圈客
|
|
16377
|
+
* Summary: 实时混合批量营销圈客
|
|
16378
|
+
*/
|
|
16379
|
+
async batchqueryUmktRtMixedmarketing(request: BatchqueryUmktRtMixedmarketingRequest): Promise<BatchqueryUmktRtMixedmarketingResponse> {
|
|
16380
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16381
|
+
let headers : {[key: string ]: string} = { };
|
|
16382
|
+
return await this.batchqueryUmktRtMixedmarketingEx(request, headers, runtime);
|
|
16383
|
+
}
|
|
16384
|
+
|
|
16385
|
+
/**
|
|
16386
|
+
* Description: 实时混合批量营销圈客
|
|
16387
|
+
* Summary: 实时混合批量营销圈客
|
|
16388
|
+
*/
|
|
16389
|
+
async batchqueryUmktRtMixedmarketingEx(request: BatchqueryUmktRtMixedmarketingRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BatchqueryUmktRtMixedmarketingResponse> {
|
|
16390
|
+
Util.validateModel(request);
|
|
16391
|
+
return $tea.cast<BatchqueryUmktRtMixedmarketingResponse>(await this.doRequest("1.0", "riskplus.umkt.rt.mixedmarketing.batchquery", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new BatchqueryUmktRtMixedmarketingResponse({}));
|
|
16392
|
+
}
|
|
16393
|
+
|
|
16063
16394
|
/**
|
|
16064
16395
|
* Description: 创建HTTP PUT提交的文件上传
|
|
16065
16396
|
* Summary: 文件上传创建
|