@antchain/riskplus 1.12.17 → 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/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
  // 维度名称
@@ -1748,39 +1823,6 @@ export class ZhimaQueryResp extends $tea.Model {
1748
1823
  }
1749
1824
  }
1750
1825
 
1751
- // 企业信息详情
1752
- export class BusinessDetail extends $tea.Model {
1753
- // 经营地址
1754
- operatingAddrJson: string;
1755
- // 社会统一信用代码
1756
- ucCode: string;
1757
- // 注册日期
1758
- registerDate: string;
1759
- // 详细地址
1760
- addressDetail: string;
1761
- static names(): { [key: string]: string } {
1762
- return {
1763
- operatingAddrJson: 'operating_addr_json',
1764
- ucCode: 'uc_code',
1765
- registerDate: 'register_date',
1766
- addressDetail: 'address_detail',
1767
- };
1768
- }
1769
-
1770
- static types(): { [key: string]: any } {
1771
- return {
1772
- operatingAddrJson: 'string',
1773
- ucCode: 'string',
1774
- registerDate: 'string',
1775
- addressDetail: 'string',
1776
- };
1777
- }
1778
-
1779
- constructor(map?: { [key: string]: any }) {
1780
- super(map);
1781
- }
1782
- }
1783
-
1784
1826
  // 机构平台通知响应结果
1785
1827
  export class DefinInnerChannelNotifyResult extends $tea.Model {
1786
1828
  // 请求编号
@@ -2010,6 +2052,43 @@ export class StrategyDetails extends $tea.Model {
2010
2052
  }
2011
2053
  }
2012
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
+
2013
2092
  // 反欺诈风险数据服务决策结果
