@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.d.ts +148 -144
- package/dist/client.js +232 -213
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +340 -290
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',
|
|
@@ -2601,47 +2630,6 @@ export class RpcommonResp extends $tea.Model {
|
|
|
2601
2630
|
}
|
|
2602
2631
|
}
|
|
2603
2632
|
|
|
2604
|
-
// 公司列表
|
|
2605
|
-
export class CompanyItems extends $tea.Model {
|
|
2606
|
-
// 公司id
|
|
2607
|
-
companyId: string;
|
|
2608
|
-
// 公司名称
|
|
2609
|
-
companyName: string;
|
|
2610
|
-
// 匹配名称
|
|
2611
|
-
matchingName: string;
|
|
2612
|
-
// 匹配类型
|
|
2613
|
-
matchingType: string;
|
|
2614
|
-
// 匹配值
|
|
2615
|
-
matchingValue: string;
|
|
2616
|
-
// 社会统一信用代码
|
|
2617
|
-
ucCode: string;
|
|
2618
|
-
static names(): { [key: string]: string } {
|
|
2619
|
-
return {
|
|
2620
|
-
companyId: 'company_id',
|
|
2621
|
-
companyName: 'company_name',
|
|
2622
|
-
matchingName: 'matching_name',
|
|
2623
|
-
matchingType: 'matching_type',
|
|
2624
|
-
matchingValue: 'matching_value',
|
|
2625
|
-
ucCode: 'uc_code',
|
|
2626
|
-
};
|
|
2627
|
-
}
|
|
2628
|
-
|
|
2629
|
-
static types(): { [key: string]: any } {
|
|
2630
|
-
return {
|
|
2631
|
-
companyId: 'string',
|
|
2632
|
-
companyName: 'string',
|
|
2633
|
-
matchingName: 'string',
|
|
2634
|
-
matchingType: 'string',
|
|
2635
|
-
matchingValue: 'string',
|
|
2636
|
-
ucCode: 'string',
|
|
2637
|
-
};
|
|
2638
|
-
}
|
|
2639
|
-
|
|
2640
|
-
constructor(map?: { [key: string]: any }) {
|
|
2641
|
-
super(map);
|
|
2642
|
-
}
|
|
2643
|
-
}
|
|
2644
|
-
|
|
2645
2633
|
// 标签图片
|
|
2646
2634
|
export class RtopTagImage extends $tea.Model {
|
|
2647
2635
|
// 标签图片表主键
|
|
@@ -2874,6 +2862,31 @@ export class CustomerUmktInfoModel extends $tea.Model {
|
|
|
2874
2862
|
}
|
|
2875
2863
|
}
|
|
2876
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
|
+
|
|
2877
2890
|
// 模型结果详情
|
|
2878
2891
|
//
|
|
2879
2892
|
export class ModelDetails extends $tea.Model {
|
|
@@ -3357,6 +3370,51 @@ export class CreditAmount extends $tea.Model {
|
|
|
3357
3370
|
}
|
|
3358
3371
|
}
|
|
3359
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
|
+
|
|
3360
3418
|
// 舆情的详情
|
|
3361
3419
|
export class RtopCompanyOpinionDetail extends $tea.Model {
|
|
3362
3420
|
// 具体的舆情内容
|
|
@@ -5912,6 +5970,14 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
5912
5970
|
bankCardNo: string;
|
|
5913
5971
|
// 渠道描述,具体请见分配
|
|
5914
5972
|
channelCode: string;
|
|
5973
|
+
// 客户名称
|
|
5974
|
+
customName?: string;
|
|
5975
|
+
// 资产方用户唯一标识
|
|
5976
|
+
openId?: string;
|
|
5977
|
+
// 身份证号
|
|
5978
|
+
cardNo?: string;
|
|
5979
|
+
// 手机号
|
|
5980
|
+
mobile?: string;
|
|
5915
5981
|
static names(): { [key: string]: string } {
|
|
5916
5982
|
return {
|
|
5917
5983
|
authToken: 'auth_token',
|
|
@@ -5920,6 +5986,10 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
5920
5986
|
customerNo: 'customer_no',
|
|
5921
5987
|
bankCardNo: 'bank_card_no',
|
|
5922
5988
|
channelCode: 'channel_code',
|
|
5989
|
+
customName: 'custom_name',
|
|
5990
|
+
openId: 'open_id',
|
|
5991
|
+
cardNo: 'card_no',
|
|
5992
|
+
mobile: 'mobile',
|
|
5923
5993
|
};
|
|
5924
5994
|
}
|
|
5925
5995
|
|
|
@@ -5931,6 +6001,10 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
5931
6001
|
customerNo: 'string',
|
|
5932
6002
|
bankCardNo: 'string',
|
|
5933
6003
|
channelCode: 'string',
|
|
6004
|
+
customName: 'string',
|
|
6005
|
+
openId: 'string',
|
|
6006
|
+
cardNo: 'string',
|
|
6007
|
+
mobile: 'string',
|
|
5934
6008
|
};
|
|
5935
6009
|
}
|
|
5936
6010
|
|
|
@@ -5987,6 +6061,10 @@ export class VerifyDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
5987
6061
|
bindSerialNo: string;
|
|
5988
6062
|
// 绑卡验证码
|
|
5989
6063
|
bindValidCode: string;
|
|
6064
|
+
// 银行卡号
|
|
6065
|
+
bankCardNo: string;
|
|
6066
|
+
// 渠道号
|
|
6067
|
+
channelCode: string;
|
|
5990
6068
|
static names(): { [key: string]: string } {
|
|
5991
6069
|
return {
|
|
5992
6070
|
authToken: 'auth_token',
|
|
@@ -5995,6 +6073,8 @@ export class VerifyDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
5995
6073
|
customNo: 'custom_no',
|
|
5996
6074
|
bindSerialNo: 'bind_serial_no',
|
|
5997
6075
|
bindValidCode: 'bind_valid_code',
|
|
6076
|
+
bankCardNo: 'bank_card_no',
|
|
6077
|
+
channelCode: 'channel_code',
|
|
5998
6078
|
};
|
|
5999
6079
|
}
|
|
6000
6080
|
|
|
@@ -6006,6 +6086,8 @@ export class VerifyDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
6006
6086
|
customNo: 'string',
|
|
6007
6087
|
bindSerialNo: 'string',
|
|
6008
6088
|
bindValidCode: 'string',
|
|
6089
|
+
bankCardNo: 'string',
|
|
6090
|
+
channelCode: 'string',
|
|
6009
6091
|
};
|
|
6010
6092
|
}
|
|
6011
6093
|
|
|
@@ -7518,6 +7600,8 @@ export class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
|
7518
7600
|
repayType: string;
|
|
7519
7601
|
// 订单号
|
|
7520
7602
|
orderNo: string;
|
|
7603
|
+
// 校验还款金额
|
|
7604
|
+
validRepayAmount?: string;
|
|
7521
7605
|
static names(): { [key: string]: string } {
|
|
7522
7606
|
return {
|
|
7523
7607
|
authToken: 'auth_token',
|
|
@@ -7525,6 +7609,7 @@ export class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
|
7525
7609
|
originalOrderNo: 'original_order_no',
|
|
7526
7610
|
repayType: 'repay_type',
|
|
7527
7611
|
orderNo: 'order_no',
|
|
7612
|
+
validRepayAmount: 'valid_repay_amount',
|
|
7528
7613
|
};
|
|
7529
7614
|
}
|
|
7530
7615
|
|
|
@@ -7535,6 +7620,7 @@ export class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
|
7535
7620
|
originalOrderNo: 'string',
|
|
7536
7621
|
repayType: 'string',
|
|
7537
7622
|
orderNo: 'string',
|
|
7623
|
+
validRepayAmount: 'string',
|
|
7538
7624
|
};
|
|
7539
7625
|
}
|
|
7540
7626
|
|
|
@@ -7614,13 +7700,13 @@ export class QueryDubbridgeSearchContractResponse extends $tea.Model {
|
|
|
7614
7700
|
// 异常信息的文本描述
|
|
7615
7701
|
resultMsg?: string;
|
|
7616
7702
|
// 合同信息列表
|
|
7617
|
-
|
|
7703
|
+
contracts?: Contract[];
|
|
7618
7704
|
static names(): { [key: string]: string } {
|
|
7619
7705
|
return {
|
|
7620
7706
|
reqMsgId: 'req_msg_id',
|
|
7621
7707
|
resultCode: 'result_code',
|
|
7622
7708
|
resultMsg: 'result_msg',
|
|
7623
|
-
|
|
7709
|
+
contracts: 'contracts',
|
|
7624
7710
|
};
|
|
7625
7711
|
}
|
|
7626
7712
|
|
|
@@ -7629,7 +7715,7 @@ export class QueryDubbridgeSearchContractResponse extends $tea.Model {
|
|
|
7629
7715
|
reqMsgId: 'string',
|
|
7630
7716
|
resultCode: 'string',
|
|
7631
7717
|
resultMsg: 'string',
|
|
7632
|
-
|
|
7718
|
+
contracts: { 'type': 'array', 'itemType': Contract },
|
|
7633
7719
|
};
|
|
7634
7720
|
}
|
|
7635
7721
|
|
|
@@ -7970,69 +8056,6 @@ export class QueryDubbridgeCustomerCommonagreementsignResponse extends $tea.Mode
|
|
|
7970
8056
|
}
|
|
7971
8057
|
}
|
|
7972
8058
|
|
|
7973
|
-
export class QueryDubbridgeCompanyItemsRequest extends $tea.Model {
|
|
7974
|
-
// OAuth模式下的授权token
|
|
7975
|
-
authToken?: string;
|
|
7976
|
-
productInstanceId?: string;
|
|
7977
|
-
// 查询字段(公司名、产品名、平台名等不能为空)
|
|
7978
|
-
keyword: string;
|
|
7979
|
-
static names(): { [key: string]: string } {
|
|
7980
|
-
return {
|
|
7981
|
-
authToken: 'auth_token',
|
|
7982
|
-
productInstanceId: 'product_instance_id',
|
|
7983
|
-
keyword: 'keyword',
|
|
7984
|
-
};
|
|
7985
|
-
}
|
|
7986
|
-
|
|
7987
|
-
static types(): { [key: string]: any } {
|
|
7988
|
-
return {
|
|
7989
|
-
authToken: 'string',
|
|
7990
|
-
productInstanceId: 'string',
|
|
7991
|
-
keyword: 'string',
|
|
7992
|
-
};
|
|
7993
|
-
}
|
|
7994
|
-
|
|
7995
|
-
constructor(map?: { [key: string]: any }) {
|
|
7996
|
-
super(map);
|
|
7997
|
-
}
|
|
7998
|
-
}
|
|
7999
|
-
|
|
8000
|
-
export class QueryDubbridgeCompanyItemsResponse extends $tea.Model {
|
|
8001
|
-
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8002
|
-
reqMsgId?: string;
|
|
8003
|
-
// 结果码,一般OK表示调用成功
|
|
8004
|
-
resultCode?: string;
|
|
8005
|
-
// 异常信息的文本描述
|
|
8006
|
-
resultMsg?: string;
|
|
8007
|
-
// 返回公司列表
|
|
8008
|
-
businessItems?: CompanyItems[];
|
|
8009
|
-
// 企业信息个数
|
|
8010
|
-
total?: number;
|
|
8011
|
-
static names(): { [key: string]: string } {
|
|
8012
|
-
return {
|
|
8013
|
-
reqMsgId: 'req_msg_id',
|
|
8014
|
-
resultCode: 'result_code',
|
|
8015
|
-
resultMsg: 'result_msg',
|
|
8016
|
-
businessItems: 'business_items',
|
|
8017
|
-
total: 'total',
|
|
8018
|
-
};
|
|
8019
|
-
}
|
|
8020
|
-
|
|
8021
|
-
static types(): { [key: string]: any } {
|
|
8022
|
-
return {
|
|
8023
|
-
reqMsgId: 'string',
|
|
8024
|
-
resultCode: 'string',
|
|
8025
|
-
resultMsg: 'string',
|
|
8026
|
-
businessItems: { 'type': 'array', 'itemType': CompanyItems },
|
|
8027
|
-
total: 'number',
|
|
8028
|
-
};
|
|
8029
|
-
}
|
|
8030
|
-
|
|
8031
|
-
constructor(map?: { [key: string]: any }) {
|
|
8032
|
-
super(map);
|
|
8033
|
-
}
|
|
8034
|
-
}
|
|
8035
|
-
|
|
8036
8059
|
export class UpdateDubbridgeFileRequest extends $tea.Model {
|
|
8037
8060
|
// OAuth模式下的授权token
|
|
8038
8061
|
authToken?: string;
|
|
@@ -8100,128 +8123,6 @@ export class UpdateDubbridgeFileResponse extends $tea.Model {
|
|
|
8100
8123
|
}
|
|
8101
8124
|
}
|
|
8102
8125
|
|
|
8103
|
-
export class QueryDubbridgeCreditUrlRequest extends $tea.Model {
|
|
8104
|
-
// OAuth模式下的授权token
|
|
8105
|
-
authToken?: string;
|
|
8106
|
-
productInstanceId?: string;
|
|
8107
|
-
static names(): { [key: string]: string } {
|
|
8108
|
-
return {
|
|
8109
|
-
authToken: 'auth_token',
|
|
8110
|
-
productInstanceId: 'product_instance_id',
|
|
8111
|
-
};
|
|
8112
|
-
}
|
|
8113
|
-
|
|
8114
|
-
static types(): { [key: string]: any } {
|
|
8115
|
-
return {
|
|
8116
|
-
authToken: 'string',
|
|
8117
|
-
productInstanceId: 'string',
|
|
8118
|
-
};
|
|
8119
|
-
}
|
|
8120
|
-
|
|
8121
|
-
constructor(map?: { [key: string]: any }) {
|
|
8122
|
-
super(map);
|
|
8123
|
-
}
|
|
8124
|
-
}
|
|
8125
|
-
|
|
8126
|
-
export class QueryDubbridgeCreditUrlResponse extends $tea.Model {
|
|
8127
|
-
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8128
|
-
reqMsgId?: string;
|
|
8129
|
-
// 结果码,一般OK表示调用成功
|
|
8130
|
-
resultCode?: string;
|
|
8131
|
-
// 异常信息的文本描述
|
|
8132
|
-
resultMsg?: string;
|
|
8133
|
-
static names(): { [key: string]: string } {
|
|
8134
|
-
return {
|
|
8135
|
-
reqMsgId: 'req_msg_id',
|
|
8136
|
-
resultCode: 'result_code',
|
|
8137
|
-
resultMsg: 'result_msg',
|
|
8138
|
-
};
|
|
8139
|
-
}
|
|
8140
|
-
|
|
8141
|
-
static types(): { [key: string]: any } {
|
|
8142
|
-
return {
|
|
8143
|
-
reqMsgId: 'string',
|
|
8144
|
-
resultCode: 'string',
|
|
8145
|
-
resultMsg: 'string',
|
|
8146
|
-
};
|
|
8147
|
-
}
|
|
8148
|
-
|
|
8149
|
-
constructor(map?: { [key: string]: any }) {
|
|
8150
|
-
super(map);
|
|
8151
|
-
}
|
|
8152
|
-
}
|
|
8153
|
-
|
|
8154
|
-
export class QueryDubbridgeBusinessDetailRequest extends $tea.Model {
|
|
8155
|
-
// OAuth模式下的授权token
|
|
8156
|
-
authToken?: string;
|
|
8157
|
-
productInstanceId?: string;
|
|
8158
|
-
// 查询字段(注册号,社会统一信用代码,公司名称)
|
|
8159
|
-
keyword: string;
|
|
8160
|
-
static names(): { [key: string]: string } {
|
|
8161
|
-
return {
|
|
8162
|
-
authToken: 'auth_token',
|
|
8163
|
-
productInstanceId: 'product_instance_id',
|
|
8164
|
-
keyword: 'keyword',
|
|
8165
|
-
};
|
|
8166
|
-
}
|
|
8167
|
-
|
|
8168
|
-
static types(): { [key: string]: any } {
|
|
8169
|
-
return {
|
|
8170
|
-
authToken: 'string',
|
|
8171
|
-
productInstanceId: 'string',
|
|
8172
|
-
keyword: 'string',
|
|
8173
|
-
};
|
|
8174
|
-
}
|
|
8175
|
-
|
|
8176
|
-
constructor(map?: { [key: string]: any }) {
|
|
8177
|
-
super(map);
|
|
8178
|
-
}
|
|
8179
|
-
}
|
|
8180
|
-
|
|
8181
|
-
export class QueryDubbridgeBusinessDetailResponse extends $tea.Model {
|
|
8182
|
-
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8183
|
-
reqMsgId?: string;
|
|
8184
|
-
// 结果码,一般OK表示调用成功
|
|
8185
|
-
resultCode?: string;
|
|
8186
|
-
// 异常信息的文本描述
|
|
8187
|
-
resultMsg?: string;
|
|
8188
|
-
// 社会统一信用代码
|
|
8189
|
-
ucCode?: string;
|
|
8190
|
-
// 注册日期
|
|
8191
|
-
registerDate?: string;
|
|
8192
|
-
// 经营地址
|
|
8193
|
-
operatingAddrJson?: string;
|
|
8194
|
-
// 详细地址
|
|
8195
|
-
addressDetail?: string;
|
|
8196
|
-
static names(): { [key: string]: string } {
|
|
8197
|
-
return {
|
|
8198
|
-
reqMsgId: 'req_msg_id',
|
|
8199
|
-
resultCode: 'result_code',
|
|
8200
|
-
resultMsg: 'result_msg',
|
|
8201
|
-
ucCode: 'uc_code',
|
|
8202
|
-
registerDate: 'register_date',
|
|
8203
|
-
operatingAddrJson: 'operating_addr_json',
|
|
8204
|
-
addressDetail: 'address_detail',
|
|
8205
|
-
};
|
|
8206
|
-
}
|
|
8207
|
-
|
|
8208
|
-
static types(): { [key: string]: any } {
|
|
8209
|
-
return {
|
|
8210
|
-
reqMsgId: 'string',
|
|
8211
|
-
resultCode: 'string',
|
|
8212
|
-
resultMsg: 'string',
|
|
8213
|
-
ucCode: 'string',
|
|
8214
|
-
registerDate: 'string',
|
|
8215
|
-
operatingAddrJson: 'string',
|
|
8216
|
-
addressDetail: 'string',
|
|
8217
|
-
};
|
|
8218
|
-
}
|
|
8219
|
-
|
|
8220
|
-
constructor(map?: { [key: string]: any }) {
|
|
8221
|
-
super(map);
|
|
8222
|
-
}
|
|
8223
|
-
}
|
|
8224
|
-
|
|
8225
8126
|
export class NotifyDubbridgeCallbackRequest extends $tea.Model {
|
|
8226
8127
|
// OAuth模式下的授权token
|
|
8227
8128
|
authToken?: string;
|
|
@@ -13578,6 +13479,172 @@ export class SendUmktDigitalsmsBatchResponse extends $tea.Model {
|
|
|
13578
13479
|
}
|
|
13579
13480
|
}
|
|
13580
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
|
+
|
|
13581
13648
|
export class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
13582
13649
|
// OAuth模式下的授权token
|
|
13583
13650
|
authToken?: string;
|
|
@@ -13779,7 +13846,9 @@ export default class Client {
|
|
|
13779
13846
|
req_msg_id: AntchainUtil.getNonce(),
|
|
13780
13847
|
access_key: this._accessKeyId,
|
|
13781
13848
|
base_sdk_version: "TeaSDK-2.0",
|
|
13782
|
-
sdk_version: "1.
|
|
13849
|
+
sdk_version: "1.15.0",
|
|
13850
|
+
_prod_code: "RISKPLUS",
|
|
13851
|
+
_prod_channel: "undefined",
|
|
13783
13852
|
};
|
|
13784
13853
|
if (!Util.empty(this._securityToken)) {
|
|
13785
13854
|
request_.query["security_token"] = this._securityToken;
|
|
@@ -14891,25 +14960,6 @@ export default class Client {
|
|
|
14891
14960
|
return $tea.cast<QueryDubbridgeCustomerCommonagreementsignResponse>(await this.doRequest("1.0", "riskplus.dubbridge.customer.commonagreementsign.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeCustomerCommonagreementsignResponse({}));
|
|
14892
14961
|
}
|
|
14893
14962
|
|
|
14894
|
-
/**
|
|
14895
|
-
* Description: 根据关键字从第三方查询企业信息
|
|
14896
|
-
* Summary: 天枢系统企业搜索
|
|
14897
|
-
*/
|
|
14898
|
-
async queryDubbridgeCompanyItems(request: QueryDubbridgeCompanyItemsRequest): Promise<QueryDubbridgeCompanyItemsResponse> {
|
|
14899
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
14900
|
-
let headers : {[key: string ]: string} = { };
|
|
14901
|
-
return await this.queryDubbridgeCompanyItemsEx(request, headers, runtime);
|
|
14902
|
-
}
|
|
14903
|
-
|
|
14904
|
-
/**
|
|
14905
|
-
* Description: 根据关键字从第三方查询企业信息
|
|
14906
|
-
* Summary: 天枢系统企业搜索
|
|
14907
|
-
*/
|
|
14908
|
-
async queryDubbridgeCompanyItemsEx(request: QueryDubbridgeCompanyItemsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeCompanyItemsResponse> {
|
|
14909
|
-
Util.validateModel(request);
|
|
14910
|
-
return $tea.cast<QueryDubbridgeCompanyItemsResponse>(await this.doRequest("1.0", "riskplus.dubbridge.company.items.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeCompanyItemsResponse({}));
|
|
14911
|
-
}
|
|
14912
|
-
|
|
14913
14963
|
/**
|
|
14914
14964
|
* Description: 客户影像信息更新
|
|
14915
14965
|
* Summary: 客户影像信息更新
|
|
@@ -14929,44 +14979,6 @@ export default class Client {
|
|
|
14929
14979
|
return $tea.cast<UpdateDubbridgeFileResponse>(await this.doRequest("1.0", "riskplus.dubbridge.file.update", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UpdateDubbridgeFileResponse({}));
|
|
14930
14980
|
}
|
|
14931
14981
|
|
|
14932
|
-
/**
|
|
14933
|
-
* Description: 天枢系统获取授信H5地址
|
|
14934
|
-
* Summary: 天枢系统获取授信H5地址
|
|
14935
|
-
*/
|
|
14936
|
-
async queryDubbridgeCreditUrl(request: QueryDubbridgeCreditUrlRequest): Promise<QueryDubbridgeCreditUrlResponse> {
|
|
14937
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
14938
|
-
let headers : {[key: string ]: string} = { };
|
|
14939
|
-
return await this.queryDubbridgeCreditUrlEx(request, headers, runtime);
|
|
14940
|
-
}
|
|
14941
|
-
|
|
14942
|
-
/**
|
|
14943
|
-
* Description: 天枢系统获取授信H5地址
|
|
14944
|
-
* Summary: 天枢系统获取授信H5地址
|
|
14945
|
-
*/
|
|
14946
|
-
async queryDubbridgeCreditUrlEx(request: QueryDubbridgeCreditUrlRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeCreditUrlResponse> {
|
|
14947
|
-
Util.validateModel(request);
|
|
14948
|
-
return $tea.cast<QueryDubbridgeCreditUrlResponse>(await this.doRequest("1.0", "riskplus.dubbridge.credit.url.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeCreditUrlResponse({}));
|
|
14949
|
-
}
|
|
14950
|
-
|
|
14951
|
-
/**
|
|
14952
|
-
* Description: 根据关键字从第三方查询企业详情信息
|
|
14953
|
-
* Summary: 天枢系统企业详情信息查询
|
|
14954
|
-
*/
|
|
14955
|
-
async queryDubbridgeBusinessDetail(request: QueryDubbridgeBusinessDetailRequest): Promise<QueryDubbridgeBusinessDetailResponse> {
|
|
14956
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
14957
|
-
let headers : {[key: string ]: string} = { };
|
|
14958
|
-
return await this.queryDubbridgeBusinessDetailEx(request, headers, runtime);
|
|
14959
|
-
}
|
|
14960
|
-
|
|
14961
|
-
/**
|
|
14962
|
-
* Description: 根据关键字从第三方查询企业详情信息
|
|
14963
|
-
* Summary: 天枢系统企业详情信息查询
|
|
14964
|
-
*/
|
|
14965
|
-
async queryDubbridgeBusinessDetailEx(request: QueryDubbridgeBusinessDetailRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeBusinessDetailResponse> {
|
|
14966
|
-
Util.validateModel(request);
|
|
14967
|
-
return $tea.cast<QueryDubbridgeBusinessDetailResponse>(await this.doRequest("1.0", "riskplus.dubbridge.business.detail.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeBusinessDetailResponse({}));
|
|
14968
|
-
}
|
|
14969
|
-
|
|
14970
14982
|
/**
|
|
14971
14983
|
* Description: 天枢回调通用接口
|
|
14972
14984
|
* Summary: 天枢回调通用接口
|
|
@@ -16341,6 +16353,44 @@ export default class Client {
|
|
|
16341
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({}));
|
|
16342
16354
|
}
|
|
16343
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
|
+
|
|
16344
16394
|
/**
|
|
16345
16395
|
* Description: 创建HTTP PUT提交的文件上传
|
|
16346
16396
|
* Summary: 文件上传创建
|