@antchain/riskplus 1.12.16 → 1.12.19

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antchain/riskplus",
3
- "version": "1.12.16",
3
+ "version": "1.12.19",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -2412,6 +2412,47 @@ export class RpcommonResp extends $tea.Model {
2412
2412
  }
2413
2413
  }
2414
2414
 
2415
+ // 公司列表
2416
+ export class CompanyItems extends $tea.Model {
2417
+ // 公司id
2418
+ companyId: string;
2419
+ // 蚂蚁科技集团股份有限公司
2420
+ companyName: string;
2421
+ // 匹配名称
2422
+ matchingName: string;
2423
+ // 匹配类型
2424
+ matchingType: string;
2425
+ // 匹配值
2426
+ matchingValue: string;
2427
+ // 返回标识
2428
+ ucCode: string;
2429
+ static names(): { [key: string]: string } {
2430
+ return {
2431
+ companyId: 'company_id',
2432
+ companyName: 'company_name',
2433
+ matchingName: 'matching_name',
2434
+ matchingType: 'matching_type',
2435
+ matchingValue: 'matching_value',
2436
+ ucCode: 'uc_code',
2437
+ };
2438
+ }
2439
+
2440
+ static types(): { [key: string]: any } {
2441
+ return {
2442
+ companyId: 'string',
2443
+ companyName: 'string',
2444
+ matchingName: 'string',
2445
+ matchingType: 'string',
2446
+ matchingValue: 'string',
2447
+ ucCode: 'string',
2448
+ };
2449
+ }
2450
+
2451
+ constructor(map?: { [key: string]: any }) {
2452
+ super(map);
2453
+ }
2454
+ }
2455
+
2415
2456
  // 标签图片
2416
2457
  export class RtopTagImage extends $tea.Model {
2417
2458
  // 标签图片表主键
@@ -7582,6 +7623,361 @@ export class QueryDubbridgeReceiptStatusResponse extends $tea.Model {
7582
7623
  }
7583
7624
  }
7584
7625
 