2014
2093
  export class SecurityResultInfos extends $tea.Model {
2015
2094
  // 反欺诈风险数据服务风险建议决策
@@ -2449,7 +2528,7 @@ export class RpcommonResp extends $tea.Model {
2449
2528
  export class CompanyItems extends $tea.Model {
2450
2529
  // 公司id
2451
2530
  companyId: string;
2452
- // 蚂蚁科技集团股份有限公司
2531
+ // 公司名称
2453
2532
  companyName: string;
2454
2533
  // 匹配名称
2455
2534
  matchingName: string;
@@ -2457,7 +2536,7 @@ export class CompanyItems extends $tea.Model {
2457
2536
  matchingType: string;
2458
2537
  // 匹配值
2459
2538
  matchingValue: string;
2460
- // 返回标识
2539
+ // 社会统一信用代码
2461
2540
  ucCode: string;
2462
2541
  static names(): { [key: string]: string } {
2463
2542
  return {
@@ -2770,6 +2849,37 @@ export class RtopCompanyOpinionCount extends $tea.Model {
2770
2849
  }
2771
2850
  }
2772
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
+
2773
2883
  // 企业地区分布统计
2774
2884
  export class RtopRegionalDistribution extends $tea.Model {
2775
2885
  // 统计值
@@ -6436,12 +6546,15 @@ export class QueryDubbridgeAccountStatusRequest extends $tea.Model {
6436
6546
  customNo?: string;
6437
6547
  // 资产方用户唯一标识(资产方用户唯一标记二选一)
6438
6548
  openId?: string;
6549
+ // 查询业务
6550
+ bizType: string;
6439
6551
  static names(): { [key: string]: string } {
6440
6552
  return {
6441
6553
  authToken: 'auth_token',
6442
6554
  productInstanceId: 'product_instance_id',
6443
6555
  customNo: 'custom_no',
6444
6556
  openId: 'open_id',
6557
+ bizType: 'biz_type',
6445
6558
  };
6446
6559
  }
6447
6560
 
@@ -6451,6 +6564,7 @@ export class QueryDubbridgeAccountStatusRequest extends $tea.Model {
6451
6564
  productInstanceId: 'string',
6452
6565
  customNo: 'string',
6453
6566
  openId: 'string',
6567
+ bizType: 'string',
6454
6568
  };
6455
6569
  }
6456
6570
 
@@ -6468,12 +6582,18 @@ export class QueryDubbridgeAccountStatusResponse extends $tea.Model {
6468
6582
  resultMsg?: string;
6469
6583
  // 授信申请状态
6470
6584
  data?: CustomStatus;
6585
+ // 支付账户签约结果
6586
+ payMethodLockResult?: PayMethodLockResult;
6587
+ // 支付账户锁定结果
6588
+ fundChainLockResult?: FundChainLockResult[];
6471
6589
  static names(): { [key: string]: string } {
6472
6590
  return {
6473
6591
  reqMsgId: 'req_msg_id',
6474
6592
  resultCode: 'result_code',
6475
6593
  resultMsg: 'result_msg',
6476
6594
  data: 'data',
6595
+ payMethodLockResult: 'pay_method_lock_result',
6596
+ fundChainLockResult: 'fund_chain_lock_result',
6477
6597
  };
6478
6598
  }
6479
6599
 
@@ -6483,6 +6603,8 @@ export class QueryDubbridgeAccountStatusResponse extends $tea.Model {
6483
6603
  resultCode: 'string',
6484
6604
  resultMsg: 'string',
6485
6605
  data: CustomStatus,
6606
+ payMethodLockResult: PayMethodLockResult,
6607
+ fundChainLockResult: { 'type': 'array', 'itemType': FundChainLockResult },
6486
6608
  };
6487
6609
  }
6488
6610
 
@@ -7665,14 +7787,14 @@ export class QueryDubbridgeCustomerCommonagreementsignRequest extends $tea.Model
7665
7787
  // 客户编号
7666
7788
  customNo: string;
7667
7789
  // 资金方编号
7668
- fundNo: string;
7790
+ fundCode: string;
7669
7791
  static names(): { [key: string]: string } {
7670
7792
  return {
7671
7793
  authToken: 'auth_token',
7672
7794
  productInstanceId: 'product_instance_id',
7673
7795
  orderNo: 'order_no',
7674
7796
  customNo: 'custom_no',
7675
- fundNo: 'fund_no',
7797
+ fundCode: 'fund_code',
7676
7798
  };
7677
7799
  }
7678
7800
 
@@ -7682,7 +7804,7 @@ export class QueryDubbridgeCustomerCommonagreementsignRequest extends $tea.Model
7682
7804
  productInstanceId: 'string',
7683
7805
  orderNo: 'string',
7684
7806
  customNo: 'string',
7685
- fundNo: 'string',
7807
+ fundCode: 'string',
7686
7808
  };
7687
7809
  }
7688
7810
 
@@ -7889,23 +8011,14 @@ export class UpdateDubbridgeFileResponse extends $tea.Model {
7889
8011
  }
7890
8012
  }
7891
8013
 
7892
- export class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
8014
+ export class QueryDubbridgeCreditUrlRequest extends $tea.Model {
7893
8015
  // OAuth模式下的授权token
7894
8016
  authToken?: string;
7895
8017
  productInstanceId?: string;
7896
- // 需要校验的人姓名
7897
- legalPersonCertName: string;
7898
- // 需要校验的人身份证号
7899
- legalPersonCertNo: string;
7900
- // 认证结束后的商户回调地址。
7901
- merchantUrl: string;
7902
8018
  static names(): { [key: string]: string } {
7903
8019
  return {
7904
8020
  authToken: 'auth_token',
7905
8021
  productInstanceId: 'product_instance_id',
7906
- legalPersonCertName: 'legal_person_cert_name',
7907
- legalPersonCertNo: 'legal_person_cert_no',
7908
- merchantUrl: 'merchant_url',
7909
8022
  };
7910
8023
  }
7911
8024
 
@@ -7913,9 +8026,6 @@ export class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
7913
8026
  return {
7914
8027
  authToken: 'string',
7915
8028
  productInstanceId: 'string',
7916
- legalPersonCertName: 'string',
7917
- legalPersonCertNo: 'string',
7918
- merchantUrl: 'string',
7919
8029
  };
7920
8030
  }
7921
8031
 
@@ -7924,21 +8034,18 @@ export class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
7924
8034
  }
7925
8035
  }
7926
8036
 
7927
- export class VerifyFinserviceZhimaIdentifyResponse extends $tea.Model {
8037
+ export class QueryDubbridgeCreditUrlResponse extends $tea.Model {
7928
8038
  // 请求唯一ID,用于链路跟踪和问题排查
7929
8039
  reqMsgId?: string;
7930
8040
  // 结果码,一般OK表示调用成功
7931
8041
  resultCode?: string;
7932
8042
  // 异常信息的文本描述
7933
8043
  resultMsg?: string;
7934
- // 本次认证的唯一标识,商户需要记录,后续的操作都需要用到。
7935
- data?: ZhimaIdentifyResp;
7936
8044
  static names(): { [key: string]: string } {
7937
8045
  return {
7938
8046
  reqMsgId: 'req_msg_id',
7939
8047
  resultCode: 'result_code',
7940
8048
  resultMsg: 'result_msg',
7941
- data: 'data',
7942
8049
  };
7943
8050
  }
7944
8051
 
@@ -7947,7 +8054,6 @@ export class VerifyFinserviceZhimaIdentifyResponse extends $tea.Model {
7947
8054
  reqMsgId: 'string',
7948
8055
  resultCode: 'string',
7949
8056
  resultMsg: 'string',
7950
- data: ZhimaIdentifyResp,
7951
8057
  };
7952
8058
  }
7953
8059
 
@@ -7956,17 +8062,17 @@ export class VerifyFinserviceZhimaIdentifyResponse extends $tea.Model {
7956
8062
  }
7957
8063
  }
7958
8064
 
7959
- export class QueryFinserviceZhimaIdentifyRequest extends $tea.Model {
8065
+ export class QueryDubbridgeBusinessDetailRequest extends $tea.Model {
7960
8066
  // OAuth模式下的授权token
7961
8067
  authToken?: string;
7962
8068
  productInstanceId?: string;
7963
- // 初始化时候返回的唯一标识
7964
- bizNo: string;
8069
+ // 查询字段(注册号,社会统一信用代码,公司名称)
8070
+ keyword: string;
7965
8071
  static names(): { [key: string]: string } {
7966
8072
  return {
7967
8073
  authToken: 'auth_token',
7968
8074
  productInstanceId: 'product_instance_id',
7969
- bizNo: 'biz_no',
8075
+ keyword: 'keyword',
7970
8076
  };
7971
8077
  }
7972
8078
 
@@ -7974,7 +8080,7 @@ export class QueryFinserviceZhimaIdentifyRequest extends $tea.Model {
7974
8080
  return {
7975
8081
  authToken: 'string',
7976
8082
  productInstanceId: 'string',
7977
- bizNo: 'string',
8083
+ keyword: 'string',
7978
8084
  };
7979
8085
  }
7980
8086
 
@@ -7983,21 +8089,30 @@ export class QueryFinserviceZhimaIdentifyRequest extends $tea.Model {
7983
8089
  }
7984
8090
  }
7985
8091
 
7986
- export class QueryFinserviceZhimaIdentifyResponse extends $tea.Model {
8092
+ export class QueryDubbridgeBusinessDetailResponse extends $tea.Model {
7987
8093
  // 请求唯一ID,用于链路跟踪和问题排查
7988
8094
  reqMsgId?: string;
7989
8095
  // 结果码,一般OK表示调用成功
7990
8096
  resultCode?: string;
7991
8097
  // 异常信息的文本描述
7992
8098
  resultMsg?: string;
7993
- //
7994
- data?: ZhimaQueryResp;
8099
+ // 社会统一信用代码
8100
+ ucCode?: string;
8101
+ // 注册日期
8102
+ registerDate?: string;
8103
+ // 经营地址
8104
+ operatingAddrJson?: string;
8105
+ // 详细地址
8106
+ addressDetail?: string;
7995
8107
  static names(): { [key: string]: string } {
7996
8108
  return {
7997
8109
  reqMsgId: 'req_msg_id',
7998
8110
  resultCode: 'result_code',
7999
8111
  resultMsg: 'result_msg',
8000
- data: 'data',
8112
+ ucCode: 'uc_code',
8113
+ registerDate: 'register_date',
8114
+ operatingAddrJson: 'operating_addr_json',
8115
+ addressDetail: 'address_detail',
8001
8116
  };
8002
8117
  }
8003
8118
 
@@ -8006,7 +8121,10 @@ export class QueryFinserviceZhimaIdentifyResponse extends $tea.Model {
8006
8121
  reqMsgId: 'string',
8007
8122
  resultCode: 'string',
8008
8123
  resultMsg: 'string',
8009
- data: ZhimaQueryResp,
8124
+ ucCode: 'string',
8125
+ registerDate: 'string',
8126
+ operatingAddrJson: 'string',
8127
+ addressDetail: 'string',
8010
8128
  };
8011
8129
  }
8012
8130
 
@@ -8015,20 +8133,23 @@ export class QueryFinserviceZhimaIdentifyResponse extends $tea.Model {
8015
8133
  }
8016
8134
  }
8017
8135
 
8018
- export class QueryMdipDataserviceRequest extends $tea.Model {
8136
+ export class NotifyDubbridgeCallbackRequest extends $tea.Model {
8019
8137
  // OAuth模式下的授权token
8020
8138
  authToken?: string;
8021
8139
  productInstanceId?: string;
8022
- // 服务编码
8023
- serviceCode: string;
8024
- // 服务参数
8025
- serviceParam: string;
8140
+ // 租户id
8141
+ channelCode: string;
8142
+ // json参数
8143
+ bizParam: string;
8144
+ // 回调类型(1授信回调2用信回调)
8145
+ bizType: string;
8026
8146
  static names(): { [key: string]: string } {
8027
8147
  return {
8028
8148
  authToken: 'auth_token',
8029
8149
  productInstanceId: 'product_instance_id',
8030
- serviceCode: 'service_code',
8031
- serviceParam: 'service_param',
8150
+ channelCode: 'channel_code',
8151
+ bizParam: 'biz_param',
8152
+ bizType: 'biz_type',
8032
8153
  };
8033
8154
  }
8034
8155
 
@@ -8036,8 +8157,9 @@ export class QueryMdipDataserviceRequest extends $tea.Model {
8036
8157
  return {
8037
8158
  authToken: 'string',
8038
8159
  productInstanceId: 'string',
8039
- serviceCode: 'string',
8040
- serviceParam: 'string',
8160
+ channelCode: 'string',
8161
+ bizParam: 'string',
8162
+ bizType: 'string',
8041
8163
  };
8042
8164
  }
8043
8165
 
@@ -8046,15 +8168,16 @@ export class QueryMdipDataserviceRequest extends $tea.Model {
8046
8168
  }
8047
8169
  }
8048
8170
 
8049
- export class QueryMdipDataserviceResponse extends $tea.Model {
8171
+ export class NotifyDubbridgeCallbackResponse extends $tea.Model {
8050
8172
  // 请求唯一ID,用于链路跟踪和问题排查
8051
8173
  reqMsgId?: string;
8052
8174
  // 结果码,一般OK表示调用成功
8053
8175
  resultCode?: string;
8054
8176
  // 异常信息的文本描述
8055
8177
  resultMsg?: string;
8056
- // 多源查询结果值
8057
- data?: string;
8178
+ //
8179
+ // 处理结果
8180
+ data?: CommonNotyfyResult;
8058
8181
  static names(): { [key: string]: string } {
8059
8182
  return {
8060
8183
  reqMsgId: 'req_msg_id',
@@ -8069,7 +8192,7 @@ export class QueryMdipDataserviceResponse extends $tea.Model {
8069
8192
  reqMsgId: 'string',
8070
8193
  resultCode: 'string',
8071
8194
  resultMsg: 'string',
8072
- data: 'string',
8195
+ data: CommonNotyfyResult,
8073
8196
  };
8074
8197
  }
8075
8198
 
@@ -8078,21 +8201,23 @@ export class QueryMdipDataserviceResponse extends $tea.Model {
8078
8201
  }
8079
8202
  }
8080
8203
 
8081
- export class ReceiveMdipParamsFileRequest extends $tea.Model {
8204
+ export class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
8082
8205
  // OAuth模式下的授权token
8083
8206
  authToken?: string;
8084
8207
  productInstanceId?: string;
8085
- // file_id
8086
- fileObject?: Readable;
8087
- fileObjectName?: string;
8088
- fileId: string;
8208
+ // 需要校验的人姓名
8209
+ legalPersonCertName: string;
8210
+ // 需要校验的人身份证号
8211
+ legalPersonCertNo: string;
8212
+ // 认证结束后的商户回调地址。
8213
+ merchantUrl: string;
8089
8214
  static names(): { [key: string]: string } {
8090
8215
  return {
8091
8216
  authToken: 'auth_token',
8092
8217
  productInstanceId: 'product_instance_id',
8093
- fileObject: 'fileObject',
8094
- fileObjectName: 'fileObjectName',
8095
- fileId: 'file_id',
8218
+ legalPersonCertName: 'legal_person_cert_name',
8219
+ legalPersonCertNo: 'legal_person_cert_no',
8220
+ merchantUrl: 'merchant_url',
8096
8221
  };
8097
8222
  }
8098
8223
 
@@ -8100,9 +8225,9 @@ export class ReceiveMdipParamsFileRequest extends $tea.Model {
8100
8225
  return {
8101
8226
  authToken: 'string',
8102
8227
  productInstanceId: 'string',
8103
- fileObject: 'Readable',
8104
- fileObjectName: 'string',
8105
- fileId: 'string',
8228
+ legalPersonCertName: 'string',
8229
+ legalPersonCertNo: 'string',
8230
+ merchantUrl: 'string',
8106
8231
  };
8107
8232
  }
8108
8233
 
@@ -8111,21 +8236,21 @@ export class ReceiveMdipParamsFileRequest extends $tea.Model {
8111
8236
  }
8112
8237
  }
8113
8238
 
8114
- export class ReceiveMdipParamsFileResponse extends $tea.Model {
8239
+ export class VerifyFinserviceZhimaIdentifyResponse extends $tea.Model {
8115
8240
  // 请求唯一ID,用于链路跟踪和问题排查
8116
8241
  reqMsgId?: string;
8117
8242
  // 结果码,一般OK表示调用成功
8118
8243
  resultCode?: string;
8119
8244
  // 异常信息的文本描述
8120
8245
  resultMsg?: string;
8121
- // 文件上传结果
8122
- content?: RuntimeResult;
8246
+ // 本次认证的唯一标识,商户需要记录,后续的操作都需要用到。
8247
+ data?: ZhimaIdentifyResp;
8123
8248
  static names(): { [key: string]: string } {
8124
8249
  return {
8125
8250
  reqMsgId: 'req_msg_id',
8126
8251
  resultCode: 'result_code',
8127
8252
  resultMsg: 'result_msg',
8128
- content: 'content',
8253
+ data: 'data',
8129
8254
  };
8130
8255
  }
8131
8256
 
@@ -8134,7 +8259,7 @@ export class ReceiveMdipParamsFileResponse extends $tea.Model {
8134
8259
  reqMsgId: 'string',
8135
8260
  resultCode: 'string',
8136
8261
  resultMsg: 'string',
8137
- content: RuntimeResult,
8262
+ data: ZhimaIdentifyResp,
8138
8263
  };
8139
8264
  }
8140
8265
 
@@ -8143,23 +8268,17 @@ export class ReceiveMdipParamsFileResponse extends $tea.Model {
8143
8268
  }
8144
8269
  }
8145
8270
 
8146
- export class QueryRbbGenericInvokeRequest extends $tea.Model {
8271
+ export class QueryFinserviceZhimaIdentifyRequest extends $tea.Model {
8147
8272
  // OAuth模式下的授权token
8148
8273
  authToken?: string;
8149
8274
  productInstanceId?: string;
8150
- // {"platformId":1234,"method":"riskQuery"}
8151
- content: string;
8152
- // 账号的所有权限点,逗号分隔
8153
- permission: string;
8154
- // 标题备用
8155
- title: string;
8275
+ // 初始化时候返回的唯一标识
8276
+ bizNo: string;
8156
8277
  static names(): { [key: string]: string } {
8157
8278
  return {
8158
8279
  authToken: 'auth_token',
8159
8280
  productInstanceId: 'product_instance_id',
8160
- content: 'content',
8161
- permission: 'permission',
8162
- title: 'title',
8281
+ bizNo: 'biz_no',
8163
8282
  };
8164
8283
  }
8165
8284
 
@@ -8167,9 +8286,7 @@ export class QueryRbbGenericInvokeRequest extends $tea.Model {
8167
8286
  return {
8168
8287
  authToken: 'string',
8169
8288
  productInstanceId: 'string',
8170
- content: 'string',
8171
- permission: 'string',
8172
- title: 'string',
8289
+ bizNo: 'string',
8173
8290
  };
8174
8291
  }
8175
8292
 
@@ -8178,7 +8295,202 @@ export class QueryRbbGenericInvokeRequest extends $tea.Model {
8178
8295
  }
8179
8296
  }
8180
8297
 
8181
- export class QueryRbbGenericInvokeResponse extends $tea.Model {
8298
+ export class QueryFinserviceZhimaIdentifyResponse extends $tea.Model {
8299
+ // 请求唯一ID,用于链路跟踪和问题排查
8300
+ reqMsgId?: string;
8301
+ // 结果码,一般OK表示调用成功
8302
+ resultCode?: string;
8303
+ // 异常信息的文本描述
8304
+ resultMsg?: string;
8305
+ //
8306
+ data?: ZhimaQueryResp;
8307
+ static names(): { [key: string]: string } {
8308
+ return {
8309
+ reqMsgId: 'req_msg_id',
8310
+ resultCode: 'result_code',
8311
+ resultMsg: 'result_msg',
8312
+ data: 'data',
8313
+ };
8314
+ }
8315
+
8316
+ static types(): { [key: string]: any } {
8317
+ return {
8318
+ reqMsgId: 'string',
8319
+ resultCode: 'string',
8320
+ resultMsg: 'string',
8321
+ data: ZhimaQueryResp,
8322
+ };
8323
+ }
8324
+
8325
+ constructor(map?: { [key: string]: any }) {
8326
+ super(map);
8327
+ }
8328
+ }
8329
+
8330
+ export class QueryMdipDataserviceRequest extends $tea.Model {
8331
+ // OAuth模式下的授权token
8332
+ authToken?: string;
8333
+ productInstanceId?: string;
8334
+ // 服务编码
8335
+ serviceCode: string;
8336
+ // 服务参数
8337
+ serviceParam: string;
8338
+ static names(): { [key: string]: string } {
8339
+ return {
8340
+ authToken: 'auth_token',
8341
+ productInstanceId: 'product_instance_id',
8342
+ serviceCode: 'service_code',
8343
+ serviceParam: 'service_param',
8344
+ };
8345
+ }
8346
+
8347
+ static types(): { [key: string]: any } {
8348
+ return {
8349
+ authToken: 'string',
8350
+ productInstanceId: 'string',
8351
+ serviceCode: 'string',
8352
+ serviceParam: 'string',
8353
+ };
8354
+ }
8355
+
8356
+ constructor(map?: { [key: string]: any }) {
8357
+ super(map);
8358
+ }
8359
+ }
8360
+
8361
+ export class QueryMdipDataserviceResponse extends $tea.Model {
8362
+ // 请求唯一ID,用于链路跟踪和问题排查
8363
+ reqMsgId?: string;
8364
+ // 结果码,一般OK表示调用成功
8365
+ resultCode?: string;
8366
+ // 异常信息的文本描述
8367
+ resultMsg?: string;
8368
+ // 多源查询结果值
8369
+ data?: string;
8370
+ static names(): { [key: string]: string } {
8371
+ return {
8372
+ reqMsgId: 'req_msg_id',
8373
+ resultCode: 'result_code',
8374
+ resultMsg: 'result_msg',
8375
+ data: 'data',
8376
+ };
8377
+ }
8378
+
8379
+ static types(): { [key: string]: any } {
8380
+ return {
8381
+ reqMsgId: 'string',
8382
+ resultCode: 'string',
8383
+ resultMsg: 'string',
8384
+ data: 'string',
8385
+ };
8386
+ }
8387
+
8388
+ constructor(map?: { [key: string]: any }) {
8389
+ super(map);
8390
+ }
8391
+ }
8392
+
8393
+ export class ReceiveMdipParamsFileRequest extends $tea.Model {
8394
+ // OAuth模式下的授权token
8395
+ authToken?: string;
8396
+ productInstanceId?: string;
8397
+ // file_id
8398
+ fileObject?: Readable;
8399
+ fileObjectName?: string;
8400
+ fileId: string;
8401
+ static names(): { [key: string]: string } {
8402
+ return {
8403
+ authToken: 'auth_token',
8404
+ productInstanceId: 'product_instance_id',
8405
+ fileObject: 'fileObject',
8406
+ fileObjectName: 'fileObjectName',
8407
+ fileId: 'file_id',
8408
+ };
8409
+ }
8410
+
8411
+ static types(): { [key: string]: any } {
8412
+ return {
8413
+ authToken: 'string',
8414
+ productInstanceId: 'string',
8415
+ fileObject: 'Readable',
8416
+ fileObjectName: 'string',
8417
+ fileId: 'string',
8418
+ };
8419
+ }
8420
+
8421
+ constructor(map?: { [key: string]: any }) {
8422
+ super(map);
8423
+ }
8424
+ }
8425
+
8426
+ export class ReceiveMdipParamsFileResponse extends $tea.Model {
8427
+ // 请求唯一ID,用于链路跟踪和问题排查
8428
+ reqMsgId?: string;
8429
+ // 结果码,一般OK表示调用成功
8430
+ resultCode?: string;
8431
+ // 异常信息的文本描述
8432
+ resultMsg?: string;
8433
+ // 文件上传结果
8434
+ content?: RuntimeResult;
8435
+ static names(): { [key: string]: string } {
8436
+ return {
8437
+ reqMsgId: 'req_msg_id',
8438
+ resultCode: 'result_code',
8439
+ resultMsg: 'result_msg',
8440
+ content: 'content',
8441
+ };
8442
+ }
8443
+
8444
+ static types(): { [key: string]: any } {
8445
+ return {
8446
+ reqMsgId: 'string',
8447
+ resultCode: 'string',
8448
+ resultMsg: 'string',
8449
+ content: RuntimeResult,
8450
+ };
8451
+ }
8452
+
8453
+ constructor(map?: { [key: string]: any }) {
8454
+ super(map);
8455
+ }
8456
+ }
8457
+
8458
+ export class QueryRbbGenericInvokeRequest extends $tea.Model {
8459
+ // OAuth模式下的授权token
8460
+ authToken?: string;
8461
+ productInstanceId?: string;
8462
+ // {"platformId":1234,"method":"riskQuery"}
8463
+ content: string;
8464
+ // 账号的所有权限点,逗号分隔
8465
+ permission: string;
8466
+ // 标题备用
8467
+ title: string;
8468
+ static names(): { [key: string]: string } {
8469
+ return {
8470
+ authToken: 'auth_token',
8471
+ productInstanceId: 'product_instance_id',
8472
+ content: 'content',
8473
+ permission: 'permission',
8474
+ title: 'title',
8475
+ };
8476
+ }
8477
+
8478
+ static types(): { [key: string]: any } {
8479
+ return {
8480
+ authToken: 'string',
8481
+ productInstanceId: 'string',
8482
+ content: 'string',
8483
+ permission: 'string',
8484
+ title: 'string',
8485
+ };
8486
+ }
8487
+
8488
+ constructor(map?: { [key: string]: any }) {
8489
+ super(map);
8490
+ }
8491
+ }
8492
+
8493
+ export class QueryRbbGenericInvokeResponse extends $tea.Model {
8182
8494
  // 请求唯一ID,用于链路跟踪和问题排查
8183
8495
  reqMsgId?: string;
8184
8496
  // 结果码,一般OK表示调用成功
@@ -12687,6 +12999,298 @@ export class CancelUmktDataaccessOfflinetaskResponse extends $tea.Model {
12687
12999
  }
12688
13000
  }
12689
13001
 
13002
+ export class QueryUmktRtMarketingRequest extends $tea.Model {
13003
+ // OAuth模式下的授权token
13004
+ authToken?: string;
13005
+ productInstanceId?: string;
13006
+ // 场景策略id,决策重点
13007
+ sceneStrategyId: number;
13008
+ // 用户凭证模版
13009
+ queryTemplate: string;
13010
+ // 用户查询凭证
13011
+ customerKey: string;
13012
+ // 业务流水号
13013
+ bizSerialNo: string;
13014
+ static names(): { [key: string]: string } {
13015
+ return {
13016
+ authToken: 'auth_token',
13017
+ productInstanceId: 'product_instance_id',
13018
+ sceneStrategyId: 'scene_strategy_id',
13019
+ queryTemplate: 'query_template',
13020
+ customerKey: 'customer_key',
13021
+ bizSerialNo: 'biz_serial_no',
13022
+ };
13023
+ }
13024
+
13025
+ static types(): { [key: string]: any } {
13026
+ return {
13027
+ authToken: 'string',
13028
+ productInstanceId: 'string',
13029
+ sceneStrategyId: 'number',
13030
+ queryTemplate: 'string',
13031
+ customerKey: 'string',
13032
+ bizSerialNo: 'string',
13033
+ };
13034
+ }
13035
+
13036
+ constructor(map?: { [key: string]: any }) {
13037
+ super(map);
13038
+ }
13039
+ }
13040
+
13041
+ export class QueryUmktRtMarketingResponse extends $tea.Model {
13042
+ // 请求唯一ID,用于链路跟踪和问题排查
13043
+ reqMsgId?: string;
13044
+ // 结果码,一般OK表示调用成功
13045
+ resultCode?: string;
13046
+ // 异常信息的文本描述
13047
+ resultMsg?: string;
13048
+ // 实时单个营销结果
13049
+ queryResult?: CustomerUmktInfoModel;
13050
+ static names(): { [key: string]: string } {
13051
+ return {
13052
+ reqMsgId: 'req_msg_id',
13053
+ resultCode: 'result_code',
13054
+ resultMsg: 'result_msg',
13055
+ queryResult: 'query_result',
13056
+ };
13057
+ }
13058
+
13059
+ static types(): { [key: string]: any } {
13060
+ return {
13061
+ reqMsgId: 'string',
13062
+ resultCode: 'string',
13063
+ resultMsg: 'string',
13064
+ queryResult: CustomerUmktInfoModel,
13065
+ };
13066
+ }
13067
+
13068
+ constructor(map?: { [key: string]: any }) {
13069
+ super(map);
13070
+ }
13071
+ }
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
+
12690
13294
  export class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
12691
13295
  // OAuth模式下的授权token
12692
13296
  authToken?: string;
@@ -12888,7 +13492,7 @@ export default class Client {
12888
13492
  req_msg_id: AntchainUtil.getNonce(),
12889
13493
  access_key: this._accessKeyId,
12890
13494
  base_sdk_version: "TeaSDK-2.0",
12891
- sdk_version: "1.12.17",
13495
+ sdk_version: "1.13.3",
12892
13496
  _prod_code: "RISKPLUS",
12893
13497
  _prod_channel: "undefined",
12894
13498
  };
@@ -14040,6 +14644,63 @@ export default class Client {
14040
14644
  return $tea.cast<UpdateDubbridgeFileResponse>(await this.doRequest("1.0", "riskplus.dubbridge.file.update", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UpdateDubbridgeFileResponse({}));
14041
14645
  }
14042
14646
 
14647
+ /**
14648
+ * Description: 天枢系统获取授信H5地址
14649
+ * Summary: 天枢系统获取授信H5地址
14650
+ */
14651
+ async queryDubbridgeCreditUrl(request: QueryDubbridgeCreditUrlRequest): Promise<QueryDubbridgeCreditUrlResponse> {
14652
+ let runtime = new $Util.RuntimeOptions({ });
14653
+ let headers : {[key: string ]: string} = { };
14654
+ return await this.queryDubbridgeCreditUrlEx(request, headers, runtime);
14655
+ }
14656
+
14657
+ /**
14658
+ * Description: 天枢系统获取授信H5地址
14659
+ * Summary: 天枢系统获取授信H5地址
14660
+ */
14661
+ async queryDubbridgeCreditUrlEx(request: QueryDubbridgeCreditUrlRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeCreditUrlResponse> {
14662
+ Util.validateModel(request);
14663
+ 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({}));
14664
+ }
14665
+
14666
+ /**
14667
+ * Description: 根据关键字从第三方查询企业详情信息
14668
+ * Summary: 天枢系统企业详情信息查询
14669
+ */
14670
+ async queryDubbridgeBusinessDetail(request: QueryDubbridgeBusinessDetailRequest): Promise<QueryDubbridgeBusinessDetailResponse> {
14671
+ let runtime = new $Util.RuntimeOptions({ });
14672
+ let headers : {[key: string ]: string} = { };
14673
+ return await this.queryDubbridgeBusinessDetailEx(request, headers, runtime);
14674
+ }
14675
+
14676
+ /**
14677
+ * Description: 根据关键字从第三方查询企业详情信息
14678
+ * Summary: 天枢系统企业详情信息查询
14679
+ */
14680
+ async queryDubbridgeBusinessDetailEx(request: QueryDubbridgeBusinessDetailRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeBusinessDetailResponse> {
14681
+ Util.validateModel(request);
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({}));
14683
+ }
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
+
14043
14704
  /**
14044
14705
  * Description: 四要素认证首先调用此接口
14045
14706
  * Summary: 芝麻四要素接口
@@ -15281,6 +15942,82 @@ export default class Client {
15281
15942
  return $tea.cast<CancelUmktDataaccessOfflinetaskResponse>(await this.doRequest("1.0", "riskplus.umkt.dataaccess.offlinetask.cancel", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CancelUmktDataaccessOfflinetaskResponse({}));
15282
15943
  }
15283
15944
 
15945
+ /**
15946
+ * Description: 营销盾实时单一凭证营销接口,服务于近rta的场景
15947
+ * Summary: 营销盾实时单一凭证营销接口
15948
+ */
15949
+ async queryUmktRtMarketing(request: QueryUmktRtMarketingRequest): Promise<QueryUmktRtMarketingResponse> {
15950
+ let runtime = new $Util.RuntimeOptions({ });
15951
+ let headers : {[key: string ]: string} = { };
15952
+ return await this.queryUmktRtMarketingEx(request, headers, runtime);
15953
+ }
15954
+
15955
+ /**
15956
+ * Description: 营销盾实时单一凭证营销接口,服务于近rta的场景
15957
+ * Summary: 营销盾实时单一凭证营销接口
15958
+ */
15959
+ async queryUmktRtMarketingEx(request: QueryUmktRtMarketingRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryUmktRtMarketingResponse> {
15960
+ Util.validateModel(request);
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({}));
15962
+ }
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
+
15284
16021
  /**
15285
16022
  * Description: 创建HTTP PUT提交的文件上传
15286
16023
  * Summary: 文件上传创建