@antchain/riskplus 1.12.19 → 1.13.3
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 +249 -0
- package/dist/client.js +372 -1
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +523 -3
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -268,6 +268,31 @@ export class DecisionFlow extends $tea.Model {
|
|
|
268
268
|
}
|
|
269
269
|
}
|
|
270
270
|
|
|
271
|
+
// 回流事件记录属性项
|
|
272
|
+
export class BackflowEventRecordProperty extends $tea.Model {
|
|
273
|
+
// 属性code
|
|
274
|
+
key: string;
|
|
275
|
+
// 属性value,统一为字符串
|
|
276
|
+
value: string;
|
|
277
|
+
static names(): { [key: string]: string } {
|
|
278
|
+
return {
|
|
279
|
+
key: 'key',
|
|
280
|
+
value: 'value',
|
|
281
|
+
};
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
static types(): { [key: string]: any } {
|
|
285
|
+
return {
|
|
286
|
+
key: 'string',
|
|
287
|
+
value: 'string',
|
|
288
|
+
};
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
constructor(map?: { [key: string]: any }) {
|
|
292
|
+
super(map);
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
|
|
271
296
|
// 营销盾批量查询单条结果
|
|
272
297
|
export class BaseCustomerUmktInfoModel extends $tea.Model {
|
|
273
298
|
// 用户凭证
|
|
@@ -623,6 +648,31 @@ export class RuleDetail extends $tea.Model {
|
|
|
623
648
|
}
|
|
624
649
|
}
|
|
625
650
|
|
|
651
|
+
// 回调通用返回体
|
|
652
|
+
export class CommonNotyfyResult extends $tea.Model {
|
|
653
|
+
// 请求id
|
|
654
|
+
requestId: string;
|
|
655
|
+
// 业务响应Json
|
|
656
|
+
bizResponse: string;
|
|
657
|
+
static names(): { [key: string]: string } {
|
|
658
|
+
return {
|
|
659
|
+
requestId: 'request_id',
|
|
660
|
+
bizResponse: 'biz_response',
|
|
661
|
+
};
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
static types(): { [key: string]: any } {
|
|
665
|
+
return {
|
|
666
|
+
requestId: 'string',
|
|
667
|
+
bizResponse: 'string',
|
|
668
|
+
};
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
constructor(map?: { [key: string]: any }) {
|
|
672
|
+
super(map);
|
|
673
|
+
}
|
|
674
|
+
}
|
|
675
|
+
|
|
626
676
|
// 安全场景参数
|
|
627
677
|
export class SecurityScene extends $tea.Model {
|
|
628
678
|
// 接入渠道
|
|
@@ -1033,6 +1083,31 @@ export class UpdateCustomerRelationResponseData extends $tea.Model {
|
|
|
1033
1083
|
}
|
|
1034
1084
|
}
|
|
1035
1085
|
|
|
1086
|
+
// 回流事件记录
|
|
1087
|
+
export class BackflowEventRecord extends $tea.Model {
|
|
1088
|
+
// 回流事件记录分组,ACTION-触达属性组/SERVICE-业务属性组/CONVERSION-转化属性组
|
|
1089
|
+
groupCode: string;
|
|
1090
|
+
// 回流事件部分分组后的记录list
|
|
1091
|
+
properties: BackflowEventRecordProperty[];
|
|
1092
|
+
static names(): { [key: string]: string } {
|
|
1093
|
+
return {
|
|
1094
|
+
groupCode: 'group_code',
|
|
1095
|
+
properties: 'properties',
|
|
1096
|
+
};
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
static types(): { [key: string]: any } {
|
|
1100
|
+
return {
|
|
1101
|
+
groupCode: 'string',
|
|
1102
|
+
properties: { 'type': 'array', 'itemType': BackflowEventRecordProperty },
|
|
1103
|
+
};
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1106
|
+
constructor(map?: { [key: string]: any }) {
|
|
1107
|
+
super(map);
|
|
1108
|
+
}
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1036
1111
|
// 风险维度
|
|
1037
1112
|
export class RtopCompanyRiskFactor extends $tea.Model {
|
|
1038
1113
|
// 维度名称
|
|
@@ -1977,6 +2052,43 @@ export class StrategyDetails extends $tea.Model {
|
|
|
1977
2052
|
}
|
|
1978
2053
|
}
|
|
1979
2054
|
|
|
2055
|
+
// 支付方式锁定结果
|
|
2056
|
+
export class PayMethodLockResult extends $tea.Model {
|
|
2057
|
+
// 签约结果
|
|
2058
|
+
signStatus: string;
|
|
2059
|
+
// 账号
|
|
2060
|
+
accountId: string;
|
|
2061
|
+
// 登录号
|
|
2062
|
+
loginId: string;
|
|
2063
|
+
// 支付公司
|
|
2064
|
+
payChannel: string;
|
|
2065
|
+
// 绑定账号名称
|
|
2066
|
+
accountName: string;
|
|
2067
|
+
static names(): { [key: string]: string } {
|
|
2068
|
+
return {
|
|
2069
|
+
signStatus: 'sign_status',
|
|
2070
|
+
accountId: 'account_id',
|
|
2071
|
+
loginId: 'login_id',
|
|
2072
|
+
payChannel: 'pay_channel',
|
|
2073
|
+
accountName: 'account_name',
|
|
2074
|
+
};
|
|
2075
|
+
}
|
|
2076
|
+
|
|
2077
|
+
static types(): { [key: string]: any } {
|
|
2078
|
+
return {
|
|
2079
|
+
signStatus: 'string',
|
|
2080
|
+
accountId: 'string',
|
|
2081
|
+
loginId: 'string',
|
|
2082
|
+
payChannel: 'string',
|
|
2083
|
+
accountName: 'string',
|
|
2084
|
+
};
|
|
2085
|
+
}
|
|
2086
|
+
|
|
2087
|
+
constructor(map?: { [key: string]: any }) {
|
|
2088
|
+
super(map);
|
|
2089
|
+
}
|
|
2090
|
+
}
|
|
2091
|
+
|
|
1980
2092
|
// 反欺诈风险数据服务决策结果
|
|
1981
2093
|
export class SecurityResultInfos extends $tea.Model {
|
|
1982
2094
|
// 反欺诈风险数据服务风险建议决策
|
|
@@ -2416,7 +2528,7 @@ export class RpcommonResp extends $tea.Model {
|
|
|
2416
2528
|
export class CompanyItems extends $tea.Model {
|
|
2417
2529
|
// 公司id
|
|
2418
2530
|
companyId: string;
|
|
2419
|
-
//
|
|
2531
|
+
// 公司名称
|
|
2420
2532
|
companyName: string;
|
|
2421
2533
|
// 匹配名称
|
|
2422
2534
|
matchingName: string;
|
|
@@ -2424,7 +2536,7 @@ export class CompanyItems extends $tea.Model {
|
|
|
2424
2536
|
matchingType: string;
|
|
2425
2537
|
// 匹配值
|
|
2426
2538
|
matchingValue: string;
|
|
2427
|
-
//
|
|
2539
|
+
// 社会统一信用代码
|
|
2428
2540
|
ucCode: string;
|
|
2429
2541
|
static names(): { [key: string]: string } {
|
|
2430
2542
|
return {
|
|
@@ -2737,6 +2849,37 @@ export class RtopCompanyOpinionCount extends $tea.Model {
|
|
|
2737
2849
|
}
|
|
2738
2850
|
}
|
|
2739
2851
|
|
|
2852
|
+
// 商户资金链锁定结果
|
|
2853
|
+
export class FundChainLockResult extends $tea.Model {
|
|
2854
|
+
// 店铺名称
|
|
2855
|
+
name: string;
|
|
2856
|
+
// 店铺id
|
|
2857
|
+
id: string;
|
|
2858
|
+
// 0:成功
|
|
2859
|
+
// 1:失败
|
|
2860
|
+
// 2:处理中
|
|
2861
|
+
status: string;
|
|
2862
|
+
static names(): { [key: string]: string } {
|
|
2863
|
+
return {
|
|
2864
|
+
name: 'name',
|
|
2865
|
+
id: 'id',
|
|
2866
|
+
status: 'status',
|
|
2867
|
+
};
|
|
2868
|
+
}
|
|
2869
|
+
|
|
2870
|
+
static types(): { [key: string]: any } {
|
|
2871
|
+
return {
|
|
2872
|
+
name: 'string',
|
|
2873
|
+
id: 'string',
|
|
2874
|
+
status: 'string',
|
|
2875
|
+
};
|
|
2876
|
+
}
|
|
2877
|
+
|
|
2878
|
+
constructor(map?: { [key: string]: any }) {
|
|
2879
|
+
super(map);
|
|
2880
|
+
}
|
|
2881
|
+
}
|
|
2882
|
+
|
|
2740
2883
|
// 企业地区分布统计
|
|
2741
2884
|
export class RtopRegionalDistribution extends $tea.Model {
|
|
2742
2885
|
// 统计值
|
|
@@ -6403,12 +6546,15 @@ export class QueryDubbridgeAccountStatusRequest extends $tea.Model {
|
|
|
6403
6546
|
customNo?: string;
|
|
6404
6547
|
// 资产方用户唯一标识(资产方用户唯一标记二选一)
|
|
6405
6548
|
openId?: string;
|
|
6549
|
+
// 查询业务
|
|
6550
|
+
bizType: string;
|
|
6406
6551
|
static names(): { [key: string]: string } {
|
|
6407
6552
|
return {
|
|
6408
6553
|
authToken: 'auth_token',
|
|
6409
6554
|
productInstanceId: 'product_instance_id',
|
|
6410
6555
|
customNo: 'custom_no',
|
|
6411
6556
|
openId: 'open_id',
|
|
6557
|
+
bizType: 'biz_type',
|
|
6412
6558
|
};
|
|
6413
6559
|
}
|
|
6414
6560
|
|
|
@@ -6418,6 +6564,7 @@ export class QueryDubbridgeAccountStatusRequest extends $tea.Model {
|
|
|
6418
6564
|
productInstanceId: 'string',
|
|
6419
6565
|
customNo: 'string',
|
|
6420
6566
|
openId: 'string',
|
|
6567
|
+
bizType: 'string',
|
|
6421
6568
|
};
|
|
6422
6569
|
}
|
|
6423
6570
|
|
|
@@ -6435,12 +6582,18 @@ export class QueryDubbridgeAccountStatusResponse extends $tea.Model {
|
|
|
6435
6582
|
resultMsg?: string;
|
|
6436
6583
|
// 授信申请状态
|
|
6437
6584
|
data?: CustomStatus;
|
|
6585
|
+
// 支付账户签约结果
|
|
6586
|
+
payMethodLockResult?: PayMethodLockResult;
|
|
6587
|
+
// 支付账户锁定结果
|
|
6588
|
+
fundChainLockResult?: FundChainLockResult[];
|
|
6438
6589
|
static names(): { [key: string]: string } {
|
|
6439
6590
|
return {
|
|
6440
6591
|
reqMsgId: 'req_msg_id',
|
|
6441
6592
|
resultCode: 'result_code',
|
|
6442
6593
|
resultMsg: 'result_msg',
|
|
6443
6594
|
data: 'data',
|
|
6595
|
+
payMethodLockResult: 'pay_method_lock_result',
|
|
6596
|
+
fundChainLockResult: 'fund_chain_lock_result',
|
|
6444
6597
|
};
|
|
6445
6598
|
}
|
|
6446
6599
|
|
|
@@ -6450,6 +6603,8 @@ export class QueryDubbridgeAccountStatusResponse extends $tea.Model {
|
|
|
6450
6603
|
resultCode: 'string',
|
|
6451
6604
|
resultMsg: 'string',
|
|
6452
6605
|
data: CustomStatus,
|
|
6606
|
+
payMethodLockResult: PayMethodLockResult,
|
|
6607
|
+
fundChainLockResult: { 'type': 'array', 'itemType': FundChainLockResult },
|
|
6453
6608
|
};
|
|
6454
6609
|
}
|
|
6455
6610
|
|
|
@@ -7978,6 +8133,74 @@ export class QueryDubbridgeBusinessDetailResponse extends $tea.Model {
|
|
|
7978
8133
|
}
|
|
7979
8134
|
}
|
|
7980
8135
|
|
|
8136
|
+
export class NotifyDubbridgeCallbackRequest extends $tea.Model {
|
|
8137
|
+
// OAuth模式下的授权token
|
|
8138
|
+
authToken?: string;
|
|
8139
|
+
productInstanceId?: string;
|
|
8140
|
+
// 租户id
|
|
8141
|
+
channelCode: string;
|
|
8142
|
+
// json参数
|
|
8143
|
+
bizParam: string;
|
|
8144
|
+
// 回调类型(1授信回调2用信回调)
|
|
8145
|
+
bizType: string;
|
|
8146
|
+
static names(): { [key: string]: string } {
|
|
8147
|
+
return {
|
|
8148
|
+
authToken: 'auth_token',
|
|
8149
|
+
productInstanceId: 'product_instance_id',
|
|
8150
|
+
channelCode: 'channel_code',
|
|
8151
|
+
bizParam: 'biz_param',
|
|
8152
|
+
bizType: 'biz_type',
|
|
8153
|
+
};
|
|
8154
|
+
}
|
|
8155
|
+
|
|
8156
|
+
static types(): { [key: string]: any } {
|
|
8157
|
+
return {
|
|
8158
|
+
authToken: 'string',
|
|
8159
|
+
productInstanceId: 'string',
|
|
8160
|
+
channelCode: 'string',
|
|
8161
|
+
bizParam: 'string',
|
|
8162
|
+
bizType: 'string',
|
|
8163
|
+
};
|
|
8164
|
+
}
|
|
8165
|
+
|
|
8166
|
+
constructor(map?: { [key: string]: any }) {
|
|
8167
|
+
super(map);
|
|
8168
|
+
}
|
|
8169
|
+
}
|
|
8170
|
+
|
|
8171
|
+
export class NotifyDubbridgeCallbackResponse extends $tea.Model {
|
|
8172
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8173
|
+
reqMsgId?: string;
|
|
8174
|
+
// 结果码,一般OK表示调用成功
|
|
8175
|
+
resultCode?: string;
|
|
8176
|
+
// 异常信息的文本描述
|
|
8177
|
+
resultMsg?: string;
|
|
8178
|
+
//
|
|
8179
|
+
// 处理结果
|
|
8180
|
+
data?: CommonNotyfyResult;
|
|
8181
|
+
static names(): { [key: string]: string } {
|
|
8182
|
+
return {
|
|
8183
|
+
reqMsgId: 'req_msg_id',
|
|
8184
|
+
resultCode: 'result_code',
|
|
8185
|
+
resultMsg: 'result_msg',
|
|
8186
|
+
data: 'data',
|
|
8187
|
+
};
|
|
8188
|
+
}
|
|
8189
|
+
|
|
8190
|
+
static types(): { [key: string]: any } {
|
|
8191
|
+
return {
|
|
8192
|
+
reqMsgId: 'string',
|
|
8193
|
+
resultCode: 'string',
|
|
8194
|
+
resultMsg: 'string',
|
|
8195
|
+
data: CommonNotyfyResult,
|
|
8196
|
+
};
|
|
8197
|
+
}
|
|
8198
|
+
|
|
8199
|
+
constructor(map?: { [key: string]: any }) {
|
|
8200
|
+
super(map);
|
|
8201
|
+
}
|
|
8202
|
+
}
|
|
8203
|
+
|
|
7981
8204
|
export class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
|
|
7982
8205
|
// OAuth模式下的授权token
|
|
7983
8206
|
authToken?: string;
|
|
@@ -12847,6 +13070,227 @@ export class QueryUmktRtMarketingResponse extends $tea.Model {
|
|
|
12847
13070
|
}
|
|
12848
13071
|
}
|
|
12849
13072
|
|
|
13073
|
+
export class PushUmktBackflowEventRequest extends $tea.Model {
|
|
13074
|
+
// OAuth模式下的授权token
|
|
13075
|
+
authToken?: string;
|
|
13076
|
+
productInstanceId?: string;
|
|
13077
|
+
// 回流事件id,对应租户回流事件id
|
|
13078
|
+
eventId: number;
|
|
13079
|
+
// 回流事件记录列表
|
|
13080
|
+
eventRecords: BackflowEventRecord[];
|
|
13081
|
+
static names(): { [key: string]: string } {
|
|
13082
|
+
return {
|
|
13083
|
+
authToken: 'auth_token',
|
|
13084
|
+
productInstanceId: 'product_instance_id',
|
|
13085
|
+
eventId: 'event_id',
|
|
13086
|
+
eventRecords: 'event_records',
|
|
13087
|
+
};
|
|
13088
|
+
}
|
|
13089
|
+
|
|
13090
|
+
static types(): { [key: string]: any } {
|
|
13091
|
+
return {
|
|
13092
|
+
authToken: 'string',
|
|
13093
|
+
productInstanceId: 'string',
|
|
13094
|
+
eventId: 'number',
|
|
13095
|
+
eventRecords: { 'type': 'array', 'itemType': BackflowEventRecord },
|
|
13096
|
+
};
|
|
13097
|
+
}
|
|
13098
|
+
|
|
13099
|
+
constructor(map?: { [key: string]: any }) {
|
|
13100
|
+
super(map);
|
|
13101
|
+
}
|
|
13102
|
+
}
|
|
13103
|
+
|
|
13104
|
+
export class PushUmktBackflowEventResponse extends $tea.Model {
|
|
13105
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
13106
|
+
reqMsgId?: string;
|
|
13107
|
+
// 结果码,一般OK表示调用成功
|
|
13108
|
+
resultCode?: string;
|
|
13109
|
+
// 异常信息的文本描述
|
|
13110
|
+
resultMsg?: string;
|
|
13111
|
+
static names(): { [key: string]: string } {
|
|
13112
|
+
return {
|
|
13113
|
+
reqMsgId: 'req_msg_id',
|
|
13114
|
+
resultCode: 'result_code',
|
|
13115
|
+
resultMsg: 'result_msg',
|
|
13116
|
+
};
|
|
13117
|
+
}
|
|
13118
|
+
|
|
13119
|
+
static types(): { [key: string]: any } {
|
|
13120
|
+
return {
|
|
13121
|
+
reqMsgId: 'string',
|
|
13122
|
+
resultCode: 'string',
|
|
13123
|
+
resultMsg: 'string',
|
|
13124
|
+
};
|
|
13125
|
+
}
|
|
13126
|
+
|
|
13127
|
+
constructor(map?: { [key: string]: any }) {
|
|
13128
|
+
super(map);
|
|
13129
|
+
}
|
|
13130
|
+
}
|
|
13131
|
+
|
|
13132
|
+
export class SendUmktCardsmsBatchRequest extends $tea.Model {
|
|
13133
|
+
// OAuth模式下的授权token
|
|
13134
|
+
authToken?: string;
|
|
13135
|
+
productInstanceId?: string;
|
|
13136
|
+
// cpassAccessKey
|
|
13137
|
+
cpassAk?: string;
|
|
13138
|
+
// 行业标签
|
|
13139
|
+
industryTag: string;
|
|
13140
|
+
// 卡片短信模板
|
|
13141
|
+
cardTemplateCode: string;
|
|
13142
|
+
// {}
|
|
13143
|
+
cardTemplateParamJson: string;
|
|
13144
|
+
// ["13455","76898"]
|
|
13145
|
+
phoneNumberJson: string;
|
|
13146
|
+
// ["蚂蚁营销"]
|
|
13147
|
+
signNameJson: string;
|
|
13148
|
+
// 上行短信扩展码
|
|
13149
|
+
smsUpExtendCodeJson?: string;
|
|
13150
|
+
static names(): { [key: string]: string } {
|
|
13151
|
+
return {
|
|
13152
|
+
authToken: 'auth_token',
|
|
13153
|
+
productInstanceId: 'product_instance_id',
|
|
13154
|
+
cpassAk: 'cpass_ak',
|
|
13155
|
+
industryTag: 'industry_tag',
|
|
13156
|
+
cardTemplateCode: 'card_template_code',
|
|
13157
|
+
cardTemplateParamJson: 'card_template_param_json',
|
|
13158
|
+
phoneNumberJson: 'phone_number_json',
|
|
13159
|
+
signNameJson: 'sign_name_json',
|
|
13160
|
+
smsUpExtendCodeJson: 'sms_up_extend_code_json',
|
|
13161
|
+
};
|
|
13162
|
+
}
|
|
13163
|
+
|
|
13164
|
+
static types(): { [key: string]: any } {
|
|
13165
|
+
return {
|
|
13166
|
+
authToken: 'string',
|
|
13167
|
+
productInstanceId: 'string',
|
|
13168
|
+
cpassAk: 'string',
|
|
13169
|
+
industryTag: 'string',
|
|
13170
|
+
cardTemplateCode: 'string',
|
|
13171
|
+
cardTemplateParamJson: 'string',
|
|
13172
|
+
phoneNumberJson: 'string',
|
|
13173
|
+
signNameJson: 'string',
|
|
13174
|
+
smsUpExtendCodeJson: 'string',
|
|
13175
|
+
};
|
|
13176
|
+
}
|
|
13177
|
+
|
|
13178
|
+
constructor(map?: { [key: string]: any }) {
|
|
13179
|
+
super(map);
|
|
13180
|
+
}
|
|
13181
|
+
}
|
|
13182
|
+
|
|
13183
|
+
export class SendUmktCardsmsBatchResponse extends $tea.Model {
|
|
13184
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
13185
|
+
reqMsgId?: string;
|
|
13186
|
+
// 结果码,一般OK表示调用成功
|
|
13187
|
+
resultCode?: string;
|
|
13188
|
+
// 异常信息的文本描述
|
|
13189
|
+
resultMsg?: string;
|
|
13190
|
+
// 卡片短信回执id
|
|
13191
|
+
bizCardId?: string;
|
|
13192
|
+
// 支持的手机号
|
|
13193
|
+
mediaMobiles?: string;
|
|
13194
|
+
// 不支持的手机号
|
|
13195
|
+
notMediaMobiles?: string;
|
|
13196
|
+
static names(): { [key: string]: string } {
|
|
13197
|
+
return {
|
|
13198
|
+
reqMsgId: 'req_msg_id',
|
|
13199
|
+
resultCode: 'result_code',
|
|
13200
|
+
resultMsg: 'result_msg',
|
|
13201
|
+
bizCardId: 'biz_card_id',
|
|
13202
|
+
mediaMobiles: 'media_mobiles',
|
|
13203
|
+
notMediaMobiles: 'not_media_mobiles',
|
|
13204
|
+
};
|
|
13205
|
+
}
|
|
13206
|
+
|
|
13207
|
+
static types(): { [key: string]: any } {
|
|
13208
|
+
return {
|
|
13209
|
+
reqMsgId: 'string',
|
|
13210
|
+
resultCode: 'string',
|
|
13211
|
+
resultMsg: 'string',
|
|
13212
|
+
bizCardId: 'string',
|
|
13213
|
+
mediaMobiles: 'string',
|
|
13214
|
+
notMediaMobiles: 'string',
|
|
13215
|
+
};
|
|
13216
|
+
}
|
|
13217
|
+
|
|
13218
|
+
constructor(map?: { [key: string]: any }) {
|
|
13219
|
+
super(map);
|
|
13220
|
+
}
|
|
13221
|
+
}
|
|
13222
|
+
|
|
13223
|
+
export class QueryUmktCardsmsSupportRequest extends $tea.Model {
|
|
13224
|
+
// OAuth模式下的授权token
|
|
13225
|
+
authToken?: string;
|
|
13226
|
+
productInstanceId?: string;
|
|
13227
|
+
// cpassAccessKey
|
|
13228
|
+
cpassAk?: string;
|
|
13229
|
+
// 行业标签
|
|
13230
|
+
industryTag: string;
|
|
13231
|
+
// 卡片短信模板
|
|
13232
|
+
templateCode: string;
|
|
13233
|
+
// 手机号
|
|
13234
|
+
mobiles: string;
|
|
13235
|
+
static names(): { [key: string]: string } {
|
|
13236
|
+
return {
|
|
13237
|
+
authToken: 'auth_token',
|
|
13238
|
+
productInstanceId: 'product_instance_id',
|
|
13239
|
+
cpassAk: 'cpass_ak',
|
|
13240
|
+
industryTag: 'industry_tag',
|
|
13241
|
+
templateCode: 'template_code',
|
|
13242
|
+
mobiles: 'mobiles',
|
|
13243
|
+
};
|
|
13244
|
+
}
|
|
13245
|
+
|
|
13246
|
+
static types(): { [key: string]: any } {
|
|
13247
|
+
return {
|
|
13248
|
+
authToken: 'string',
|
|
13249
|
+
productInstanceId: 'string',
|
|
13250
|
+
cpassAk: 'string',
|
|
13251
|
+
industryTag: 'string',
|
|
13252
|
+
templateCode: 'string',
|
|
13253
|
+
mobiles: 'string',
|
|
13254
|
+
};
|
|
13255
|
+
}
|
|
13256
|
+
|
|
13257
|
+
constructor(map?: { [key: string]: any }) {
|
|
13258
|
+
super(map);
|
|
13259
|
+
}
|
|
13260
|
+
}
|
|
13261
|
+
|
|
13262
|
+
export class QueryUmktCardsmsSupportResponse extends $tea.Model {
|
|
13263
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
13264
|
+
reqMsgId?: string;
|
|
13265
|
+
// 结果码,一般OK表示调用成功
|
|
13266
|
+
resultCode?: string;
|
|
13267
|
+
// 异常信息的文本描述
|
|
13268
|
+
resultMsg?: string;
|
|
13269
|
+
// 手机号卡片短信支持信息
|
|
13270
|
+
datas?: string;
|
|
13271
|
+
static names(): { [key: string]: string } {
|
|
13272
|
+
return {
|
|
13273
|
+
reqMsgId: 'req_msg_id',
|
|
13274
|
+
resultCode: 'result_code',
|
|
13275
|
+
resultMsg: 'result_msg',
|
|
13276
|
+
datas: 'datas',
|
|
13277
|
+
};
|
|
13278
|
+
}
|
|
13279
|
+
|
|
13280
|
+
static types(): { [key: string]: any } {
|
|
13281
|
+
return {
|
|
13282
|
+
reqMsgId: 'string',
|
|
13283
|
+
resultCode: 'string',
|
|
13284
|
+
resultMsg: 'string',
|
|
13285
|
+
datas: 'string',
|
|
13286
|
+
};
|
|
13287
|
+
}
|
|
13288
|
+
|
|
13289
|
+
constructor(map?: { [key: string]: any }) {
|
|
13290
|
+
super(map);
|
|
13291
|
+
}
|
|
13292
|
+
}
|
|
13293
|
+
|
|
12850
13294
|
export class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
12851
13295
|
// OAuth模式下的授权token
|
|
12852
13296
|
authToken?: string;
|
|
@@ -13048,7 +13492,7 @@ export default class Client {
|
|
|
13048
13492
|
req_msg_id: AntchainUtil.getNonce(),
|
|
13049
13493
|
access_key: this._accessKeyId,
|
|
13050
13494
|
base_sdk_version: "TeaSDK-2.0",
|
|
13051
|
-
sdk_version: "1.
|
|
13495
|
+
sdk_version: "1.13.3",
|
|
13052
13496
|
_prod_code: "RISKPLUS",
|
|
13053
13497
|
_prod_channel: "undefined",
|
|
13054
13498
|
};
|
|
@@ -14238,6 +14682,25 @@ export default class Client {
|
|
|
14238
14682
|
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({}));
|
|
14239
14683
|
}
|
|
14240
14684
|
|
|
14685
|
+
/**
|
|
14686
|
+
* Description: 天枢回调通用接口
|
|
14687
|
+
* Summary: 天枢回调通用接口
|
|
14688
|
+
*/
|
|
14689
|
+
async notifyDubbridgeCallback(request: NotifyDubbridgeCallbackRequest): Promise<NotifyDubbridgeCallbackResponse> {
|
|
14690
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
14691
|
+
let headers : {[key: string ]: string} = { };
|
|
14692
|
+
return await this.notifyDubbridgeCallbackEx(request, headers, runtime);
|
|
14693
|
+
}
|
|
14694
|
+
|
|
14695
|
+
/**
|
|
14696
|
+
* Description: 天枢回调通用接口
|
|
14697
|
+
* Summary: 天枢回调通用接口
|
|
14698
|
+
*/
|
|
14699
|
+
async notifyDubbridgeCallbackEx(request: NotifyDubbridgeCallbackRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<NotifyDubbridgeCallbackResponse> {
|
|
14700
|
+
Util.validateModel(request);
|
|
14701
|
+
return $tea.cast<NotifyDubbridgeCallbackResponse>(await this.doRequest("1.0", "riskplus.dubbridge.callback.notify", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new NotifyDubbridgeCallbackResponse({}));
|
|
14702
|
+
}
|
|
14703
|
+
|
|
14241
14704
|
/**
|
|
14242
14705
|
* Description: 四要素认证首先调用此接口
|
|
14243
14706
|
* Summary: 芝麻四要素接口
|
|
@@ -15498,6 +15961,63 @@ export default class Client {
|
|
|
15498
15961
|
return $tea.cast<QueryUmktRtMarketingResponse>(await this.doRequest("1.0", "riskplus.umkt.rt.marketing.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryUmktRtMarketingResponse({}));
|
|
15499
15962
|
}
|
|
15500
15963
|
|
|
15964
|
+
/**
|
|
15965
|
+
* Description: 营销盾业务回流事件推送
|
|
15966
|
+
* Summary: 营销盾回流事件推送
|
|
15967
|
+
*/
|
|
15968
|
+
async pushUmktBackflowEvent(request: PushUmktBackflowEventRequest): Promise<PushUmktBackflowEventResponse> {
|
|
15969
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
15970
|
+
let headers : {[key: string ]: string} = { };
|
|
15971
|
+
return await this.pushUmktBackflowEventEx(request, headers, runtime);
|
|
15972
|
+
}
|
|
15973
|
+
|
|
15974
|
+
/**
|
|
15975
|
+
* Description: 营销盾业务回流事件推送
|
|
15976
|
+
* Summary: 营销盾回流事件推送
|
|
15977
|
+
*/
|
|
15978
|
+
async pushUmktBackflowEventEx(request: PushUmktBackflowEventRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PushUmktBackflowEventResponse> {
|
|
15979
|
+
Util.validateModel(request);
|
|
15980
|
+
return $tea.cast<PushUmktBackflowEventResponse>(await this.doRequest("1.0", "riskplus.umkt.backflow.event.push", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PushUmktBackflowEventResponse({}));
|
|
15981
|
+
}
|
|
15982
|
+
|
|
15983
|
+
/**
|
|
15984
|
+
* Description: 卡片短信批量发送接口
|
|
15985
|
+
* Summary: 卡片短信批量发送接口
|
|
15986
|
+
*/
|
|
15987
|
+
async sendUmktCardsmsBatch(request: SendUmktCardsmsBatchRequest): Promise<SendUmktCardsmsBatchResponse> {
|
|
15988
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
15989
|
+
let headers : {[key: string ]: string} = { };
|
|
15990
|
+
return await this.sendUmktCardsmsBatchEx(request, headers, runtime);
|
|
15991
|
+
}
|
|
15992
|
+
|
|
15993
|
+
/**
|
|
15994
|
+
* Description: 卡片短信批量发送接口
|
|
15995
|
+
* Summary: 卡片短信批量发送接口
|
|
15996
|
+
*/
|
|
15997
|
+
async sendUmktCardsmsBatchEx(request: SendUmktCardsmsBatchRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<SendUmktCardsmsBatchResponse> {
|
|
15998
|
+
Util.validateModel(request);
|
|
15999
|
+
return $tea.cast<SendUmktCardsmsBatchResponse>(await this.doRequest("1.0", "riskplus.umkt.cardsms.batch.send", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new SendUmktCardsmsBatchResponse({}));
|
|
16000
|
+
}
|
|
16001
|
+
|
|
16002
|
+
/**
|
|
16003
|
+
* Description: 卡片短信支持能力查询
|
|
16004
|
+
* Summary: 卡片短信支持能力查询
|
|
16005
|
+
*/
|
|
16006
|
+
async queryUmktCardsmsSupport(request: QueryUmktCardsmsSupportRequest): Promise<QueryUmktCardsmsSupportResponse> {
|
|
16007
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16008
|
+
let headers : {[key: string ]: string} = { };
|
|
16009
|
+
return await this.queryUmktCardsmsSupportEx(request, headers, runtime);
|
|
16010
|
+
}
|
|
16011
|
+
|
|
16012
|
+
/**
|
|
16013
|
+
* Description: 卡片短信支持能力查询
|
|
16014
|
+
* Summary: 卡片短信支持能力查询
|
|
16015
|
+
*/
|
|
16016
|
+
async queryUmktCardsmsSupportEx(request: QueryUmktCardsmsSupportRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryUmktCardsmsSupportResponse> {
|
|
16017
|
+
Util.validateModel(request);
|
|
16018
|
+
return $tea.cast<QueryUmktCardsmsSupportResponse>(await this.doRequest("1.0", "riskplus.umkt.cardsms.support.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryUmktCardsmsSupportResponse({}));
|
|
16019
|
+
}
|
|
16020
|
+
|
|
15501
16021
|
/**
|
|
15502
16022
|
* Description: 创建HTTP PUT提交的文件上传
|
|
15503
16023
|
* Summary: 文件上传创建
|