7626
+ export class QueryDubbridgeCustomerCommonagreementsignRequest extends $tea.Model {
7627
+ // OAuth模式下的授权token
7628
+ authToken?: string;
7629
+ productInstanceId?: string;
7630
+ // 订单号
7631
+ orderNo: string;
7632
+ // 客户编号
7633
+ customNo: string;
7634
+ // 资金方编号
7635
+ fundCode: string;
7636
+ static names(): { [key: string]: string } {
7637
+ return {
7638
+ authToken: 'auth_token',
7639
+ productInstanceId: 'product_instance_id',
7640
+ orderNo: 'order_no',
7641
+ customNo: 'custom_no',
7642
+ fundCode: 'fund_code',
7643
+ };
7644
+ }
7645
+
7646
+ static types(): { [key: string]: any } {
7647
+ return {
7648
+ authToken: 'string',
7649
+ productInstanceId: 'string',
7650
+ orderNo: 'string',
7651
+ customNo: 'string',
7652
+ fundCode: 'string',
7653
+ };
7654
+ }
7655
+
7656
+ constructor(map?: { [key: string]: any }) {
7657
+ super(map);
7658
+ }
7659
+ }
7660
+
7661
+ export class QueryDubbridgeCustomerCommonagreementsignResponse extends $tea.Model {
7662
+ // 请求唯一ID,用于链路跟踪和问题排查
7663
+ reqMsgId?: string;
7664
+ // 结果码,一般OK表示调用成功
7665
+ resultCode?: string;
7666
+ // 异常信息的文本描述
7667
+ resultMsg?: string;
7668
+ // 客户编号
7669
+ customNo?: string;
7670
+ // 客户名称
7671
+ customName?: string;
7672
+ // 流水号
7673
+ transSerials?: string;
7674
+ // 签约状态
7675
+ status?: string;
7676
+ // 签约用户唯一标识
7677
+ accountUserId?: string;
7678
+ // 脱敏的签约账号
7679
+ accountNo?: string;
7680
+ // 协议号
7681
+ protocolNo?: string;
7682
+ // 协议签约时间
7683
+ signTime?: string;
7684
+ // 协议生效时间
7685
+ validTime?: string;
7686
+ // 协议失效时间
7687
+ invalidTime?: string;
7688
+ static names(): { [key: string]: string } {
7689
+ return {
7690
+ reqMsgId: 'req_msg_id',
7691
+ resultCode: 'result_code',
7692
+ resultMsg: 'result_msg',
7693
+ customNo: 'custom_no',
7694
+ customName: 'custom_name',
7695
+ transSerials: 'trans_serials',
7696
+ status: 'status',
7697
+ accountUserId: 'account_user_id',
7698
+ accountNo: 'account_no',
7699
+ protocolNo: 'protocol_no',
7700
+ signTime: 'sign_time',
7701
+ validTime: 'valid_time',
7702
+ invalidTime: 'invalid_time',
7703
+ };
7704
+ }
7705
+
7706
+ static types(): { [key: string]: any } {
7707
+ return {
7708
+ reqMsgId: 'string',
7709
+ resultCode: 'string',
7710
+ resultMsg: 'string',
7711
+ customNo: 'string',
7712
+ customName: 'string',
7713
+ transSerials: 'string',
7714
+ status: 'string',
7715
+ accountUserId: 'string',
7716
+ accountNo: 'string',
7717
+ protocolNo: 'string',
7718
+ signTime: 'string',
7719
+ validTime: 'string',
7720
+ invalidTime: 'string',
7721
+ };
7722
+ }
7723
+
7724
+ constructor(map?: { [key: string]: any }) {
7725
+ super(map);
7726
+ }
7727
+ }
7728
+
7729
+ export class QueryDubbridgeCompanyItemsRequest extends $tea.Model {
7730
+ // OAuth模式下的授权token
7731
+ authToken?: string;
7732
+ productInstanceId?: string;
7733
+ // 查询字段(公司名、产品名、平台名等不能为空)
7734
+ keyword: string;
7735
+ static names(): { [key: string]: string } {
7736
+ return {
7737
+ authToken: 'auth_token',
7738
+ productInstanceId: 'product_instance_id',
7739
+ keyword: 'keyword',
7740
+ };
7741
+ }
7742
+
7743
+ static types(): { [key: string]: any } {
7744
+ return {
7745
+ authToken: 'string',
7746
+ productInstanceId: 'string',
7747
+ keyword: 'string',
7748
+ };
7749
+ }
7750
+
7751
+ constructor(map?: { [key: string]: any }) {
7752
+ super(map);
7753
+ }
7754
+ }
7755
+
7756
+ export class QueryDubbridgeCompanyItemsResponse extends $tea.Model {
7757
+ // 请求唯一ID,用于链路跟踪和问题排查
7758
+ reqMsgId?: string;
7759
+ // 结果码,一般OK表示调用成功
7760
+ resultCode?: string;
7761
+ // 异常信息的文本描述
7762
+ resultMsg?: string;
7763
+ // 返回公司列表
7764
+ businessItems?: CompanyItems[];
7765
+ // 企业信息个数
7766
+ total?: number;
7767
+ static names(): { [key: string]: string } {
7768
+ return {
7769
+ reqMsgId: 'req_msg_id',
7770
+ resultCode: 'result_code',
7771
+ resultMsg: 'result_msg',
7772
+ businessItems: 'business_items',
7773
+ total: 'total',
7774
+ };
7775
+ }
7776
+
7777
+ static types(): { [key: string]: any } {
7778
+ return {
7779
+ reqMsgId: 'string',
7780
+ resultCode: 'string',
7781
+ resultMsg: 'string',
7782
+ businessItems: { 'type': 'array', 'itemType': CompanyItems },
7783
+ total: 'number',
7784
+ };
7785
+ }
7786
+
7787
+ constructor(map?: { [key: string]: any }) {
7788
+ super(map);
7789
+ }
7790
+ }
7791
+
7792
+ export class UpdateDubbridgeFileRequest extends $tea.Model {
7793
+ // OAuth模式下的授权token
7794
+ authToken?: string;
7795
+ productInstanceId?: string;
7796
+ // 订单号
7797
+ orderNo: string;
7798
+ // 授信申请订单号(资产方)
7799
+ originalOrderNo: string;
7800
+ // 客户编号
7801
+ customNo: string;
7802
+ // 资料文件
7803
+ materials: Material[];
7804
+ static names(): { [key: string]: string } {
7805
+ return {
7806
+ authToken: 'auth_token',
7807
+ productInstanceId: 'product_instance_id',
7808
+ orderNo: 'order_no',
7809
+ originalOrderNo: 'original_order_no',
7810
+ customNo: 'custom_no',
7811
+ materials: 'materials',
7812
+ };
7813
+ }
7814
+
7815
+ static types(): { [key: string]: any } {
7816
+ return {
7817
+ authToken: 'string',
7818
+ productInstanceId: 'string',
7819
+ orderNo: 'string',
7820
+ originalOrderNo: 'string',
7821
+ customNo: 'string',
7822
+ materials: { 'type': 'array', 'itemType': Material },
7823
+ };
7824
+ }
7825
+
7826
+ constructor(map?: { [key: string]: any }) {
7827
+ super(map);
7828
+ }
7829
+ }
7830
+
7831
+ export class UpdateDubbridgeFileResponse extends $tea.Model {
7832
+ // 请求唯一ID,用于链路跟踪和问题排查
7833
+ reqMsgId?: string;
7834
+ // 结果码,一般OK表示调用成功
7835
+ resultCode?: string;
7836
+ // 异常信息的文本描述
7837
+ resultMsg?: string;
7838
+ static names(): { [key: string]: string } {
7839
+ return {
7840
+ reqMsgId: 'req_msg_id',
7841
+ resultCode: 'result_code',
7842
+ resultMsg: 'result_msg',
7843
+ };
7844
+ }
7845
+
7846
+ static types(): { [key: string]: any } {
7847
+ return {
7848
+ reqMsgId: 'string',
7849
+ resultCode: 'string',
7850
+ resultMsg: 'string',
7851
+ };
7852
+ }
7853
+
7854
+ constructor(map?: { [key: string]: any }) {
7855
+ super(map);
7856
+ }
7857
+ }
7858
+
7859
+ export class QueryDubbridgeCreditUrlRequest extends $tea.Model {
7860
+ // OAuth模式下的授权token
7861
+ authToken?: string;
7862
+ productInstanceId?: string;
7863
+ static names(): { [key: string]: string } {
7864
+ return {
7865
+ authToken: 'auth_token',
7866
+ productInstanceId: 'product_instance_id',
7867
+ };
7868
+ }
7869
+
7870
+ static types(): { [key: string]: any } {
7871
+ return {
7872
+ authToken: 'string',
7873
+ productInstanceId: 'string',
7874
+ };
7875
+ }
7876
+
7877
+ constructor(map?: { [key: string]: any }) {
7878
+ super(map);
7879
+ }
7880
+ }
7881
+
7882
+ export class QueryDubbridgeCreditUrlResponse extends $tea.Model {
7883
+ // 请求唯一ID,用于链路跟踪和问题排查
7884
+ reqMsgId?: string;
7885
+ // 结果码,一般OK表示调用成功
7886
+ resultCode?: string;
7887
+ // 异常信息的文本描述
7888
+ resultMsg?: string;
7889
+ static names(): { [key: string]: string } {
7890
+ return {
7891
+ reqMsgId: 'req_msg_id',
7892
+ resultCode: 'result_code',
7893
+ resultMsg: 'result_msg',
7894
+ };
7895
+ }
7896
+
7897
+ static types(): { [key: string]: any } {
7898
+ return {
7899
+ reqMsgId: 'string',
7900
+ resultCode: 'string',
7901
+ resultMsg: 'string',
7902
+ };
7903
+ }
7904
+
7905
+ constructor(map?: { [key: string]: any }) {
7906
+ super(map);
7907
+ }
7908
+ }
7909
+
7910
+ export class QueryDubbridgeBusinessDetailRequest extends $tea.Model {
7911
+ // OAuth模式下的授权token
7912
+ authToken?: string;
7913
+ productInstanceId?: string;
7914
+ // 查询字段(注册号,社会统一信用代码,公司名称)
7915
+ keyword: string;
7916
+ static names(): { [key: string]: string } {
7917
+ return {
7918
+ authToken: 'auth_token',
7919
+ productInstanceId: 'product_instance_id',
7920
+ keyword: 'keyword',
7921
+ };
7922
+ }
7923
+
7924
+ static types(): { [key: string]: any } {
7925
+ return {
7926
+ authToken: 'string',
7927
+ productInstanceId: 'string',
7928
+ keyword: 'string',
7929
+ };
7930
+ }
7931
+
7932
+ constructor(map?: { [key: string]: any }) {
7933
+ super(map);
7934
+ }
7935
+ }
7936
+
7937
+ export class QueryDubbridgeBusinessDetailResponse extends $tea.Model {
7938
+ // 请求唯一ID,用于链路跟踪和问题排查
7939
+ reqMsgId?: string;
7940
+ // 结果码,一般OK表示调用成功
7941
+ resultCode?: string;
7942
+ // 异常信息的文本描述
7943
+ resultMsg?: string;
7944
+ // 社会统一信用代码
7945
+ ucCode?: string;
7946
+ // 注册日期
7947
+ registerDate?: string;
7948
+ // 经营地址
7949
+ operatingAddrJson?: string;
7950
+ // 详细地址
7951
+ addressDetail?: string;
7952
+ static names(): { [key: string]: string } {
7953
+ return {
7954
+ reqMsgId: 'req_msg_id',
7955
+ resultCode: 'result_code',
7956
+ resultMsg: 'result_msg',
7957
+ ucCode: 'uc_code',
7958
+ registerDate: 'register_date',
7959
+ operatingAddrJson: 'operating_addr_json',
7960
+ addressDetail: 'address_detail',
7961
+ };
7962
+ }
7963
+
7964
+ static types(): { [key: string]: any } {
7965
+ return {
7966
+ reqMsgId: 'string',
7967
+ resultCode: 'string',
7968
+ resultMsg: 'string',
7969
+ ucCode: 'string',
7970
+ registerDate: 'string',
7971
+ operatingAddrJson: 'string',
7972
+ addressDetail: 'string',
7973
+ };
7974
+ }
7975
+
7976
+ constructor(map?: { [key: string]: any }) {
7977
+ super(map);
7978
+ }
7979
+ }
7980
+
7585
7981
  export class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
