@antchain/riskplus 1.20.2 → 1.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +238 -49
- package/dist/client.js +352 -73
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +497 -106
package/src/client.ts
CHANGED
|
@@ -412,14 +412,14 @@ export class CouponInfo extends $tea.Model {
|
|
|
412
412
|
// 优惠券名称
|
|
413
413
|
couponName: string;
|
|
414
414
|
// 优惠券状态
|
|
415
|
-
//
|
|
416
|
-
//
|
|
417
|
-
//
|
|
418
|
-
|
|
415
|
+
// unUsed-未使用
|
|
416
|
+
// Used-已使用
|
|
417
|
+
// Expired-过期
|
|
418
|
+
status: string;
|
|
419
419
|
// 使用场景
|
|
420
420
|
// 01-提款使用
|
|
421
421
|
// 02-还款使用
|
|
422
|
-
|
|
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
|
-
|
|
485
|
-
|
|
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
|
-
|
|
510
|
-
|
|
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
|
-
|
|
5643
|
+
queryCode: string;
|
|
5599
5644
|
// 查询信息集合
|
|
5600
|
-
queryInfos
|
|
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
|
-
|
|
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
|
-
|
|
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,134 @@ 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
|
+
|
|
11288
|
+
export class QueryMdipDataservicePocRequest extends $tea.Model {
|
|
11289
|
+
// OAuth模式下的授权token
|
|
11290
|
+
authToken?: string;
|
|
11291
|
+
productInstanceId?: string;
|
|
11292
|
+
// 服务编码
|
|
11293
|
+
//
|
|
11294
|
+
serviceCode: string;
|
|
11295
|
+
// 服务参数
|
|
11296
|
+
serviceParam: string;
|
|
11297
|
+
static names(): { [key: string]: string } {
|
|
11298
|
+
return {
|
|
11299
|
+
authToken: 'auth_token',
|
|
11300
|
+
productInstanceId: 'product_instance_id',
|
|
11301
|
+
serviceCode: 'service_code',
|
|
11302
|
+
serviceParam: 'service_param',
|
|
11303
|
+
};
|
|
11304
|
+
}
|
|
11305
|
+
|
|
11306
|
+
static types(): { [key: string]: any } {
|
|
11307
|
+
return {
|
|
11308
|
+
authToken: 'string',
|
|
11309
|
+
productInstanceId: 'string',
|
|
11310
|
+
serviceCode: 'string',
|
|
11311
|
+
serviceParam: 'string',
|
|
11312
|
+
};
|
|
11313
|
+
}
|
|
11314
|
+
|
|
11315
|
+
constructor(map?: { [key: string]: any }) {
|
|
11316
|
+
super(map);
|
|
11317
|
+
}
|
|
11318
|
+
}
|
|
11319
|
+
|
|
11320
|
+
export class QueryMdipDataservicePocResponse extends $tea.Model {
|
|
11321
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
11322
|
+
reqMsgId?: string;
|
|
11323
|
+
// 结果码,一般OK表示调用成功
|
|
11324
|
+
resultCode?: string;
|
|
11325
|
+
// 异常信息的文本描述
|
|
11326
|
+
resultMsg?: string;
|
|
11327
|
+
//
|
|
11328
|
+
// 多源查询结果值
|
|
11329
|
+
data?: string;
|
|
11330
|
+
static names(): { [key: string]: string } {
|
|
11331
|
+
return {
|
|
11332
|
+
reqMsgId: 'req_msg_id',
|
|
11333
|
+
resultCode: 'result_code',
|
|
11334
|
+
resultMsg: 'result_msg',
|
|
11335
|
+
data: 'data',
|
|
11336
|
+
};
|
|
11337
|
+
}
|
|
11338
|
+
|
|
11339
|
+
static types(): { [key: string]: any } {
|
|
11340
|
+
return {
|
|
11341
|
+
reqMsgId: 'string',
|
|
11342
|
+
resultCode: 'string',
|
|
11343
|
+
resultMsg: 'string',
|
|
11344
|
+
data: 'string',
|
|
11345
|
+
};
|
|
11346
|
+
}
|
|
11347
|
+
|
|
11348
|
+
constructor(map?: { [key: string]: any }) {
|
|
11349
|
+
super(map);
|
|
11350
|
+
}
|
|
11351
|
+
}
|
|
11352
|
+
|
|
11038
11353
|
export class ApplyQmpRtBatchmarketingRequest extends $tea.Model {
|
|
11039
11354
|
// OAuth模式下的授权token
|
|
11040
11355
|
authToken?: string;
|
|
@@ -20383,7 +20698,7 @@ export class QueryUmktOfflinedecisionPlandetailsRequest extends $tea.Model {
|
|
|
20383
20698
|
// 离线圈客配置的ID
|
|
20384
20699
|
offlineDecisionPlanId: number;
|
|
20385
20700
|
// 执行日期
|
|
20386
|
-
resultDate
|
|
20701
|
+
resultDate?: string;
|
|
20387
20702
|
static names(): { [key: string]: string } {
|
|
20388
20703
|
return {
|
|
20389
20704
|
authToken: 'auth_token',
|
|
@@ -20644,7 +20959,7 @@ export default class Client {
|
|
|
20644
20959
|
req_msg_id: AntchainUtil.getNonce(),
|
|
20645
20960
|
access_key: this._accessKeyId,
|
|
20646
20961
|
base_sdk_version: "TeaSDK-2.0",
|
|
20647
|
-
sdk_version: "1.
|
|
20962
|
+
sdk_version: "1.21.0",
|
|
20648
20963
|
_prod_code: "RISKPLUS",
|
|
20649
20964
|
_prod_channel: "undefined",
|
|
20650
20965
|
};
|
|
@@ -20692,6 +21007,25 @@ export default class Client {
|
|
|
20692
21007
|
throw $tea.newUnretryableError(_lastRequest);
|
|
20693
21008
|
}
|
|
20694
21009
|
|
|
21010
|
+
/**
|
|
21011
|
+
* Description: 信护盾产品批量查询
|
|
21012
|
+
* Summary: 信护盾产品批量查询
|
|
21013
|
+
*/
|
|
21014
|
+
async batchqueryCreditshieldProductInfo(request: BatchqueryCreditshieldProductInfoRequest): Promise<BatchqueryCreditshieldProductInfoResponse> {
|
|
21015
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
21016
|
+
let headers : {[key: string ]: string} = { };
|
|
21017
|
+
return await this.batchqueryCreditshieldProductInfoEx(request, headers, runtime);
|
|
21018
|
+
}
|
|
21019
|
+
|
|
21020
|
+
/**
|
|
21021
|
+
* Description: 信护盾产品批量查询
|
|
21022
|
+
* Summary: 信护盾产品批量查询
|
|
21023
|
+
*/
|
|
21024
|
+
async batchqueryCreditshieldProductInfoEx(request: BatchqueryCreditshieldProductInfoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BatchqueryCreditshieldProductInfoResponse> {
|
|
21025
|
+
Util.validateModel(request);
|
|
21026
|
+
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({}));
|
|
21027
|
+
}
|
|
21028
|
+
|
|
20695
21029
|
/**
|
|
20696
21030
|
* Description: 风控云风险咨询接口
|
|
20697
21031
|
* Summary: 风控云风险咨询接口
|
|
@@ -20863,25 +21197,6 @@ export default class Client {
|
|
|
20863
21197
|
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
21198
|
}
|
|
20865
21199
|
|
|
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
21200
|
/**
|
|
20886
21201
|
* Description: 信护盾产品批量查询
|
|
20887
21202
|
* Summary: 信护盾产品批量查询
|
|
@@ -22063,6 +22378,44 @@ export default class Client {
|
|
|
22063
22378
|
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
22379
|
}
|
|
22065
22380
|
|
|
22381
|
+
/**
|
|
22382
|
+
* Description: 天枢系统优惠券列表查询接口
|
|
22383
|
+
* Summary: 天枢系统优惠券列表查询接口
|
|
22384
|
+
*/
|
|
22385
|
+
async queryDubbridgeMarketingCouponlist(request: QueryDubbridgeMarketingCouponlistRequest): Promise<QueryDubbridgeMarketingCouponlistResponse> {
|
|
22386
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
22387
|
+
let headers : {[key: string ]: string} = { };
|
|
22388
|
+
return await this.queryDubbridgeMarketingCouponlistEx(request, headers, runtime);
|
|
22389
|
+
}
|
|
22390
|
+
|
|
22391
|
+
/**
|
|
22392
|
+
* Description: 天枢系统优惠券列表查询接口
|
|
22393
|
+
* Summary: 天枢系统优惠券列表查询接口
|
|
22394
|
+
*/
|
|
22395
|
+
async queryDubbridgeMarketingCouponlistEx(request: QueryDubbridgeMarketingCouponlistRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeMarketingCouponlistResponse> {
|
|
22396
|
+
Util.validateModel(request);
|
|
22397
|
+
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({}));
|
|
22398
|
+
}
|
|
22399
|
+
|
|
22400
|
+
/**
|
|
22401
|
+
* Description: 天枢系统还款方式查询
|
|
22402
|
+
* Summary: 天枢系统还款方式查询
|
|
22403
|
+
*/
|
|
22404
|
+
async queryDubbridgeRepaytypeInfo(request: QueryDubbridgeRepaytypeInfoRequest): Promise<QueryDubbridgeRepaytypeInfoResponse> {
|
|
22405
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
22406
|
+
let headers : {[key: string ]: string} = { };
|
|
22407
|
+
return await this.queryDubbridgeRepaytypeInfoEx(request, headers, runtime);
|
|
22408
|
+
}
|
|
22409
|
+
|
|
22410
|
+
/**
|
|
22411
|
+
* Description: 天枢系统还款方式查询
|
|
22412
|
+
* Summary: 天枢系统还款方式查询
|
|
22413
|
+
*/
|
|
22414
|
+
async queryDubbridgeRepaytypeInfoEx(request: QueryDubbridgeRepaytypeInfoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeRepaytypeInfoResponse> {
|
|
22415
|
+
Util.validateModel(request);
|
|
22416
|
+
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({}));
|
|
22417
|
+
}
|
|
22418
|
+
|
|
22066
22419
|
/**
|
|
22067
22420
|
* Description: 四要素认证首先调用此接口
|
|
22068
22421
|
* Summary: 芝麻四要素接口
|
|
@@ -22202,6 +22555,44 @@ export default class Client {
|
|
|
22202
22555
|
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
22556
|
}
|
|
22204
22557
|
|
|
22558
|
+
/**
|
|
22559
|
+
* Description: 多源平台审批回调接口
|
|
22560
|
+
* Summary: 多源平台审批回调接口
|
|
22561
|
+
*/
|
|
22562
|
+
async callbackMdipAudit(request: CallbackMdipAuditRequest): Promise<CallbackMdipAuditResponse> {
|
|
22563
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
22564
|
+
let headers : {[key: string ]: string} = { };
|
|
22565
|
+
return await this.callbackMdipAuditEx(request, headers, runtime);
|
|
22566
|
+
}
|
|
22567
|
+
|
|
22568
|
+
/**
|
|
22569
|
+
* Description: 多源平台审批回调接口
|
|
22570
|
+
* Summary: 多源平台审批回调接口
|
|
22571
|
+
*/
|
|
22572
|
+
async callbackMdipAuditEx(request: CallbackMdipAuditRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CallbackMdipAuditResponse> {
|
|
22573
|
+
Util.validateModel(request);
|
|
22574
|
+
return $tea.cast<CallbackMdipAuditResponse>(await this.doRequest("1.0", "riskplus.mdip.audit.callback", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CallbackMdipAuditResponse({}));
|
|
22575
|
+
}
|
|
22576
|
+
|
|
22577
|
+
/**
|
|
22578
|
+
* Description: 该接口仅限于POC场景下使用, 关键时期会执行限流操作,并且不会通知到上游依赖服务。
|
|
22579
|
+
* Summary: 多源融合平台的POC数据服务查询接口
|
|
22580
|
+
*/
|
|
22581
|
+
async queryMdipDataservicePoc(request: QueryMdipDataservicePocRequest): Promise<QueryMdipDataservicePocResponse> {
|
|
22582
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
22583
|
+
let headers : {[key: string ]: string} = { };
|
|
22584
|
+
return await this.queryMdipDataservicePocEx(request, headers, runtime);
|
|
22585
|
+
}
|
|
22586
|
+
|
|
22587
|
+
/**
|
|
22588
|
+
* Description: 该接口仅限于POC场景下使用, 关键时期会执行限流操作,并且不会通知到上游依赖服务。
|
|
22589
|
+
* Summary: 多源融合平台的POC数据服务查询接口
|
|
22590
|
+
*/
|
|
22591
|
+
async queryMdipDataservicePocEx(request: QueryMdipDataservicePocRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryMdipDataservicePocResponse> {
|
|
22592
|
+
Util.validateModel(request);
|
|
22593
|
+
return $tea.cast<QueryMdipDataservicePocResponse>(await this.doRequest("1.0", "riskplus.mdip.dataservice.poc.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryMdipDataservicePocResponse({}));
|
|
22594
|
+
}
|
|
22595
|
+
|
|
22205
22596
|
/**
|
|
22206
22597
|
* Description: 批量实时触达接口
|
|
22207
22598
|
* Summary: 发起触达任务
|