@antchain/riskplus 1.20.2 → 1.20.7

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
@@ -412,14 +412,14 @@ export class CouponInfo extends $tea.Model {
412
412
  // 优惠券名称
413
413
  couponName: string;
414
414
  // 优惠券状态
415
- // 0-未使用
416
- // 2-已使用
417
- // 3-已失效
418
- couponStatus: string;
415
+ // unUsed-未使用
416
+ // Used-已使用
417
+ // Expired-过期
418
+ status: string;
419
419
  // 使用场景
420
420
  // 01-提款使用
421
421
  // 02-还款使用
422
- useScene: string;
422
+ useCondition: string;
423
423
  // 优惠码
424
424
  couponCode?: string;
425
425
  // 优惠券类型
@@ -477,12 +477,18 @@ export class CouponInfo extends $tea.Model {
477
477
  // 01-到期还款
478
478
  // 02-即期还款
479
479
  repayWays?: string;
480
+ // 优惠模板Id
481
+ couponModelNo?: string;
482
+ // 至到期:X年X月X日
483
+ // 0:不是至到期券
484
+ // 1:是至到期券
485
+ toMaturity?: string;
480
486
  static names(): { [key: string]: string } {
481
487
  return {
482
488
  couponId: 'coupon_id',
483
489
  couponName: 'coupon_name',
484
- couponStatus: 'coupon_status',
485
- useScene: 'use_scene',
490
+ status: 'status',
491
+ useCondition: 'use_condition',
486
492
  couponCode: 'coupon_code',
487
493
  couponType: 'coupon_type',
488
494
  couponValue: 'coupon_value',
@@ -499,6 +505,8 @@ export class CouponInfo extends $tea.Model {
499
505
  isPeriodLimit: 'is_period_limit',
500
506
  repayCondition: 'repay_condition',
501
507
  repayWays: 'repay_ways',
508
+ couponModelNo: 'coupon_model_no',
509
+ toMaturity: 'to_maturity',
502
510
  };
503
511
  }
504
512
 
@@ -506,8 +514,8 @@ export class CouponInfo extends $tea.Model {
506
514
  return {
507
515
  couponId: 'string',
508
516
  couponName: 'string',
509
- couponStatus: 'string',
510
- useScene: 'string',
517
+ status: 'string',
518
+ useCondition: 'string',
511
519
  couponCode: 'string',
512
520
  couponType: 'string',
513
521
  couponValue: 'string',
@@ -524,6 +532,8 @@ export class CouponInfo extends $tea.Model {
524
532
  isPeriodLimit: 'string',
525
533
  repayCondition: 'string',
526
534
  repayWays: 'string',
535
+ couponModelNo: 'string',
536
+ toMaturity: 'string',
527
537
  };
528
538
  }
529
539
 
@@ -3404,6 +3414,33 @@ export class RtopStarCompanyInfo extends $tea.Model {
3404
3414
  }
3405
3415
  }
3406
3416
 
3417
+ // 还款方式/借款期数信息
3418
+ export class PlatformRepayTypeInfo extends $tea.Model {
3419
+ // 1:等额本息
3420
+ // 2:等额本金
3421
+ // 3:按期付息到期还本(先息后本)
3422
+ repayType: string;
3423
+ // {”1“,”2“}
3424
+ periods: string[];
3425
+ static names(): { [key: string]: string } {
3426
+ return {
3427
+ repayType: 'repay_type',
3428
+ periods: 'periods',
3429
+ };
3430
+ }
3431
+
3432
+ static types(): { [key: string]: any } {
3433
+ return {
3434
+ repayType: 'string',
3435
+ periods: { 'type': 'array', 'itemType': 'string' },
3436
+ };
3437
+ }
3438
+
3439
+ constructor(map?: { [key: string]: any }) {
3440
+ super(map);
3441
+ }
3442
+ }
3443
+
3407
3444
  // 企业日期趋势统计
3408
3445
  export class RtopDateDistribution extends $tea.Model {
3409
3446
  // 统计值
@@ -4738,6 +4775,12 @@ export class RepayTrail extends $tea.Model {
4738
4775
  endTime: string;
4739
4776
  // 试算编号
4740
4777
  trialNo: string;
4778
+ // 优惠后应还金额
4779
+ discountAfterNeedAmt?: number;
4780
+ // 优惠后应还利息
4781
+ discountAfterInterest?: number;
4782
+ // 优惠利息
4783
+ discountInterest?: number;
4741
4784
  static names(): { [key: string]: string } {
4742
4785
  return {
4743
4786
  period: 'period',
@@ -4751,6 +4794,9 @@ export class RepayTrail extends $tea.Model {
4751
4794
  startTime: 'start_time',
4752
4795
  endTime: 'end_time',
4753
4796
  trialNo: 'trial_no',
4797
+ discountAfterNeedAmt: 'discount_after_need_amt',
4798
+ discountAfterInterest: 'discount_after_interest',
4799
+ discountInterest: 'discount_interest',
4754
4800
  };
4755
4801
  }
4756
4802
 
@@ -4767,6 +4813,9 @@ export class RepayTrail extends $tea.Model {
4767
4813
  startTime: 'string',
4768
4814
  endTime: 'string',
4769
4815
  trialNo: 'string',
4816
+ discountAfterNeedAmt: 'number',
4817
+ discountAfterInterest: 'number',
4818
+ discountInterest: 'number',
4770
4819
  };
4771
4820
  }
4772
4821
 
@@ -4874,6 +4923,73 @@ export class XNameValuePair extends $tea.Model {
4874
4923
  }
4875
4924
  }
4876
4925
 
4926
+ export class BatchqueryCreditshieldProductInfoRequest extends $tea.Model {
4927
+ // OAuth模式下的授权token
4928
+ authToken?: string;
4929
+ productInstanceId?: string;
4930
+ // 查询编码: 1.还款概率评估 2.经济波动检测 3.触达前筛等
4931
+ queryCode: string;
4932
+ // 查询信息集合
4933
+ queryInfos?: QueryInfo[];
4934
+ static names(): { [key: string]: string } {
4935
+ return {
4936
+ authToken: 'auth_token',
4937
+ productInstanceId: 'product_instance_id',
4938
+ queryCode: 'query_code',
4939
+ queryInfos: 'query_infos',
4940
+ };
4941
+ }
4942
+
4943
+ static types(): { [key: string]: any } {
4944
+ return {
4945
+ authToken: 'string',
4946
+ productInstanceId: 'string',
4947
+ queryCode: 'string',
4948
+ queryInfos: { 'type': 'array', 'itemType': QueryInfo },
4949
+ };
4950
+ }
4951
+
4952
+ constructor(map?: { [key: string]: any }) {
4953
+ super(map);
4954
+ }
4955
+ }
4956
+
4957
+ export class BatchqueryCreditshieldProductInfoResponse extends $tea.Model {
4958
+ // 请求唯一ID,用于链路跟踪和问题排查
4959
+ reqMsgId?: string;
4960
+ // 结果码,一般OK表示调用成功
4961
+ resultCode?: string;
4962
+ // 异常信息的文本描述
4963
+ resultMsg?: string;
4964
+ // 查询结果是否成功
4965
+ success?: boolean;
4966
+ // 查询结果
4967
+ queryResults?: QueryResult[];
4968
+ static names(): { [key: string]: string } {
4969
+ return {
4970
+ reqMsgId: 'req_msg_id',
4971
+ resultCode: 'result_code',
4972
+ resultMsg: 'result_msg',
4973
+ success: 'success',
4974
+ queryResults: 'query_results',
4975
+ };
4976
+ }
4977
+
4978
+ static types(): { [key: string]: any } {
4979
+ return {
4980
+ reqMsgId: 'string',
4981
+ resultCode: 'string',
4982
+ resultMsg: 'string',
4983
+ success: 'boolean',
4984
+ queryResults: { 'type': 'array', 'itemType': QueryResult },
4985
+ };
4986
+ }
4987
+
4988
+ constructor(map?: { [key: string]: any }) {
4989
+ super(map);
4990
+ }
4991
+ }
4992
+
4877
4993
  export class QuerySecurityPolicyRequest extends $tea.Model {
4878
4994
  // OAuth模式下的授权token
4879
4995
  authToken?: string;
@@ -5516,93 +5632,22 @@ export class QueryBatchSecurityPolicyResponse extends $tea.Model {
5516
5632
  }
5517
5633
  }
5518
5634
 
5519
- export class QueryFhtestFhRequest extends $tea.Model {
5520
- // OAuth模式下的授权token
5521
- authToken?: string;
5522
- productInstanceId?: string;
5523
- // 名称
5524
- name: string;
5525
- // 年龄
5526
- age: number;
5527
- // 判断字段
5528
- judge?: boolean;
5529
- static names(): { [key: string]: string } {
5530
- return {
5531
- authToken: 'auth_token',
5532
- productInstanceId: 'product_instance_id',
5533
- name: 'name',
5534
- age: 'age',
5535
- judge: 'judge',
5536
- };
5537
- }
5538
-
5539
- static types(): { [key: string]: any } {
5540
- return {
5541
- authToken: 'string',
5542
- productInstanceId: 'string',
5543
- name: 'string',
5544
- age: 'number',
5545
- judge: 'boolean',
5546
- };
5547
- }
5548
-
5549
- constructor(map?: { [key: string]: any }) {
5550
- super(map);
5551
- }
5552
- }
5553
-
5554
- export class QueryFhtestFhResponse extends $tea.Model {
5555
- // 请求唯一ID,用于链路跟踪和问题排查
5556
- reqMsgId?: string;
5557
- // 结果码,一般OK表示调用成功
5558
- resultCode?: string;
5559
- // 异常信息的文本描述
5560
- resultMsg?: string;
5561
- // 是否成功
5562
- success?: boolean;
5563
- // 字符串数组
5564
- queryResults?: string[];
5565
- static names(): { [key: string]: string } {
5566
- return {
5567
- reqMsgId: 'req_msg_id',
5568
- resultCode: 'result_code',
5569
- resultMsg: 'result_msg',
5570
- success: 'success',
5571
- queryResults: 'query_results',
5572
- };
5573
- }
5574
-
5575
- static types(): { [key: string]: any } {
5576
- return {
5577
- reqMsgId: 'string',
5578
- resultCode: 'string',
5579
- resultMsg: 'string',
5580
- success: 'boolean',
5581
- queryResults: { 'type': 'array', 'itemType': 'string' },
5582
- };
5583
- }
5584
-
5585
- constructor(map?: { [key: string]: any }) {
5586
- super(map);
5587
- }
5588
- }
5589
-
5590
5635
  export class QueryCreditshieldProductBatchRequest extends $tea.Model {
5591
5636
  // OAuth模式下的授权token
5592
5637
  authToken?: string;
5593
5638
  productInstanceId?: string;
5594
- // 查询类型:
5639
+ // 查询编码:
5595
5640
  // 1.还款概率评估
5596
5641
  // 2.经济波动检测
5597
5642
  // 3.触达前筛
5598
- queryType: number;
5643
+ queryCode: string;
5599
5644
  // 查询信息集合
5600
- queryInfos: QueryInfo[];
5645
+ queryInfos?: QueryInfo[];
5601
5646
  static names(): { [key: string]: string } {
5602
5647
  return {
5603
5648
  authToken: 'auth_token',
5604
5649
  productInstanceId: 'product_instance_id',
5605
- queryType: 'query_type',
5650
+ queryCode: 'query_code',
5606
5651
  queryInfos: 'query_infos',
5607
5652
  };
5608
5653
  }
@@ -5611,7 +5656,7 @@ export class QueryCreditshieldProductBatchRequest extends $tea.Model {
5611
5656
  return {
5612
5657
  authToken: 'string',
5613
5658
  productInstanceId: 'string',
5614
- queryType: 'number',
5659
+ queryCode: 'string',
5615
5660
  queryInfos: { 'type': 'array', 'itemType': QueryInfo },
5616
5661
  };
5617
5662
  }
@@ -9099,6 +9144,8 @@ export class CountDubbridgeRepayReftrialRequest extends $tea.Model {
9099
9144
  repayType: string;
9100
9145
  // 还款日
9101
9146
  repayDate?: string;
9147
+ // 优惠券id
9148
+ couponId?: string;
9102
9149
  static names(): { [key: string]: string } {
9103
9150
  return {
9104
9151
  authToken: 'auth_token',
@@ -9110,6 +9157,7 @@ export class CountDubbridgeRepayReftrialRequest extends $tea.Model {
9110
9157
  applyPeriod: 'apply_period',
9111
9158
  repayType: 'repay_type',
9112
9159
  repayDate: 'repay_date',
9160
+ couponId: 'coupon_id',
9113
9161
  };
9114
9162
  }
9115
9163
 
@@ -9124,6 +9172,7 @@ export class CountDubbridgeRepayReftrialRequest extends $tea.Model {
9124
9172
  applyPeriod: 'number',
9125
9173
  repayType: 'string',
9126
9174
  repayDate: 'string',
9175
+ couponId: 'string',
9127
9176
  };
9128
9177
  }
9129
9178
 
@@ -9437,6 +9486,8 @@ export class ApplyDubbridgeUsecreditRequest extends $tea.Model {
9437
9486
  bankCardNo?: string;
9438
9487
  // 影像件信息
9439
9488
  materials?: Material[];
9489
+ // 优惠券id
9490
+ couponId?: string;
9440
9491
  static names(): { [key: string]: string } {
9441
9492
  return {
9442
9493
  authToken: 'auth_token',
@@ -9455,6 +9506,7 @@ export class ApplyDubbridgeUsecreditRequest extends $tea.Model {
9455
9506
  loanInstCode: 'loan_inst_code',
9456
9507
  bankCardNo: 'bank_card_no',
9457
9508
  materials: 'materials',
9509
+ couponId: 'coupon_id',
9458
9510
  };
9459
9511
  }
9460
9512
 
@@ -9476,6 +9528,7 @@ export class ApplyDubbridgeUsecreditRequest extends $tea.Model {
9476
9528
  loanInstCode: 'string',
9477
9529
  bankCardNo: 'string',
9478
9530
  materials: { 'type': 'array', 'itemType': Material },
9531
+ couponId: 'string',
9479
9532
  };
9480
9533
  }
9481
9534
 
@@ -10712,6 +10765,140 @@ export class QueryDubbridgeUserAggregationinfoResponse extends $tea.Model {
10712
10765
  }
10713
10766
  }
10714
10767
 
10768
+ export class QueryDubbridgeMarketingCouponlistRequest extends $tea.Model {
10769
+ // OAuth模式下的授权token
10770
+ authToken?: string;
10771
+ productInstanceId?: string;
10772
+ // 客户号
10773
+ customerNo: string;
10774
+ // 优惠券状态
10775
+ status?: string;
10776
+ // 页码
10777
+ page?: number;
10778
+ // 每页数量
10779
+ pageSize?: number;
10780
+ static names(): { [key: string]: string } {
10781
+ return {
10782
+ authToken: 'auth_token',
10783
+ productInstanceId: 'product_instance_id',
10784
+ customerNo: 'customer_no',
10785
+ status: 'status',
10786
+ page: 'page',
10787
+ pageSize: 'page_size',
10788
+ };
10789
+ }
10790
+
10791
+ static types(): { [key: string]: any } {
10792
+ return {
10793
+ authToken: 'string',
10794
+ productInstanceId: 'string',
10795
+ customerNo: 'string',
10796
+ status: 'string',
10797
+ page: 'number',
10798
+ pageSize: 'number',
10799
+ };
10800
+ }
10801
+
10802
+ constructor(map?: { [key: string]: any }) {
10803
+ super(map);
10804
+ }
10805
+ }
10806
+
10807
+ export class QueryDubbridgeMarketingCouponlistResponse extends $tea.Model {
10808
+ // 请求唯一ID,用于链路跟踪和问题排查
10809
+ reqMsgId?: string;
10810
+ // 结果码,一般OK表示调用成功
10811
+ resultCode?: string;
10812
+ // 异常信息的文本描述
10813
+ resultMsg?: string;
10814
+ // 优惠券列表
10815
+ couponList?: CouponInfo[];
10816
+ static names(): { [key: string]: string } {
10817
+ return {
10818
+ reqMsgId: 'req_msg_id',
10819
+ resultCode: 'result_code',
10820
+ resultMsg: 'result_msg',
10821
+ couponList: 'coupon_list',
10822
+ };
10823
+ }
10824
+
10825
+ static types(): { [key: string]: any } {
10826
+ return {
10827
+ reqMsgId: 'string',
10828
+ resultCode: 'string',
10829
+ resultMsg: 'string',
10830
+ couponList: { 'type': 'array', 'itemType': CouponInfo },
10831
+ };
10832
+ }
10833
+
10834
+ constructor(map?: { [key: string]: any }) {
10835
+ super(map);
10836
+ }
10837
+ }
10838
+
10839
+ export class QueryDubbridgeRepaytypeInfoRequest extends $tea.Model {
10840
+ // OAuth模式下的授权token
10841
+ authToken?: string;
10842
+ productInstanceId?: string;
10843
+ // 客户号
10844
+ customerNo: string;
10845
+ // 资金方编号
10846
+ fundCode: string;
10847
+ static names(): { [key: string]: string } {
10848
+ return {
10849
+ authToken: 'auth_token',
10850
+ productInstanceId: 'product_instance_id',
10851
+ customerNo: 'customer_no',
10852
+ fundCode: 'fund_code',
10853
+ };
10854
+ }
10855
+
10856
+ static types(): { [key: string]: any } {
10857
+ return {
10858
+ authToken: 'string',
10859
+ productInstanceId: 'string',
10860
+ customerNo: 'string',
10861
+ fundCode: 'string',
10862
+ };
10863
+ }
10864
+
10865
+ constructor(map?: { [key: string]: any }) {
10866
+ super(map);
10867
+ }
10868
+ }
10869
+
10870
+ export class QueryDubbridgeRepaytypeInfoResponse extends $tea.Model {
10871
+ // 请求唯一ID,用于链路跟踪和问题排查
10872
+ reqMsgId?: string;
10873
+ // 结果码,一般OK表示调用成功
10874
+ resultCode?: string;
10875
+ // 异常信息的文本描述
10876
+ resultMsg?: string;
10877
+ // 还款方式/借款期数集合
10878
+ repayTypeInfoList?: PlatformRepayTypeInfo[];
10879
+ static names(): { [key: string]: string } {
10880
+ return {
10881
+ reqMsgId: 'req_msg_id',
10882
+ resultCode: 'result_code',
10883
+ resultMsg: 'result_msg',
10884
+ repayTypeInfoList: 'repay_type_info_list',
10885
+ };
10886
+ }
10887
+
10888
+ static types(): { [key: string]: any } {
10889
+ return {
10890
+ reqMsgId: 'string',
10891
+ resultCode: 'string',
10892
+ resultMsg: 'string',
10893
+ repayTypeInfoList: { 'type': 'array', 'itemType': PlatformRepayTypeInfo },
10894
+ };
10895
+ }
10896
+
10897
+ constructor(map?: { [key: string]: any }) {
10898
+ super(map);
10899
+ }
10900
+ }
10901
+
10715
10902
  export class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
10716
10903
  // OAuth模式下的授权token
10717
10904
  authToken?: string;
@@ -11035,6 +11222,69 @@ export class ReceiveMdipParamsRbbfileResponse extends $tea.Model {
11035
11222
  }
11036
11223
  }
11037
11224
 
11225
+ export class CallbackMdipAuditRequest extends $tea.Model {
11226
+ // OAuth模式下的授权token
11227
+ authToken?: string;
11228
+ productInstanceId?: string;
11229
+ // 审批结果
11230
+ auditResult: string;
11231
+ // 工单流水号
11232
+ bizCode: string;
11233
+ // 额外信息
11234
+ extend?: string;
11235
+ static names(): { [key: string]: string } {
11236
+ return {
11237
+ authToken: 'auth_token',
11238
+ productInstanceId: 'product_instance_id',
11239
+ auditResult: 'audit_result',
11240
+ bizCode: 'biz_code',
11241
+ extend: 'extend',
11242
+ };
11243
+ }
11244
+
11245
+ static types(): { [key: string]: any } {
11246
+ return {
11247
+ authToken: 'string',
11248
+ productInstanceId: 'string',
11249
+ auditResult: 'string',
11250
+ bizCode: 'string',
11251
+ extend: 'string',
11252
+ };
11253
+ }
11254
+
11255
+ constructor(map?: { [key: string]: any }) {
11256
+ super(map);
11257
+ }
11258
+ }
11259
+
11260
+ export class CallbackMdipAuditResponse extends $tea.Model {
11261
+ // 请求唯一ID,用于链路跟踪和问题排查
11262
+ reqMsgId?: string;
11263
+ // 结果码,一般OK表示调用成功
11264
+ resultCode?: string;
11265
+ // 异常信息的文本描述
11266
+ resultMsg?: string;
11267
+ static names(): { [key: string]: string } {
11268
+ return {
11269
+ reqMsgId: 'req_msg_id',
11270
+ resultCode: 'result_code',
11271
+ resultMsg: 'result_msg',
11272
+ };
11273
+ }
11274
+
11275
+ static types(): { [key: string]: any } {
11276
+ return {
11277
+ reqMsgId: 'string',
11278
+ resultCode: 'string',
11279
+ resultMsg: 'string',
11280
+ };
11281
+ }
11282
+
11283
+ constructor(map?: { [key: string]: any }) {
11284
+ super(map);
11285
+ }
11286
+ }
11287
+
11038
11288
  export class ApplyQmpRtBatchmarketingRequest extends $tea.Model {
11039
11289
  // OAuth模式下的授权token
11040
11290
  authToken?: string;
@@ -20383,7 +20633,7 @@ export class QueryUmktOfflinedecisionPlandetailsRequest extends $tea.Model {
20383
20633
  // 离线圈客配置的ID
20384
20634
  offlineDecisionPlanId: number;
20385
20635
  // 执行日期
20386
- resultDate: string;
20636
+ resultDate?: string;
20387
20637
  static names(): { [key: string]: string } {
20388
20638
  return {
20389
20639
  authToken: 'auth_token',
@@ -20644,7 +20894,7 @@ export default class Client {
20644
20894
  req_msg_id: AntchainUtil.getNonce(),
20645
20895
  access_key: this._accessKeyId,
20646
20896
  base_sdk_version: "TeaSDK-2.0",
20647
- sdk_version: "1.20.2",
20897
+ sdk_version: "1.20.7",
20648
20898
  _prod_code: "RISKPLUS",
20649
20899
  _prod_channel: "undefined",
20650
20900
  };
@@ -20692,6 +20942,25 @@ export default class Client {
20692
20942
  throw $tea.newUnretryableError(_lastRequest);
20693
20943
  }
20694
20944
 
20945
+ /**
20946
+ * Description: 信护盾产品批量查询
20947
+ * Summary: 信护盾产品批量查询
20948
+ */
20949
+ async batchqueryCreditshieldProductInfo(request: BatchqueryCreditshieldProductInfoRequest): Promise<BatchqueryCreditshieldProductInfoResponse> {
20950
+ let runtime = new $Util.RuntimeOptions({ });
20951
+ let headers : {[key: string ]: string} = { };
20952
+ return await this.batchqueryCreditshieldProductInfoEx(request, headers, runtime);
20953
+ }
20954
+
20955
+ /**
20956
+ * Description: 信护盾产品批量查询
20957
+ * Summary: 信护盾产品批量查询
20958
+ */
20959
+ async batchqueryCreditshieldProductInfoEx(request: BatchqueryCreditshieldProductInfoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BatchqueryCreditshieldProductInfoResponse> {
20960
+ Util.validateModel(request);
20961
+ return $tea.cast<BatchqueryCreditshieldProductInfoResponse>(await this.doRequest("1.0", "riskplus.creditshield.product.info.batchquery", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new BatchqueryCreditshieldProductInfoResponse({}));
20962
+ }
20963
+
20695
20964
  /**
20696
20965
  * Description: 风控云风险咨询接口
20697
20966
  * Summary: 风控云风险咨询接口
@@ -20863,25 +21132,6 @@ export default class Client {
20863
21132
  return $tea.cast<QueryBatchSecurityPolicyResponse>(await this.doRequest("1.0", "riskplus.batch.security.policy.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryBatchSecurityPolicyResponse({}));
20864
21133
  }
20865
21134
 
20866
- /**
20867
- * Description: 峰禾API测试
20868
- * Summary: 峰禾API测试
20869
- */
20870
- async queryFhtestFh(request: QueryFhtestFhRequest): Promise<QueryFhtestFhResponse> {
20871
- let runtime = new $Util.RuntimeOptions({ });
20872
- let headers : {[key: string ]: string} = { };
20873
- return await this.queryFhtestFhEx(request, headers, runtime);
20874
- }
20875
-
20876
- /**
20877
- * Description: 峰禾API测试
20878
- * Summary: 峰禾API测试
20879
- */
20880
- async queryFhtestFhEx(request: QueryFhtestFhRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryFhtestFhResponse> {
20881
- Util.validateModel(request);
20882
- return $tea.cast<QueryFhtestFhResponse>(await this.doRequest("1.0", "riskplus.fhtest.fh.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryFhtestFhResponse({}));
20883
- }
20884
-
20885
21135
  /**
20886
21136
  * Description: 信护盾产品批量查询
20887
21137
  * Summary: 信护盾产品批量查询
@@ -22063,6 +22313,44 @@ export default class Client {
22063
22313
  return $tea.cast<QueryDubbridgeUserAggregationinfoResponse>(await this.doRequest("1.0", "riskplus.dubbridge.user.aggregationinfo.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeUserAggregationinfoResponse({}));
22064
22314
  }
22065
22315
 
22316
+ /**
22317
+ * Description: 天枢系统优惠券列表查询接口
22318
+ * Summary: 天枢系统优惠券列表查询接口
22319
+ */
22320
+ async queryDubbridgeMarketingCouponlist(request: QueryDubbridgeMarketingCouponlistRequest): Promise<QueryDubbridgeMarketingCouponlistResponse> {
22321
+ let runtime = new $Util.RuntimeOptions({ });
22322
+ let headers : {[key: string ]: string} = { };
22323
+ return await this.queryDubbridgeMarketingCouponlistEx(request, headers, runtime);
22324
+ }
22325
+
22326
+ /**
22327
+ * Description: 天枢系统优惠券列表查询接口
22328
+ * Summary: 天枢系统优惠券列表查询接口
22329
+ */
22330
+ async queryDubbridgeMarketingCouponlistEx(request: QueryDubbridgeMarketingCouponlistRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeMarketingCouponlistResponse> {
22331
+ Util.validateModel(request);
22332
+ return $tea.cast<QueryDubbridgeMarketingCouponlistResponse>(await this.doRequest("1.0", "riskplus.dubbridge.marketing.couponlist.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeMarketingCouponlistResponse({}));
22333
+ }
22334
+
22335
+ /**
22336
+ * Description: 天枢系统还款方式查询
22337
+ * Summary: 天枢系统还款方式查询
22338
+ */
22339
+ async queryDubbridgeRepaytypeInfo(request: QueryDubbridgeRepaytypeInfoRequest): Promise<QueryDubbridgeRepaytypeInfoResponse> {
22340
+ let runtime = new $Util.RuntimeOptions({ });
22341
+ let headers : {[key: string ]: string} = { };
22342
+ return await this.queryDubbridgeRepaytypeInfoEx(request, headers, runtime);
22343
+ }
22344
+
22345
+ /**
22346
+ * Description: 天枢系统还款方式查询
22347
+ * Summary: 天枢系统还款方式查询
22348
+ */
22349
+ async queryDubbridgeRepaytypeInfoEx(request: QueryDubbridgeRepaytypeInfoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeRepaytypeInfoResponse> {
22350
+ Util.validateModel(request);
22351
+ return $tea.cast<QueryDubbridgeRepaytypeInfoResponse>(await this.doRequest("1.0", "riskplus.dubbridge.repaytype.info.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeRepaytypeInfoResponse({}));
22352
+ }
22353
+
22066
22354
  /**
22067
22355
  * Description: 四要素认证首先调用此接口
22068
22356
  * Summary: 芝麻四要素接口
@@ -22202,6 +22490,25 @@ export default class Client {
22202
22490
  return $tea.cast<ReceiveMdipParamsRbbfileResponse>(await this.doRequest("1.0", "riskplus.mdip.params.rbbfile.receive", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new ReceiveMdipParamsRbbfileResponse({}));
22203
22491
  }
22204
22492
 
22493
+ /**
22494
+ * Description: 多源平台审批回调接口
22495
+ * Summary: 多源平台审批回调接口
22496
+ */
22497
+ async callbackMdipAudit(request: CallbackMdipAuditRequest): Promise<CallbackMdipAuditResponse> {
22498
+ let runtime = new $Util.RuntimeOptions({ });
22499
+ let headers : {[key: string ]: string} = { };
22500
+ return await this.callbackMdipAuditEx(request, headers, runtime);
22501
+ }
22502
+
22503
+ /**
22504
+ * Description: 多源平台审批回调接口
22505
+ * Summary: 多源平台审批回调接口
22506
+ */
22507
+ async callbackMdipAuditEx(request: CallbackMdipAuditRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CallbackMdipAuditResponse> {
22508
+ Util.validateModel(request);
22509
+ return $tea.cast<CallbackMdipAuditResponse>(await this.doRequest("1.0", "riskplus.mdip.audit.callback", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CallbackMdipAuditResponse({}));
22510
+ }
22511
+
22205
22512
  /**
22206
22513
  * Description: 批量实时触达接口
22207
22514
  * Summary: 发起触达任务