7586
7982
  // OAuth模式下的授权token
7587
7983
  authToken?: string;
@@ -12380,6 +12776,77 @@ export class CancelUmktDataaccessOfflinetaskResponse extends $tea.Model {
12380
12776
  }
12381
12777
  }
12382
12778
 
12779
+ export class QueryUmktRtMarketingRequest extends $tea.Model {
12780
+ // OAuth模式下的授权token
12781
+ authToken?: string;
12782
+ productInstanceId?: string;
12783
+ // 场景策略id,决策重点
12784
+ sceneStrategyId: number;
12785
+ // 用户凭证模版
12786
+ queryTemplate: string;
12787
+ // 用户查询凭证
12788
+ customerKey: string;
12789
+ // 业务流水号
12790
+ bizSerialNo: string;
12791
+ static names(): { [key: string]: string } {
12792
+ return {
12793
+ authToken: 'auth_token',
12794
+ productInstanceId: 'product_instance_id',
12795
+ sceneStrategyId: 'scene_strategy_id',
12796
+ queryTemplate: 'query_template',
12797
+ customerKey: 'customer_key',
12798
+ bizSerialNo: 'biz_serial_no',
12799
+ };
12800
+ }
12801
+
12802
+ static types(): { [key: string]: any } {
12803
+ return {
12804
+ authToken: 'string',
12805
+ productInstanceId: 'string',
12806
+ sceneStrategyId: 'number',
12807
+ queryTemplate: 'string',
12808
+ customerKey: 'string',
12809
+ bizSerialNo: 'string',
12810
+ };
12811
+ }
12812
+
12813
+ constructor(map?: { [key: string]: any }) {
12814
+ super(map);
12815
+ }
12816
+ }
12817
+
12818
+ export class QueryUmktRtMarketingResponse extends $tea.Model {
12819
+ // 请求唯一ID,用于链路跟踪和问题排查
12820
+ reqMsgId?: string;
12821
+ // 结果码,一般OK表示调用成功
12822
+ resultCode?: string;
12823
+ // 异常信息的文本描述
12824
+ resultMsg?: string;
12825
+ // 实时单个营销结果
12826
+ queryResult?: CustomerUmktInfoModel;
12827
+ static names(): { [key: string]: string } {
12828
+ return {
12829
+ reqMsgId: 'req_msg_id',
12830
+ resultCode: 'result_code',
12831
+ resultMsg: 'result_msg',
12832
+ queryResult: 'query_result',
12833
+ };
12834
+ }
12835
+
12836
+ static types(): { [key: string]: any } {
12837
+ return {
12838
+ reqMsgId: 'string',
12839
+ resultCode: 'string',
12840
+ resultMsg: 'string',
12841
+ queryResult: CustomerUmktInfoModel,
12842
+ };
12843
+ }
12844
+
12845
+ constructor(map?: { [key: string]: any }) {
12846
+ super(map);
12847
+ }
12848
+ }
12849
+
12383
12850
  export class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
