@antchain/riskplus 1.13.14 → 1.15.1
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 +171 -9
- package/dist/client.js +269 -19
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +404 -36
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
|
|
@@ -400,31 +429,31 @@ export class RtopRiskTag extends $tea.Model {
|
|
|
400
429
|
export class StatisticInfoDetail extends $tea.Model {
|
|
401
430
|
// actionDriverCode类型
|
|
402
431
|
actionDriverCode?: number;
|
|
403
|
-
// 调用总数
|
|
404
|
-
invokeCount?: number;
|
|
405
432
|
// 成功数
|
|
406
433
|
successCount?: number;
|
|
407
434
|
// 失败数
|
|
408
435
|
failCount?: number;
|
|
409
|
-
//
|
|
410
|
-
|
|
436
|
+
// 待触达的手机号数
|
|
437
|
+
waitingSubTaskCount?: number;
|
|
438
|
+
// 已收到的回执数
|
|
439
|
+
totalCount?: number;
|
|
411
440
|
static names(): { [key: string]: string } {
|
|
412
441
|
return {
|
|
413
442
|
actionDriverCode: 'action_driver_code',
|
|
414
|
-
invokeCount: 'invoke_count',
|
|
415
443
|
successCount: 'success_count',
|
|
416
444
|
failCount: 'fail_count',
|
|
417
|
-
|
|
445
|
+
waitingSubTaskCount: 'waiting_sub_task_count',
|
|
446
|
+
totalCount: 'total_count',
|
|
418
447
|
};
|
|
419
448
|
}
|
|
420
449
|
|
|
421
450
|
static types(): { [key: string]: any } {
|
|
422
451
|
return {
|
|
423
452
|
actionDriverCode: 'number',
|
|
424
|
-
invokeCount: 'number',
|
|
425
453
|
successCount: 'number',
|
|
426
454
|
failCount: 'number',
|
|
427
|
-
|
|
455
|
+
waitingSubTaskCount: 'number',
|
|
456
|
+
totalCount: 'number',
|
|
428
457
|
};
|
|
429
458
|
}
|
|
430
459
|
|
|
@@ -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 {
|
|
@@ -2998,6 +3052,35 @@ export class RiskLabelFilterConfigInfo extends $tea.Model {
|
|
|
2998
3052
|
}
|
|
2999
3053
|
}
|
|
3000
3054
|
|
|
3055
|
+
// AI外呼每个用户维度的参数信息
|
|
3056
|
+
export class RobotCallCustomerParam extends $tea.Model {
|
|
3057
|
+
// 手机号/手机号md5
|
|
3058
|
+
customerKey: string;
|
|
3059
|
+
// 用户维度透传字段
|
|
3060
|
+
customerOutInfo?: string;
|
|
3061
|
+
// 外呼话术变量字段
|
|
3062
|
+
properties?: string;
|
|
3063
|
+
static names(): { [key: string]: string } {
|
|
3064
|
+
return {
|
|
3065
|
+
customerKey: 'customer_key',
|
|
3066
|
+
customerOutInfo: 'customer_out_info',
|
|
3067
|
+
properties: 'properties',
|
|
3068
|
+
};
|
|
3069
|
+
}
|
|
3070
|
+
|
|
3071
|
+
static types(): { [key: string]: any } {
|
|
3072
|
+
return {
|
|
3073
|
+
customerKey: 'string',
|
|
3074
|
+
customerOutInfo: 'string',
|
|
3075
|
+
properties: 'string',
|
|
3076
|
+
};
|
|
3077
|
+
}
|
|
3078
|
+
|
|
3079
|
+
constructor(map?: { [key: string]: any }) {
|
|
3080
|
+
super(map);
|
|
3081
|
+
}
|
|
3082
|
+
}
|
|
3083
|
+
|
|
3001
3084
|
// 天枢系统职业信息
|
|
3002
3085
|
export class JobInfo extends $tea.Model {
|
|
3003
3086
|
// 职业
|
|
@@ -3316,6 +3399,51 @@ export class CreditAmount extends $tea.Model {
|
|
|
3316
3399
|
}
|
|
3317
3400
|
}
|
|
3318
3401
|
|
|
3402
|
+
// 短信模板内容
|
|
3403
|
+
export class CpaasSmsTemplate extends $tea.Model {
|
|
3404
|
+
// 模板类型
|
|
3405
|
+
templateType?: string;
|
|
3406
|
+
// 模板名称
|
|
3407
|
+
templateName?: string;
|
|
3408
|
+
// 模板内容
|
|
3409
|
+
templateContent?: string;
|
|
3410
|
+
// 审批状态
|
|
3411
|
+
status?: string;
|
|
3412
|
+
// 模版code
|
|
3413
|
+
templateCode?: string;
|
|
3414
|
+
// 审核未通过原因
|
|
3415
|
+
failReason?: string;
|
|
3416
|
+
// 短信创建时间
|
|
3417
|
+
createTime?: string;
|
|
3418
|
+
static names(): { [key: string]: string } {
|
|
3419
|
+
return {
|
|
3420
|
+
templateType: 'template_type',
|
|
3421
|
+
templateName: 'template_name',
|
|
3422
|
+
templateContent: 'template_content',
|
|
3423
|
+
status: 'status',
|
|
3424
|
+
templateCode: 'template_code',
|
|
3425
|
+
failReason: 'fail_reason',
|
|
3426
|
+
createTime: 'create_time',
|
|
3427
|
+
};
|
|
3428
|
+
}
|
|
3429
|
+
|
|
3430
|
+
static types(): { [key: string]: any } {
|
|
3431
|
+
return {
|
|
3432
|
+
templateType: 'string',
|
|
3433
|
+
templateName: 'string',
|
|
3434
|
+
templateContent: 'string',
|
|
3435
|
+
status: 'string',
|
|
3436
|
+
templateCode: 'string',
|
|
3437
|
+
failReason: 'string',
|
|
3438
|
+
createTime: 'string',
|
|
3439
|
+
};
|
|
3440
|
+
}
|
|
3441
|
+
|
|
3442
|
+
constructor(map?: { [key: string]: any }) {
|
|
3443
|
+
super(map);
|
|
3444
|
+
}
|
|
3445
|
+
}
|
|
3446
|
+
|
|
3319
3447
|
// 舆情的详情
|
|
3320
3448
|
export class RtopCompanyOpinionDetail extends $tea.Model {
|
|
3321
3449
|
// 具体的舆情内容
|
|
@@ -5871,6 +5999,14 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
5871
5999
|
bankCardNo: string;
|
|
5872
6000
|
// 渠道描述,具体请见分配
|
|
5873
6001
|
channelCode: string;
|
|
6002
|
+
// 客户名称
|
|
6003
|
+
customName?: string;
|
|
6004
|
+
// 资产方用户唯一标识
|
|
6005
|
+
openId?: string;
|
|
6006
|
+
// 身份证号
|
|
6007
|
+
cardNo?: string;
|
|
6008
|
+
// 手机号
|
|
6009
|
+
mobile?: string;
|
|
5874
6010
|
static names(): { [key: string]: string } {
|
|
5875
6011
|
return {
|
|
5876
6012
|
authToken: 'auth_token',
|
|
@@ -5879,6 +6015,10 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
5879
6015
|
customerNo: 'customer_no',
|
|
5880
6016
|
bankCardNo: 'bank_card_no',
|
|
5881
6017
|
channelCode: 'channel_code',
|
|
6018
|
+
customName: 'custom_name',
|
|
6019
|
+
openId: 'open_id',
|
|
6020
|
+
cardNo: 'card_no',
|
|
6021
|
+
mobile: 'mobile',
|
|
5882
6022
|
};
|
|
5883
6023
|
}
|
|
5884
6024
|
|
|
@@ -5890,6 +6030,10 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
5890
6030
|
customerNo: 'string',
|
|
5891
6031
|
bankCardNo: 'string',
|
|
5892
6032
|
channelCode: 'string',
|
|
6033
|
+
customName: 'string',
|
|
6034
|
+
openId: 'string',
|
|
6035
|
+
cardNo: 'string',
|
|
6036
|
+
mobile: 'string',
|
|
5893
6037
|
};
|
|
5894
6038
|
}
|
|
5895
6039
|
|
|
@@ -5946,6 +6090,10 @@ export class VerifyDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
5946
6090
|
bindSerialNo: string;
|
|
5947
6091
|
// 绑卡验证码
|
|
5948
6092
|
bindValidCode: string;
|
|
6093
|
+
// 银行卡号
|
|
6094
|
+
bankCardNo: string;
|
|
6095
|
+
// 渠道号
|
|
6096
|
+
channelCode: string;
|
|
5949
6097
|
static names(): { [key: string]: string } {
|
|
5950
6098
|
return {
|
|
5951
6099
|
authToken: 'auth_token',
|
|
@@ -5954,6 +6102,8 @@ export class VerifyDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
5954
6102
|
customNo: 'custom_no',
|
|
5955
6103
|
bindSerialNo: 'bind_serial_no',
|
|
5956
6104
|
bindValidCode: 'bind_valid_code',
|
|
6105
|
+
bankCardNo: 'bank_card_no',
|
|
6106
|
+
channelCode: 'channel_code',
|
|
5957
6107
|
};
|
|
5958
6108
|
}
|
|
5959
6109
|
|
|
@@ -5965,6 +6115,8 @@ export class VerifyDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
5965
6115
|
customNo: 'string',
|
|
5966
6116
|
bindSerialNo: 'string',
|
|
5967
6117
|
bindValidCode: 'string',
|
|
6118
|
+
bankCardNo: 'string',
|
|
6119
|
+
channelCode: 'string',
|
|
5968
6120
|
};
|
|
5969
6121
|
}
|
|
5970
6122
|
|
|
@@ -7477,6 +7629,8 @@ export class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
|
7477
7629
|
repayType: string;
|
|
7478
7630
|
// 订单号
|
|
7479
7631
|
orderNo: string;
|
|
7632
|
+
// 校验还款金额
|
|
7633
|
+
validRepayAmount?: string;
|
|
7480
7634
|
static names(): { [key: string]: string } {
|
|
7481
7635
|
return {
|
|
7482
7636
|
authToken: 'auth_token',
|
|
@@ -7484,6 +7638,7 @@ export class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
|
7484
7638
|
originalOrderNo: 'original_order_no',
|
|
7485
7639
|
repayType: 'repay_type',
|
|
7486
7640
|
orderNo: 'order_no',
|
|
7641
|
+
validRepayAmount: 'valid_repay_amount',
|
|
7487
7642
|
};
|
|
7488
7643
|
}
|
|
7489
7644
|
|
|
@@ -7494,6 +7649,7 @@ export class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
|
7494
7649
|
originalOrderNo: 'string',
|
|
7495
7650
|
repayType: 'string',
|
|
7496
7651
|
orderNo: 'string',
|
|
7652
|
+
validRepayAmount: 'string',
|
|
7497
7653
|
};
|
|
7498
7654
|
}
|
|
7499
7655
|
|
|
@@ -12255,6 +12411,10 @@ export class UploadUmktParamsFileRequest extends $tea.Model {
|
|
|
12255
12411
|
// 后续支持
|
|
12256
12412
|
// DEVICE_MD5
|
|
12257
12413
|
fileTemplate: string;
|
|
12414
|
+
// 外部流水号
|
|
12415
|
+
outSerialNo: string;
|
|
12416
|
+
// 外部透传字段
|
|
12417
|
+
outInfo?: string;
|
|
12258
12418
|
static names(): { [key: string]: string } {
|
|
12259
12419
|
return {
|
|
12260
12420
|
authToken: 'auth_token',
|
|
@@ -12265,6 +12425,8 @@ export class UploadUmktParamsFileRequest extends $tea.Model {
|
|
|
12265
12425
|
sceneStrategyId: 'scene_strategy_id',
|
|
12266
12426
|
execTime: 'exec_time',
|
|
12267
12427
|
fileTemplate: 'file_template',
|
|
12428
|
+
outSerialNo: 'out_serial_no',
|
|
12429
|
+
outInfo: 'out_info',
|
|
12268
12430
|
};
|
|
12269
12431
|
}
|
|
12270
12432
|
|
|
@@ -12278,6 +12440,8 @@ export class UploadUmktParamsFileRequest extends $tea.Model {
|
|
|
12278
12440
|
sceneStrategyId: 'number',
|
|
12279
12441
|
execTime: 'string',
|
|
12280
12442
|
fileTemplate: 'string',
|
|
12443
|
+
outSerialNo: 'string',
|
|
12444
|
+
outInfo: 'string',
|
|
12281
12445
|
};
|
|
12282
12446
|
}
|
|
12283
12447
|
|
|
@@ -12677,28 +12841,25 @@ export class ApplyUmktRobotcallRequest extends $tea.Model {
|
|
|
12677
12841
|
// OAuth模式下的授权token
|
|
12678
12842
|
authToken?: string;
|
|
12679
12843
|
productInstanceId?: string;
|
|
12680
|
-
//
|
|
12681
|
-
|
|
12682
|
-
//
|
|
12683
|
-
|
|
12684
|
-
//
|
|
12685
|
-
|
|
12686
|
-
//
|
|
12687
|
-
|
|
12688
|
-
//
|
|
12689
|
-
|
|
12690
|
-
// 机器人参数
|
|
12691
|
-
params?: string;
|
|
12844
|
+
// 外部流水号
|
|
12845
|
+
outSerialNo: string;
|
|
12846
|
+
// 场景策略id
|
|
12847
|
+
sceneStrategyId: number;
|
|
12848
|
+
// 客户透传字段
|
|
12849
|
+
outInfo?: string;
|
|
12850
|
+
// 用户参数类型
|
|
12851
|
+
fileTemplate: string;
|
|
12852
|
+
// 每个手机号的详细参数
|
|
12853
|
+
customerDetails?: RobotCallCustomerParam[];
|
|
12692
12854
|
static names(): { [key: string]: string } {
|
|
12693
12855
|
return {
|
|
12694
12856
|
authToken: 'auth_token',
|
|
12695
12857
|
productInstanceId: 'product_instance_id',
|
|
12696
|
-
|
|
12697
|
-
|
|
12698
|
-
|
|
12699
|
-
|
|
12700
|
-
|
|
12701
|
-
params: 'params',
|
|
12858
|
+
outSerialNo: 'out_serial_no',
|
|
12859
|
+
sceneStrategyId: 'scene_strategy_id',
|
|
12860
|
+
outInfo: 'out_info',
|
|
12861
|
+
fileTemplate: 'file_template',
|
|
12862
|
+
customerDetails: 'customer_details',
|
|
12702
12863
|
};
|
|
12703
12864
|
}
|
|
12704
12865
|
|
|
@@ -12706,12 +12867,11 @@ export class ApplyUmktRobotcallRequest extends $tea.Model {
|
|
|
12706
12867
|
return {
|
|
12707
12868
|
authToken: 'string',
|
|
12708
12869
|
productInstanceId: 'string',
|
|
12709
|
-
|
|
12710
|
-
|
|
12711
|
-
|
|
12712
|
-
|
|
12713
|
-
|
|
12714
|
-
params: 'string',
|
|
12870
|
+
outSerialNo: 'string',
|
|
12871
|
+
sceneStrategyId: 'number',
|
|
12872
|
+
outInfo: 'string',
|
|
12873
|
+
fileTemplate: 'string',
|
|
12874
|
+
customerDetails: { 'type': 'array', 'itemType': RobotCallCustomerParam },
|
|
12715
12875
|
};
|
|
12716
12876
|
}
|
|
12717
12877
|
|
|
@@ -12788,12 +12948,15 @@ export class QueryUmktDataaccessStatisticResponse extends $tea.Model {
|
|
|
12788
12948
|
resultMsg?: string;
|
|
12789
12949
|
// 回执统计结果
|
|
12790
12950
|
statisticResult?: StatisticResult;
|
|
12951
|
+
// 任务状态
|
|
12952
|
+
taskStatus?: string;
|
|
12791
12953
|
static names(): { [key: string]: string } {
|
|
12792
12954
|
return {
|
|
12793
12955
|
reqMsgId: 'req_msg_id',
|
|
12794
12956
|
resultCode: 'result_code',
|
|
12795
12957
|
resultMsg: 'result_msg',
|
|
12796
12958
|
statisticResult: 'statistic_result',
|
|
12959
|
+
taskStatus: 'task_status',
|
|
12797
12960
|
};
|
|
12798
12961
|
}
|
|
12799
12962
|
|
|
@@ -12803,6 +12966,7 @@ export class QueryUmktDataaccessStatisticResponse extends $tea.Model {
|
|
|
12803
12966
|
resultCode: 'string',
|
|
12804
12967
|
resultMsg: 'string',
|
|
12805
12968
|
statisticResult: StatisticResult,
|
|
12969
|
+
taskStatus: 'string',
|
|
12806
12970
|
};
|
|
12807
12971
|
}
|
|
12808
12972
|
|
|
@@ -13352,6 +13516,172 @@ export class SendUmktDigitalsmsBatchResponse extends $tea.Model {
|
|
|
13352
13516
|
}
|
|
13353
13517
|
}
|
|
13354
13518
|
|
|
13519
|
+
export class QueryUmktCpaassmsTemplateRequest extends $tea.Model {
|
|
13520
|
+
// OAuth模式下的授权token
|
|
13521
|
+
authToken?: string;
|
|
13522
|
+
productInstanceId?: string;
|
|
13523
|
+
// 租户id
|
|
13524
|
+
tenantId: string;
|
|
13525
|
+
// 短信类型
|
|
13526
|
+
smsType: string;
|
|
13527
|
+
// 行业标签
|
|
13528
|
+
tenantIndustry: string;
|
|
13529
|
+
// 审批状态
|
|
13530
|
+
status?: string;
|
|
13531
|
+
// 页码
|
|
13532
|
+
pageNum?: number;
|
|
13533
|
+
// 每页记录数量
|
|
13534
|
+
pageSize?: number;
|
|
13535
|
+
static names(): { [key: string]: string } {
|
|
13536
|
+
return {
|
|
13537
|
+
authToken: 'auth_token',
|
|
13538
|
+
productInstanceId: 'product_instance_id',
|
|
13539
|
+
tenantId: 'tenant_id',
|
|
13540
|
+
smsType: 'sms_type',
|
|
13541
|
+
tenantIndustry: 'tenant_industry',
|
|
13542
|
+
status: 'status',
|
|
13543
|
+
pageNum: 'page_num',
|
|
13544
|
+
pageSize: 'page_size',
|
|
13545
|
+
};
|
|
13546
|
+
}
|
|
13547
|
+
|
|
13548
|
+
static types(): { [key: string]: any } {
|
|
13549
|
+
return {
|
|
13550
|
+
authToken: 'string',
|
|
13551
|
+
productInstanceId: 'string',
|
|
13552
|
+
tenantId: 'string',
|
|
13553
|
+
smsType: 'string',
|
|
13554
|
+
tenantIndustry: 'string',
|
|
13555
|
+
status: 'string',
|
|
13556
|
+
pageNum: 'number',
|
|
13557
|
+
pageSize: 'number',
|
|
13558
|
+
};
|
|
13559
|
+
}
|
|
13560
|
+
|
|
13561
|
+
constructor(map?: { [key: string]: any }) {
|
|
13562
|
+
super(map);
|
|
13563
|
+
}
|
|
13564
|
+
}
|
|
13565
|
+
|
|
13566
|
+
export class QueryUmktCpaassmsTemplateResponse extends $tea.Model {
|
|
13567
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
13568
|
+
reqMsgId?: string;
|
|
13569
|
+
// 结果码,一般OK表示调用成功
|
|
13570
|
+
resultCode?: string;
|
|
13571
|
+
// 异常信息的文本描述
|
|
13572
|
+
resultMsg?: string;
|
|
13573
|
+
// 总数
|
|
13574
|
+
total?: number;
|
|
13575
|
+
// 每页记录数
|
|
13576
|
+
pageSize?: number;
|
|
13577
|
+
// 页码
|
|
13578
|
+
pageNum?: number;
|
|
13579
|
+
// 模板列表
|
|
13580
|
+
cpassSmsTemplates?: CpaasSmsTemplate[];
|
|
13581
|
+
static names(): { [key: string]: string } {
|
|
13582
|
+
return {
|
|
13583
|
+
reqMsgId: 'req_msg_id',
|
|
13584
|
+
resultCode: 'result_code',
|
|
13585
|
+
resultMsg: 'result_msg',
|
|
13586
|
+
total: 'total',
|
|
13587
|
+
pageSize: 'page_size',
|
|
13588
|
+
pageNum: 'page_num',
|
|
13589
|
+
cpassSmsTemplates: 'cpass_sms_templates',
|
|
13590
|
+
};
|
|
13591
|
+
}
|
|
13592
|
+
|
|
13593
|
+
static types(): { [key: string]: any } {
|
|
13594
|
+
return {
|
|
13595
|
+
reqMsgId: 'string',
|
|
13596
|
+
resultCode: 'string',
|
|
13597
|
+
resultMsg: 'string',
|
|
13598
|
+
total: 'number',
|
|
13599
|
+
pageSize: 'number',
|
|
13600
|
+
pageNum: 'number',
|
|
13601
|
+
cpassSmsTemplates: { 'type': 'array', 'itemType': CpaasSmsTemplate },
|
|
13602
|
+
};
|
|
13603
|
+
}
|
|
13604
|
+
|
|
13605
|
+
constructor(map?: { [key: string]: any }) {
|
|
13606
|
+
super(map);
|
|
13607
|
+
}
|
|
13608
|
+
}
|
|
13609
|
+
|
|
13610
|
+
export class BatchqueryUmktRtMixedmarketingRequest extends $tea.Model {
|
|
13611
|
+
// OAuth模式下的授权token
|
|
13612
|
+
authToken?: string;
|
|
13613
|
+
productInstanceId?: string;
|
|
13614
|
+
// 场景策略id列表
|
|
13615
|
+
sceneStrategyIds: number[];
|
|
13616
|
+
// 场景策略集合code,对标场景策略id列表,一般不可变
|
|
13617
|
+
sceneStrategySetCode?: string;
|
|
13618
|
+
// 查询协议模版
|
|
13619
|
+
queryTemplate: string;
|
|
13620
|
+
// 查询的用户凭证列表
|
|
13621
|
+
customerKeys: string[];
|
|
13622
|
+
// 业务流水号,uuid
|
|
13623
|
+
bizSerialNo: string;
|
|
13624
|
+
static names(): { [key: string]: string } {
|
|
13625
|
+
return {
|
|
13626
|
+
authToken: 'auth_token',
|
|
13627
|
+
productInstanceId: 'product_instance_id',
|
|
13628
|
+
sceneStrategyIds: 'scene_strategy_ids',
|
|
13629
|
+
sceneStrategySetCode: 'scene_strategy_set_code',
|
|
13630
|
+
queryTemplate: 'query_template',
|
|
13631
|
+
customerKeys: 'customer_keys',
|
|
13632
|
+
bizSerialNo: 'biz_serial_no',
|
|
13633
|
+
};
|
|
13634
|
+
}
|
|
13635
|
+
|
|
13636
|
+
static types(): { [key: string]: any } {
|
|
13637
|
+
return {
|
|
13638
|
+
authToken: 'string',
|
|
13639
|
+
productInstanceId: 'string',
|
|
13640
|
+
sceneStrategyIds: { 'type': 'array', 'itemType': 'number' },
|
|
13641
|
+
sceneStrategySetCode: 'string',
|
|
13642
|
+
queryTemplate: 'string',
|
|
13643
|
+
customerKeys: { 'type': 'array', 'itemType': 'string' },
|
|
13644
|
+
bizSerialNo: 'string',
|
|
13645
|
+
};
|
|
13646
|
+
}
|
|
13647
|
+
|
|
13648
|
+
constructor(map?: { [key: string]: any }) {
|
|
13649
|
+
super(map);
|
|
13650
|
+
}
|
|
13651
|
+
}
|
|
13652
|
+
|
|
13653
|
+
export class BatchqueryUmktRtMixedmarketingResponse extends $tea.Model {
|
|
13654
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
13655
|
+
reqMsgId?: string;
|
|
13656
|
+
// 结果码,一般OK表示调用成功
|
|
13657
|
+
resultCode?: string;
|
|
13658
|
+
// 异常信息的文本描述
|
|
13659
|
+
resultMsg?: string;
|
|
13660
|
+
// 查询结果
|
|
13661
|
+
queryResults?: CustomerUmktInfosModel[];
|
|
13662
|
+
static names(): { [key: string]: string } {
|
|
13663
|
+
return {
|
|
13664
|
+
reqMsgId: 'req_msg_id',
|
|
13665
|
+
resultCode: 'result_code',
|
|
13666
|
+
resultMsg: 'result_msg',
|
|
13667
|
+
queryResults: 'query_results',
|
|
13668
|
+
};
|
|
13669
|
+
}
|
|
13670
|
+
|
|
13671
|
+
static types(): { [key: string]: any } {
|
|
13672
|
+
return {
|
|
13673
|
+
reqMsgId: 'string',
|
|
13674
|
+
resultCode: 'string',
|
|
13675
|
+
resultMsg: 'string',
|
|
13676
|
+
queryResults: { 'type': 'array', 'itemType': CustomerUmktInfosModel },
|
|
13677
|
+
};
|
|
13678
|
+
}
|
|
13679
|
+
|
|
13680
|
+
constructor(map?: { [key: string]: any }) {
|
|
13681
|
+
super(map);
|
|
13682
|
+
}
|
|
13683
|
+
}
|
|
13684
|
+
|
|
13355
13685
|
export class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
13356
13686
|
// OAuth模式下的授权token
|
|
13357
13687
|
authToken?: string;
|
|
@@ -13553,7 +13883,7 @@ export default class Client {
|
|
|
13553
13883
|
req_msg_id: AntchainUtil.getNonce(),
|
|
13554
13884
|
access_key: this._accessKeyId,
|
|
13555
13885
|
base_sdk_version: "TeaSDK-2.0",
|
|
13556
|
-
sdk_version: "1.
|
|
13886
|
+
sdk_version: "1.15.1",
|
|
13557
13887
|
_prod_code: "RISKPLUS",
|
|
13558
13888
|
_prod_channel: "undefined",
|
|
13559
13889
|
};
|
|
@@ -16060,6 +16390,44 @@ export default class Client {
|
|
|
16060
16390
|
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
16391
|
}
|
|
16062
16392
|
|
|
16393
|
+
/**
|
|
16394
|
+
* Description: 分页查询cpaas短信模板
|
|
16395
|
+
* Summary: cpaas短信模板分页查询
|
|
16396
|
+
*/
|
|
16397
|
+
async queryUmktCpaassmsTemplate(request: QueryUmktCpaassmsTemplateRequest): Promise<QueryUmktCpaassmsTemplateResponse> {
|
|
16398
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16399
|
+
let headers : {[key: string ]: string} = { };
|
|
16400
|
+
return await this.queryUmktCpaassmsTemplateEx(request, headers, runtime);
|
|
16401
|
+
}
|
|
16402
|
+
|
|
16403
|
+
/**
|
|
16404
|
+
* Description: 分页查询cpaas短信模板
|
|
16405
|
+
* Summary: cpaas短信模板分页查询
|
|
16406
|
+
*/
|
|
16407
|
+
async queryUmktCpaassmsTemplateEx(request: QueryUmktCpaassmsTemplateRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryUmktCpaassmsTemplateResponse> {
|
|
16408
|
+
Util.validateModel(request);
|
|
16409
|
+
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({}));
|
|
16410
|
+
}
|
|
16411
|
+
|
|
16412
|
+
/**
|
|
16413
|
+
* Description: 实时混合批量营销圈客
|
|
16414
|
+
* Summary: 实时混合批量营销圈客
|
|
16415
|
+
*/
|
|
16416
|
+
async batchqueryUmktRtMixedmarketing(request: BatchqueryUmktRtMixedmarketingRequest): Promise<BatchqueryUmktRtMixedmarketingResponse> {
|
|
16417
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16418
|
+
let headers : {[key: string ]: string} = { };
|
|
16419
|
+
return await this.batchqueryUmktRtMixedmarketingEx(request, headers, runtime);
|
|
16420
|
+
}
|
|
16421
|
+
|
|
16422
|
+
/**
|
|
16423
|
+
* Description: 实时混合批量营销圈客
|
|
16424
|
+
* Summary: 实时混合批量营销圈客
|
|
16425
|
+
*/
|
|
16426
|
+
async batchqueryUmktRtMixedmarketingEx(request: BatchqueryUmktRtMixedmarketingRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BatchqueryUmktRtMixedmarketingResponse> {
|
|
16427
|
+
Util.validateModel(request);
|
|
16428
|
+
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({}));
|
|
16429
|
+
}
|
|
16430
|
+
|
|
16063
16431
|
/**
|
|
16064
16432
|
* Description: 创建HTTP PUT提交的文件上传
|
|
16065
16433
|
* Summary: 文件上传创建
|