@antchain/riskplus 1.25.5 → 1.26.4

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
@@ -3038,6 +3038,8 @@ export class JobInfo extends $tea.Model {
3038
3038
  companyAddress?: string;
3039
3039
  // 年收入
3040
3040
  yearSalary?: number;
3041
+ // 贷款用户所属行业类别
3042
+ induInvol?: string;
3041
3043
  static names(): { [key: string]: string } {
3042
3044
  return {
3043
3045
  jobType: 'job_type',
@@ -3053,6 +3055,7 @@ export class JobInfo extends $tea.Model {
3053
3055
  companyStreet: 'company_street',
3054
3056
  companyAddress: 'company_address',
3055
3057
  yearSalary: 'year_salary',
3058
+ induInvol: 'indu_invol',
3056
3059
  };
3057
3060
  }
3058
3061
 
@@ -3071,6 +3074,7 @@ export class JobInfo extends $tea.Model {
3071
3074
  companyStreet: 'string',
3072
3075
  companyAddress: 'string',
3073
3076
  yearSalary: 'number',
3077
+ induInvol: 'string',
3074
3078
  };
3075
3079
  }
3076
3080
 
@@ -5705,6 +5709,8 @@ export class NotifyBenefithubRiskLoginRequest extends $tea.Model {
5705
5709
  mobile: string;
5706
5710
  // 产品code必填,后续多产品时可以区分
5707
5711
  productCode?: string;
5712
+ // 场景配置信息字符串,用于透传
5713
+ sceneConfig?: string;
5708
5714
  static names(): { [key: string]: string } {
5709
5715
  return {
5710
5716
  authToken: 'auth_token',
@@ -5713,6 +5719,7 @@ export class NotifyBenefithubRiskLoginRequest extends $tea.Model {
5713
5719
  userUniqueId: 'user_unique_id',
5714
5720
  mobile: 'mobile',
5715
5721
  productCode: 'product_code',
5722
+ sceneConfig: 'scene_config',
5716
5723
  };
5717
5724
  }
5718
5725
 
@@ -5724,6 +5731,7 @@ export class NotifyBenefithubRiskLoginRequest extends $tea.Model {
5724
5731
  userUniqueId: 'string',
5725
5732
  mobile: 'string',
5726
5733
  productCode: 'string',
5734
+ sceneConfig: 'string',
5727
5735
  };
5728
5736
  }
5729
5737
 
@@ -5764,6 +5772,216 @@ export class NotifyBenefithubRiskLoginResponse extends $tea.Model {
5764
5772
  }
5765
5773
  }
5766
5774
 
5775
+ export class NotifyBenefithubRiskPayunilateralRequest extends $tea.Model {
5776
+ // OAuth模式下的授权token
5777
+ authToken?: string;
5778
+ productInstanceId?: string;
5779
+ // 业务操作类型,目前只支持下单
5780
+ bizType: string;
5781
+ // 外部支付的订单号
5782
+ paymentNo: string;
5783
+ // 订单状态
5784
+ status: string;
5785
+ // 订单金额
5786
+ orderAmount: string;
5787
+ // 订单实际支付金额
5788
+ paymentAmount: string;
5789
+ // 支付时间
5790
+ paymentTime: string;
5791
+ // 支付使用的方式
5792
+ paymentMethodType: string;
5793
+ // 三方支付流水号
5794
+ capNum: string;
5795
+ // 支付通道商户号
5796
+ merchantNo?: string;
5797
+ // 订单类型,订阅、单次购买等
5798
+ orderType: string;
5799
+ // 订单来源
5800
+ orderSource: string;
5801
+ // 平台code,由蚂蚁数科颁发的特定平台code,用于报告产品授权使用
5802
+ platformCode: string;
5803
+ // 用户唯一id,流量平台提供,内部结合platformCode 组成唯一code
5804
+ userUniqueId: string;
5805
+ // 产品code,具体的报告产品;不同产品价格、展示内容可能均不一样,可通过产品code区分不同场景
5806
+ productCode: string;
5807
+ static names(): { [key: string]: string } {
5808
+ return {
5809
+ authToken: 'auth_token',
5810
+ productInstanceId: 'product_instance_id',
5811
+ bizType: 'biz_type',
5812
+ paymentNo: 'payment_no',
5813
+ status: 'status',
5814
+ orderAmount: 'order_amount',
5815
+ paymentAmount: 'payment_amount',
5816
+ paymentTime: 'payment_time',
5817
+ paymentMethodType: 'payment_method_type',
5818
+ capNum: 'cap_num',
5819
+ merchantNo: 'merchant_no',
5820
+ orderType: 'order_type',
5821
+ orderSource: 'order_source',
5822
+ platformCode: 'platform_code',
5823
+ userUniqueId: 'user_unique_id',
5824
+ productCode: 'product_code',
5825
+ };
5826
+ }
5827
+
5828
+ static types(): { [key: string]: any } {
5829
+ return {
5830
+ authToken: 'string',
5831
+ productInstanceId: 'string',
5832
+ bizType: 'string',
5833
+ paymentNo: 'string',
5834
+ status: 'string',
5835
+ orderAmount: 'string',
5836
+ paymentAmount: 'string',
5837
+ paymentTime: 'string',
5838
+ paymentMethodType: 'string',
5839
+ capNum: 'string',
5840
+ merchantNo: 'string',
5841
+ orderType: 'string',
5842
+ orderSource: 'string',
5843
+ platformCode: 'string',
5844
+ userUniqueId: 'string',
5845
+ productCode: 'string',
5846
+ };
5847
+ }
5848
+
5849
+ constructor(map?: { [key: string]: any }) {
5850
+ super(map);
5851
+ }
5852
+ }
5853
+
5854
+ export class NotifyBenefithubRiskPayunilateralResponse extends $tea.Model {
5855
+ // 请求唯一ID,用于链路跟踪和问题排查
5856
+ reqMsgId?: string;
5857
+ // 结果码,一般OK表示调用成功
5858
+ resultCode?: string;
5859
+ // 异常信息的文本描述
5860
+ resultMsg?: string;
5861
+ // 请求返回结果
5862
+ resultData?: string;
5863
+ static names(): { [key: string]: string } {
5864
+ return {
5865
+ reqMsgId: 'req_msg_id',
5866
+ resultCode: 'result_code',
5867
+ resultMsg: 'result_msg',
5868
+ resultData: 'result_data',
5869
+ };
5870
+ }
5871
+
5872
+ static types(): { [key: string]: any } {
5873
+ return {
5874
+ reqMsgId: 'string',
5875
+ resultCode: 'string',
5876
+ resultMsg: 'string',
5877
+ resultData: 'string',
5878
+ };
5879
+ }
5880
+
5881
+ constructor(map?: { [key: string]: any }) {
5882
+ super(map);
5883
+ }
5884
+ }
5885
+
5886
+ export class QueryBenefithubReportInformationRequest extends $tea.Model {
5887
+ // OAuth模式下的授权token
5888
+ authToken?: string;
5889
+ productInstanceId?: string;
5890
+ // 订单号
5891
+ orderNo: string;
5892
+ static names(): { [key: string]: string } {
5893
+ return {
5894
+ authToken: 'auth_token',
5895
+ productInstanceId: 'product_instance_id',
5896
+ orderNo: 'order_no',
5897
+ };
5898
+ }
5899
+
5900
+ static types(): { [key: string]: any } {
5901
+ return {
5902
+ authToken: 'string',
5903
+ productInstanceId: 'string',
5904
+ orderNo: 'string',
5905
+ };
5906
+ }
5907
+
5908
+ constructor(map?: { [key: string]: any }) {
5909
+ super(map);
5910
+ }
5911
+ }
5912
+
5913
+ export class QueryBenefithubReportInformationResponse extends $tea.Model {
5914
+ // 请求唯一ID,用于链路跟踪和问题排查
5915
+ reqMsgId?: string;
5916
+ // 结果码,一般OK表示调用成功
5917
+ resultCode?: string;
5918
+ // 异常信息的文本描述
5919
+ resultMsg?: string;
5920
+ // 用户id
5921
+ uuid?: string;
5922
+ // 订单号
5923
+ orderNo?: string;
5924
+ // 平台code
5925
+ platformCode?: string;
5926
+ // 产品码
5927
+ productCode?: string;
5928
+ // 报案号
5929
+ reportNo?: string;
5930
+ // 报告生成时间
5931
+ reportTime?: string;
5932
+ // 报案到期时间
5933
+ reportEndTime?: string;
5934
+ // 报告内容
5935
+ reportContent?: string;
5936
+ // 状态
5937
+ status?: string;
5938
+ // 用户姓名
5939
+ name?: string;
5940
+ // 身份证号
5941
+ idCard?: string;
5942
+ static names(): { [key: string]: string } {
5943
+ return {
5944
+ reqMsgId: 'req_msg_id',
5945
+ resultCode: 'result_code',
5946
+ resultMsg: 'result_msg',
5947
+ uuid: 'uuid',
5948
+ orderNo: 'order_no',
5949
+ platformCode: 'platform_code',
5950
+ productCode: 'product_code',
5951
+ reportNo: 'report_no',
5952
+ reportTime: 'report_time',
5953
+ reportEndTime: 'report_end_time',
5954
+ reportContent: 'report_content',
5955
+ status: 'status',
5956
+ name: 'name',
5957
+ idCard: 'id_card',
5958
+ };
5959
+ }
5960
+
5961
+ static types(): { [key: string]: any } {
5962
+ return {
5963
+ reqMsgId: 'string',
5964
+ resultCode: 'string',
5965
+ resultMsg: 'string',
5966
+ uuid: 'string',
5967
+ orderNo: 'string',
5968
+ platformCode: 'string',
5969
+ productCode: 'string',
5970
+ reportNo: 'string',
5971
+ reportTime: 'string',
5972
+ reportEndTime: 'string',
5973
+ reportContent: 'string',
5974
+ status: 'string',
5975
+ name: 'string',
5976
+ idCard: 'string',
5977
+ };
5978
+ }
5979
+
5980
+ constructor(map?: { [key: string]: any }) {
5981
+ super(map);
5982
+ }
5983
+ }
5984
+
5767
5985
  export class BatchqueryCreditshieldProductInfoRequest extends $tea.Model {
5768
5986
  // OAuth模式下的授权token
5769
5987
  authToken?: string;
@@ -5900,6 +6118,74 @@ export class QueryCreditshieldProductCallbackResponse extends $tea.Model {
5900
6118
  }
5901
6119
  }
5902
6120
 
6121
+ export class QueryCreditshieldProductIvrfcRequest extends $tea.Model {
6122
+ // OAuth模式下的授权token
6123
+ authToken?: string;
6124
+ productInstanceId?: string;
6125
+ // 1.信息查询 2.债务人判断
6126
+ queryCode: string;
6127
+ // 查询信息Map集合
6128
+ queryInfos?: QueryInfo[];
6129
+ static names(): { [key: string]: string } {
6130
+ return {
6131
+ authToken: 'auth_token',
6132
+ productInstanceId: 'product_instance_id',
6133
+ queryCode: 'query_code',
6134
+ queryInfos: 'query_infos',
6135
+ };
6136
+ }
6137
+
6138
+ static types(): { [key: string]: any } {
6139
+ return {
6140
+ authToken: 'string',
6141
+ productInstanceId: 'string',
6142
+ queryCode: 'string',
6143
+ queryInfos: { 'type': 'array', 'itemType': QueryInfo },
6144
+ };
6145
+ }
6146
+
6147
+ constructor(map?: { [key: string]: any }) {
6148
+ super(map);
6149
+ }
6150
+ }
6151
+
6152
+ export class QueryCreditshieldProductIvrfcResponse extends $tea.Model {
6153
+ // 请求唯一ID,用于链路跟踪和问题排查
6154
+ reqMsgId?: string;
6155
+ // 结果码,一般OK表示调用成功
6156
+ resultCode?: string;
6157
+ // 异常信息的文本描述
6158
+ resultMsg?: string;
6159
+ //
6160
+ // 接口请求是否成功
6161
+ success?: boolean;
6162
+ // 查询结果
6163
+ queryResult?: string;
6164
+ static names(): { [key: string]: string } {
6165
+ return {
6166
+ reqMsgId: 'req_msg_id',
6167
+ resultCode: 'result_code',
6168
+ resultMsg: 'result_msg',
6169
+ success: 'success',
6170
+ queryResult: 'query_result',
6171
+ };
6172
+ }
6173
+
6174
+ static types(): { [key: string]: any } {
6175
+ return {
6176
+ reqMsgId: 'string',
6177
+ resultCode: 'string',
6178
+ resultMsg: 'string',
6179
+ success: 'boolean',
6180
+ queryResult: 'string',
6181
+ };
6182
+ }
6183
+
6184
+ constructor(map?: { [key: string]: any }) {
6185
+ super(map);
6186
+ }
6187
+ }
6188
+
5903
6189
  export class QuerySecurityPolicyRequest extends $tea.Model {
5904
6190
  // OAuth模式下的授权token
5905
6191
  authToken?: string;
@@ -10170,6 +10456,8 @@ export class CountDubbridgeRepayTrialRequest extends $tea.Model {
10170
10456
  repayType: string;
10171
10457
  // 订单号
10172
10458
  orderNo: string;
10459
+ // 试算逾期期次列表
10460
+ periodList?: number[];
10173
10461
  static names(): { [key: string]: string } {
10174
10462
  return {
10175
10463
  authToken: 'auth_token',
@@ -10177,6 +10465,7 @@ export class CountDubbridgeRepayTrialRequest extends $tea.Model {
10177
10465
  originalOrderNo: 'original_order_no',
10178
10466
  repayType: 'repay_type',
10179
10467
  orderNo: 'order_no',
10468
+ periodList: 'period_list',
10180
10469
  };
10181
10470
  }
10182
10471
 
@@ -10187,6 +10476,7 @@ export class CountDubbridgeRepayTrialRequest extends $tea.Model {
10187
10476
  originalOrderNo: 'string',
10188
10477
  repayType: 'string',
10189
10478
  orderNo: 'string',
10479
+ periodList: { 'type': 'array', 'itemType': 'number' },
10190
10480
  };
10191
10481
  }
10192
10482
 
@@ -10214,6 +10504,8 @@ export class CountDubbridgeRepayTrialResponse extends $tea.Model {
10214
10504
  realGuaranteeFee?: number;
10215
10505
  // 违约金
10216
10506
  realLiquidatedDamages?: number;
10507
+ // 试算期次还款计划结果
10508
+ repayResultList?: RepayResult[];
10217
10509
  static names(): { [key: string]: string } {
10218
10510
  return {
10219
10511
  reqMsgId: 'req_msg_id',
@@ -10225,6 +10517,7 @@ export class CountDubbridgeRepayTrialResponse extends $tea.Model {
10225
10517
  serviceCharge: 'service_charge',
10226
10518
  realGuaranteeFee: 'real_guarantee_fee',
10227
10519
  realLiquidatedDamages: 'real_liquidated_damages',
10520
+ repayResultList: 'repay_result_list',
10228
10521
  };
10229
10522
  }
10230
10523
 
@@ -10239,6 +10532,7 @@ export class CountDubbridgeRepayTrialResponse extends $tea.Model {
10239
10532
  serviceCharge: 'number',
10240
10533
  realGuaranteeFee: 'number',
10241
10534
  realLiquidatedDamages: 'number',
10535
+ repayResultList: { 'type': 'array', 'itemType': RepayResult },
10242
10536
  };
10243
10537
  }
10244
10538
 
@@ -10251,25 +10545,46 @@ export class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
10251
10545
  // OAuth模式下的授权token
10252
10546
  authToken?: string;
10253
10547
  productInstanceId?: string;
10548
+ // 订单号
10549
+ orderNo: string;
10254
10550
  // 授信申请订单号
10255
10551
  originalOrderNo: string;
10256
10552
  // 还款类型1:当期结清,2:正常还款3:全部结清
10257
10553
  repayType: string;
10258
- // 订单号
10259
- orderNo: string;
10554
+ // 逾期期次列表(担保渠道)
10555
+ periodList?: number[];
10260
10556
  // 校验还款金额
10261
10557
  validRepayAmount?: string;
10262
10558
  // 银行卡号
10263
10559
  bankCardNo?: string;
10560
+ // 是否支付代扣,Y是N否(Y:支付代扣,N:无需走支付通道,直接信息流入账--线下还款模式);(担保渠道)
10561
+ paymentFlag?: string;
10562
+ // 账号开户名,payment_flag=Y时,必填;(担保渠道)
10563
+ accountName?: string;
10564
+ // 银行预留手机号,payment_flag=Y时,必填;(担保渠道)
10565
+ reservedMobile?: string;
10566
+ // 账号开户行编码(担保渠道)
10567
+ accountOpenBank?: string;
10568
+ // 扣款渠道代码(担保渠道)
10569
+ deductionCode?: string;
10570
+ // 通道签约协议号(担保渠道)
10571
+ signingAgreementNum?: string;
10264
10572
  static names(): { [key: string]: string } {
10265
10573
  return {
10266
10574
  authToken: 'auth_token',
10267
10575
  productInstanceId: 'product_instance_id',
10576
+ orderNo: 'order_no',
10268
10577
  originalOrderNo: 'original_order_no',
10269
10578
  repayType: 'repay_type',
10270
- orderNo: 'order_no',
10579
+ periodList: 'period_list',
10271
10580
  validRepayAmount: 'valid_repay_amount',
10272
10581
  bankCardNo: 'bank_card_no',
10582
+ paymentFlag: 'payment_flag',
10583
+ accountName: 'account_name',
10584
+ reservedMobile: 'reserved_mobile',
10585
+ accountOpenBank: 'account_open_bank',
10586
+ deductionCode: 'deduction_code',
10587
+ signingAgreementNum: 'signing_agreement_num',
10273
10588
  };
10274
10589
  }
10275
10590
 
@@ -10277,11 +10592,18 @@ export class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
10277
10592
  return {
10278
10593
  authToken: 'string',
10279
10594
  productInstanceId: 'string',
10595
+ orderNo: 'string',
10280
10596
  originalOrderNo: 'string',
10281
10597
  repayType: 'string',
10282
- orderNo: 'string',
10598
+ periodList: { 'type': 'array', 'itemType': 'number' },
10283
10599
  validRepayAmount: 'string',
10284
10600
  bankCardNo: 'string',
10601
+ paymentFlag: 'string',
10602
+ accountName: 'string',
10603
+ reservedMobile: 'string',
10604
+ accountOpenBank: 'string',
10605
+ deductionCode: 'string',
10606
+ signingAgreementNum: 'string',
10285
10607
  };
10286
10608
  }
10287
10609
 
@@ -14783,7 +15105,7 @@ export class UploadQmpOfflinehostplanResponse extends $tea.Model {
14783
15105
  // 异常信息的文本描述
14784
15106
  resultMsg?: string;
14785
15107
  // 导入id,可以用该id来查询分层结果
14786
- importId?: string;
15108
+ importId?: number;
14787
15109
  static names(): { [key: string]: string } {
14788
15110
  return {
14789
15111
  reqMsgId: 'req_msg_id',
@@ -14798,7 +15120,7 @@ export class UploadQmpOfflinehostplanResponse extends $tea.Model {
14798
15120
  reqMsgId: 'string',
14799
15121
  resultCode: 'string',
14800
15122
  resultMsg: 'string',
14801
- importId: 'string',
15123
+ importId: 'number',
14802
15124
  };
14803
15125
  }
14804
15126
 
@@ -14812,7 +15134,7 @@ export class QueryQmpOfflinehostplanDecisionresultRequest extends $tea.Model {
14812
15134
  authToken?: string;
14813
15135
  productInstanceId?: string;
14814
15136
  // 文件上传时返回的导入id
14815
- importId: string;
15137
+ importId: number;
14816
15138
  static names(): { [key: string]: string } {
14817
15139
  return {
14818
15140
  authToken: 'auth_token',
@@ -14825,7 +15147,7 @@ export class QueryQmpOfflinehostplanDecisionresultRequest extends $tea.Model {
14825
15147
  return {
14826
15148
  authToken: 'string',
14827
15149
  productInstanceId: 'string',
14828
- importId: 'string',
15150
+ importId: 'number',
14829
15151
  };
14830
15152
  }
14831
15153
 
@@ -14851,6 +15173,10 @@ export class QueryQmpOfflinehostplanDecisionresultResponse extends $tea.Model {
14851
15173
  decisionNum?: number;
14852
15174
  // 分层结果的oss文件路径
14853
15175
  fileUrl?: string;
15176
+ // 触达确认状态.Y/N,已确认,未确认,当前计划无触达则为空
15177
+ actionConfirmStatus?: string;
15178
+ // 触达时间
15179
+ actionTime?: string;
14854
15180
  static names(): { [key: string]: string } {
14855
15181
  return {
14856
15182
  reqMsgId: 'req_msg_id',
@@ -14861,6 +15187,8 @@ export class QueryQmpOfflinehostplanDecisionresultResponse extends $tea.Model {
14861
15187
  totalNum: 'total_num',
14862
15188
  decisionNum: 'decision_num',
14863
15189
  fileUrl: 'file_url',
15190
+ actionConfirmStatus: 'action_confirm_status',
15191
+ actionTime: 'action_time',
14864
15192
  };
14865
15193
  }
14866
15194
 
@@ -14874,6 +15202,8 @@ export class QueryQmpOfflinehostplanDecisionresultResponse extends $tea.Model {
14874
15202
  totalNum: 'number',
14875
15203
  decisionNum: 'number',
14876
15204
  fileUrl: 'string',
15205
+ actionConfirmStatus: 'string',
15206
+ actionTime: 'string',
14877
15207
  };
14878
15208
  }
14879
15209
 
@@ -24308,6 +24638,77 @@ export class UploadUmktOfflineImportrecordResponse extends $tea.Model {
24308
24638
  }
24309
24639
  }
24310
24640
 
24641
+ export class DownloadUmktOfflineCampaignRequest extends $tea.Model {
24642
+ // OAuth模式下的授权token
24643
+ authToken?: string;
24644
+ productInstanceId?: string;
24645
+ // 圈投计划id
24646
+ campaignId: number;
24647
+ // 节点id
24648
+ nodeId: string;
24649
+ // 关联圈客计划id
24650
+ decisionPlanId: number;
24651
+ // 任务id
24652
+ taskId: string;
24653
+ static names(): { [key: string]: string } {
24654
+ return {
24655
+ authToken: 'auth_token',
24656
+ productInstanceId: 'product_instance_id',
24657
+ campaignId: 'campaign_id',
24658
+ nodeId: 'node_id',
24659
+ decisionPlanId: 'decision_plan_id',
24660
+ taskId: 'task_id',
24661
+ };
24662
+ }
24663
+
24664
+ static types(): { [key: string]: any } {
24665
+ return {
24666
+ authToken: 'string',
24667
+ productInstanceId: 'string',
24668
+ campaignId: 'number',
24669
+ nodeId: 'string',
24670
+ decisionPlanId: 'number',
24671
+ taskId: 'string',
24672
+ };
24673
+ }
24674
+
24675
+ constructor(map?: { [key: string]: any }) {
24676
+ super(map);
24677
+ }
24678
+ }
24679
+
24680
+ export class DownloadUmktOfflineCampaignResponse extends $tea.Model {
24681
+ // 请求唯一ID,用于链路跟踪和问题排查
24682
+ reqMsgId?: string;
24683
+ // 结果码,一般OK表示调用成功
24684
+ resultCode?: string;
24685
+ // 异常信息的文本描述
24686
+ resultMsg?: string;
24687
+ // 文件链接url
24688
+ fileUrl?: string;
24689
+ static names(): { [key: string]: string } {
24690
+ return {
24691
+ reqMsgId: 'req_msg_id',
24692
+ resultCode: 'result_code',
24693
+ resultMsg: 'result_msg',
24694
+ fileUrl: 'file_url',
24695
+ };
24696
+ }
24697
+
24698
+ static types(): { [key: string]: any } {
24699
+ return {
24700
+ reqMsgId: 'string',
24701
+ resultCode: 'string',
24702
+ resultMsg: 'string',
24703
+ fileUrl: 'string',
24704
+ };
24705
+ }
24706
+
24707
+ constructor(map?: { [key: string]: any }) {
24708
+ super(map);
24709
+ }
24710
+ }
24711
+
24311
24712
  export class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
24312
24713
  // OAuth模式下的授权token
24313
24714
  authToken?: string;
@@ -24509,7 +24910,7 @@ export default class Client {
24509
24910
  req_msg_id: AntchainUtil.getNonce(),
24510
24911
  access_key: this._accessKeyId,
24511
24912
  base_sdk_version: "TeaSDK-2.0",
24512
- sdk_version: "1.25.5",
24913
+ sdk_version: "1.26.4",
24513
24914
  _prod_code: "RISKPLUS",
24514
24915
  _prod_channel: "undefined",
24515
24916
  };
@@ -24595,6 +24996,44 @@ export default class Client {
24595
24996
  return $tea.cast<NotifyBenefithubRiskLoginResponse>(await this.doRequest("1.0", "riskplus.benefithub.risk.login.notify", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new NotifyBenefithubRiskLoginResponse({}));
24596
24997
  }
24597
24998
 
24999
+ /**
25000
+ * Description: 奇富组件支付结果通知, 提供给驭鉴使用,用于接收从奇富支付成功的通知,发起订单创建
25001
+ * Summary: 奇富组件支付结果通知
25002
+ */
25003
+ async notifyBenefithubRiskPayunilateral(request: NotifyBenefithubRiskPayunilateralRequest): Promise<NotifyBenefithubRiskPayunilateralResponse> {
25004
+ let runtime = new $Util.RuntimeOptions({ });
25005
+ let headers : {[key: string ]: string} = { };
25006
+ return await this.notifyBenefithubRiskPayunilateralEx(request, headers, runtime);
25007
+ }
25008
+
25009
+ /**
25010
+ * Description: 奇富组件支付结果通知, 提供给驭鉴使用,用于接收从奇富支付成功的通知,发起订单创建
25011
+ * Summary: 奇富组件支付结果通知
25012
+ */
25013
+ async notifyBenefithubRiskPayunilateralEx(request: NotifyBenefithubRiskPayunilateralRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<NotifyBenefithubRiskPayunilateralResponse> {
25014
+ Util.validateModel(request);
25015
+ return $tea.cast<NotifyBenefithubRiskPayunilateralResponse>(await this.doRequest("1.0", "riskplus.benefithub.risk.payunilateral.notify", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new NotifyBenefithubRiskPayunilateralResponse({}));
25016
+ }
25017
+
25018
+ /**
25019
+ * Description: 渠道主动查询报告详情接口
25020
+ * Summary: 渠道查询报告详情
25021
+ */
25022
+ async queryBenefithubReportInformation(request: QueryBenefithubReportInformationRequest): Promise<QueryBenefithubReportInformationResponse> {
25023
+ let runtime = new $Util.RuntimeOptions({ });
25024
+ let headers : {[key: string ]: string} = { };
25025
+ return await this.queryBenefithubReportInformationEx(request, headers, runtime);
25026
+ }
25027
+
25028
+ /**
25029
+ * Description: 渠道主动查询报告详情接口
25030
+ * Summary: 渠道查询报告详情
25031
+ */
25032
+ async queryBenefithubReportInformationEx(request: QueryBenefithubReportInformationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryBenefithubReportInformationResponse> {
25033
+ Util.validateModel(request);
25034
+ return $tea.cast<QueryBenefithubReportInformationResponse>(await this.doRequest("1.0", "riskplus.benefithub.report.information.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryBenefithubReportInformationResponse({}));
25035
+ }
25036
+
24598
25037
  /**
24599
25038
  * Description: 信护盾产品批量查询
24600
25039
  * Summary: 信护盾产品批量查询
@@ -24633,6 +25072,25 @@ export default class Client {
24633
25072
  return $tea.cast<QueryCreditshieldProductCallbackResponse>(await this.doRequest("1.0", "riskplus.creditshield.product.callback.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryCreditshieldProductCallbackResponse({}));
24634
25073
  }
24635
25074
 
25075
+ /**
25076
+ * Description: ivr函数计算调用
25077
+ * Summary: ivr函数计算调用
25078
+ */
25079
+ async queryCreditshieldProductIvrfc(request: QueryCreditshieldProductIvrfcRequest): Promise<QueryCreditshieldProductIvrfcResponse> {
25080
+ let runtime = new $Util.RuntimeOptions({ });
25081
+ let headers : {[key: string ]: string} = { };
25082
+ return await this.queryCreditshieldProductIvrfcEx(request, headers, runtime);
25083
+ }
25084
+
25085
+ /**
25086
+ * Description: ivr函数计算调用
25087
+ * Summary: ivr函数计算调用
25088
+ */
25089
+ async queryCreditshieldProductIvrfcEx(request: QueryCreditshieldProductIvrfcRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryCreditshieldProductIvrfcResponse> {
25090
+ Util.validateModel(request);
25091
+ return $tea.cast<QueryCreditshieldProductIvrfcResponse>(await this.doRequest("1.0", "riskplus.creditshield.product.ivrfc.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryCreditshieldProductIvrfcResponse({}));
25092
+ }
25093
+
24636
25094
  /**
24637
25095
  * Description: 风控云风险咨询接口
24638
25096
  * Summary: 风控云风险咨询接口
@@ -29233,6 +29691,25 @@ export default class Client {
29233
29691
  return $tea.cast<UploadUmktOfflineImportrecordResponse>(await this.doRequest("1.0", "riskplus.umkt.offline.importrecord.upload", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UploadUmktOfflineImportrecordResponse({}));
29234
29692
  }
29235
29693
 
29694
+ /**
29695
+ * Description: 圈投一体圈客结果文件url获取
29696
+ * Summary: 圈投一体圈客结果文件url获取
29697
+ */
29698
+ async downloadUmktOfflineCampaign(request: DownloadUmktOfflineCampaignRequest): Promise<DownloadUmktOfflineCampaignResponse> {
29699
+ let runtime = new $Util.RuntimeOptions({ });
29700
+ let headers : {[key: string ]: string} = { };
29701
+ return await this.downloadUmktOfflineCampaignEx(request, headers, runtime);
29702
+ }
29703
+
29704
+ /**
29705
+ * Description: 圈投一体圈客结果文件url获取
29706
+ * Summary: 圈投一体圈客结果文件url获取
29707
+ */
29708
+ async downloadUmktOfflineCampaignEx(request: DownloadUmktOfflineCampaignRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DownloadUmktOfflineCampaignResponse> {
29709
+ Util.validateModel(request);
29710
+ return $tea.cast<DownloadUmktOfflineCampaignResponse>(await this.doRequest("1.0", "riskplus.umkt.offline.campaign.download", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new DownloadUmktOfflineCampaignResponse({}));
29711
+ }
29712
+
29236
29713
  /**
29237
29714
  * Description: 创建HTTP PUT提交的文件上传
29238
29715
  * Summary: 文件上传创建