12384
12851
  // OAuth模式下的授权token
12385
12852
  authToken?: string;
@@ -12581,7 +13048,7 @@ export default class Client {
12581
13048
  req_msg_id: AntchainUtil.getNonce(),
12582
13049
  access_key: this._accessKeyId,
12583
13050
  base_sdk_version: "TeaSDK-2.0",
12584
- sdk_version: "1.12.16",
13051
+ sdk_version: "1.12.19",
12585
13052
  _prod_code: "RISKPLUS",
12586
13053
  _prod_channel: "undefined",
12587
13054
  };
@@ -13676,6 +14143,101 @@ export default class Client {
13676
14143
  return $tea.cast<QueryDubbridgeReceiptStatusResponse>(await this.doRequest("1.0", "riskplus.dubbridge.receipt.status.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeReceiptStatusResponse({}));
13677
14144
  }
13678
14145
 
14146
+ /**
14147
+ * Description: 天枢系统协议签约查询(通用)
14148
+ * Summary: 天枢系统协议签约查询(通用)
14149
+ */
14150
+ async queryDubbridgeCustomerCommonagreementsign(request: QueryDubbridgeCustomerCommonagreementsignRequest): Promise<QueryDubbridgeCustomerCommonagreementsignResponse> {
14151
+ let runtime = new $Util.RuntimeOptions({ });
14152
+ let headers : {[key: string ]: string} = { };
14153
+ return await this.queryDubbridgeCustomerCommonagreementsignEx(request, headers, runtime);
14154
+ }
14155
+
14156
+ /**
14157
+ * Description: 天枢系统协议签约查询(通用)
14158
+ * Summary: 天枢系统协议签约查询(通用)
14159
+ */
14160
+ async queryDubbridgeCustomerCommonagreementsignEx(request: QueryDubbridgeCustomerCommonagreementsignRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeCustomerCommonagreementsignResponse> {
14161
+ Util.validateModel(request);
14162
+ 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({}));
14163
+ }
14164
+
14165
+ /**
14166
+ * Description: 根据关键字从第三方查询企业信息
14167
+ * Summary: 天枢系统企业搜索
14168
+ */
14169
+ async queryDubbridgeCompanyItems(request: QueryDubbridgeCompanyItemsRequest): Promise<QueryDubbridgeCompanyItemsResponse> {
14170
+ let runtime = new $Util.RuntimeOptions({ });
14171
+ let headers : {[key: string ]: string} = { };
14172
+ return await this.queryDubbridgeCompanyItemsEx(request, headers, runtime);
14173
+ }
14174
+
14175
+ /**
14176
+ * Description: 根据关键字从第三方查询企业信息
14177
+ * Summary: 天枢系统企业搜索
14178
+ */
14179
+ async queryDubbridgeCompanyItemsEx(request: QueryDubbridgeCompanyItemsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeCompanyItemsResponse> {
14180
+ Util.validateModel(request);
14181
+ 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({}));
14182
+ }
14183
+
14184
+ /**
14185
+ * Description: 客户影像信息更新
14186
+ * Summary: 客户影像信息更新
14187
+ */
14188
+ async updateDubbridgeFile(request: UpdateDubbridgeFileRequest): Promise<UpdateDubbridgeFileResponse> {
14189
+ let runtime = new $Util.RuntimeOptions({ });
14190
+ let headers : {[key: string ]: string} = { };
14191
+ return await this.updateDubbridgeFileEx(request, headers, runtime);
14192
+ }
14193
+
14194
+ /**
14195
+ * Description: 客户影像信息更新
14196
+ * Summary: 客户影像信息更新
14197
+ */
14198
+ async updateDubbridgeFileEx(request: UpdateDubbridgeFileRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateDubbridgeFileResponse> {
14199
+ Util.validateModel(request);
14200
+ return $tea.cast<UpdateDubbridgeFileResponse>(await this.doRequest("1.0", "riskplus.dubbridge.file.update", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UpdateDubbridgeFileResponse({}));
14201
+ }
14202
+
14203
+ /**
14204
+ * Description: 天枢系统获取授信H5地址
14205
+ * Summary: 天枢系统获取授信H5地址
14206
+ */
14207
+ async queryDubbridgeCreditUrl(request: QueryDubbridgeCreditUrlRequest): Promise<QueryDubbridgeCreditUrlResponse> {
14208
+ let runtime = new $Util.RuntimeOptions({ });
14209
+ let headers : {[key: string ]: string} = { };
14210
+ return await this.queryDubbridgeCreditUrlEx(request, headers, runtime);
14211
+ }
14212
+
14213
+ /**
14214
+ * Description: 天枢系统获取授信H5地址
14215
+ * Summary: 天枢系统获取授信H5地址
14216
+ */
14217
+ async queryDubbridgeCreditUrlEx(request: QueryDubbridgeCreditUrlRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeCreditUrlResponse> {
14218
+ Util.validateModel(request);
14219
+ 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({}));
14220
+ }
14221
+
14222
+ /**
14223
+ * Description: 根据关键字从第三方查询企业详情信息
14224
+ * Summary: 天枢系统企业详情信息查询
14225
+ */
14226
+ async queryDubbridgeBusinessDetail(request: QueryDubbridgeBusinessDetailRequest): Promise<QueryDubbridgeBusinessDetailResponse> {
14227
+ let runtime = new $Util.RuntimeOptions({ });
14228
+ let headers : {[key: string ]: string} = { };
14229
+ return await this.queryDubbridgeBusinessDetailEx(request, headers, runtime);
14230
+ }
14231
+
14232
+ /**
14233
+ * Description: 根据关键字从第三方查询企业详情信息
14234
+ * Summary: 天枢系统企业详情信息查询
14235
+ */
14236
+ async queryDubbridgeBusinessDetailEx(request: QueryDubbridgeBusinessDetailRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeBusinessDetailResponse> {
14237
+ Util.validateModel(request);
14238
+ 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
+ }
14240
+
13679
14241
  /**
13680
14242
  * Description: 四要素认证首先调用此接口
13681
14243
  * Summary: 芝麻四要素接口
@@ -14917,6 +15479,25 @@ export default class Client {
14917
15479
  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({}));
14918
15480
  }
14919
15481
 
15482
+ /**
15483
+ * Description: 营销盾实时单一凭证营销接口,服务于近rta的场景
15484
+ * Summary: 营销盾实时单一凭证营销接口
15485
+ */
15486
+ async queryUmktRtMarketing(request: QueryUmktRtMarketingRequest): Promise<QueryUmktRtMarketingResponse> {
15487
+ let runtime = new $Util.RuntimeOptions({ });
15488
+ let headers : {[key: string ]: string} = { };
15489
+ return await this.queryUmktRtMarketingEx(request, headers, runtime);
15490
+ }
15491
+
15492
+ /**
15493
+ * Description: 营销盾实时单一凭证营销接口,服务于近rta的场景
15494
+ * Summary: 营销盾实时单一凭证营销接口
15495
+ */
15496
+ async queryUmktRtMarketingEx(request: QueryUmktRtMarketingRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryUmktRtMarketingResponse> {
15497
+ Util.validateModel(request);
15498
+ 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
+ }
15500
+
14920
15501
  /**
14921
15502
  * Description: 创建HTTP PUT提交的文件上传
14922
15503
  * Summary: 文件上传创建