@antchain/riskplus 1.19.28 → 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/dist/client.d.ts +426 -0
- package/dist/client.js +650 -2
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +1016 -50
package/src/client.ts
CHANGED
|
@@ -405,6 +405,143 @@ export class DecisionFlow extends $tea.Model {
|
|
|
405
405
|
}
|
|
406
406
|
}
|
|
407
407
|
|
|
408
|
+
// 优惠券信息
|
|
409
|
+
export class CouponInfo extends $tea.Model {
|
|
410
|
+
// 优惠券Id
|
|
411
|
+
couponId: string;
|
|
412
|
+
// 优惠券名称
|
|
413
|
+
couponName: string;
|
|
414
|
+
// 优惠券状态
|
|
415
|
+
// unUsed-未使用
|
|
416
|
+
// Used-已使用
|
|
417
|
+
// Expired-过期
|
|
418
|
+
status: string;
|
|
419
|
+
// 使用场景
|
|
420
|
+
// 01-提款使用
|
|
421
|
+
// 02-还款使用
|
|
422
|
+
useCondition: string;
|
|
423
|
+
// 优惠码
|
|
424
|
+
couponCode?: string;
|
|
425
|
+
// 优惠券类型
|
|
426
|
+
// 01-金额优惠
|
|
427
|
+
// 02-天数优惠
|
|
428
|
+
// 03-折扣优惠
|
|
429
|
+
// 04-期数优惠
|
|
430
|
+
// 05-固定利率
|
|
431
|
+
couponType?: string;
|
|
432
|
+
// 优惠券面额
|
|
433
|
+
// coupon_type=01 时为优惠金额
|
|
434
|
+
// coupon_type=02 时为减免天数
|
|
435
|
+
// coupon_type=03 时为折扣值(如6 折)
|
|
436
|
+
// coupon_type=04 时为减免期数
|
|
437
|
+
// coupon_type=05 时为折扣值(如 8.88 为利率8.88%)
|
|
438
|
+
couponValue?: string;
|
|
439
|
+
// 当 coupon_type=01 时,才会有优惠金额
|
|
440
|
+
couponAmount?: string;
|
|
441
|
+
// 过期时间yyyy-MM-dd HH:mm:ss
|
|
442
|
+
expiredTime?: string;
|
|
443
|
+
// 生效时间yyyy-MM-dd HH:mm:ss
|
|
444
|
+
effectiveTime?: string;
|
|
445
|
+
// 使用规则
|
|
446
|
+
useDetail?: string;
|
|
447
|
+
// 贷款最低金额
|
|
448
|
+
minAmount?: string;
|
|
449
|
+
// 贷款最高金额
|
|
450
|
+
maxAmount?: string;
|
|
451
|
+
// 最低贷款期数
|
|
452
|
+
minPeriod?: string;
|
|
453
|
+
// 最高贷款期数
|
|
454
|
+
maxPeriod?: string;
|
|
455
|
+
// 贷款最低期限天数
|
|
456
|
+
minDay?: string;
|
|
457
|
+
// 还款方式
|
|
458
|
+
// 1-等额本息
|
|
459
|
+
// 2-等额本金
|
|
460
|
+
// 3-等本等费
|
|
461
|
+
// 4-按期付息到期还本
|
|
462
|
+
// 5-到期一次性还本付息
|
|
463
|
+
// 6-等本等费-总费率
|
|
464
|
+
// 7-等额本息(长期)
|
|
465
|
+
repaymentMethod?: string;
|
|
466
|
+
// 是否有贷款期数要求
|
|
467
|
+
// 0:否
|
|
468
|
+
// 1:是
|
|
469
|
+
isPeriodLimit?: string;
|
|
470
|
+
// 贷款期限要求还款条件
|
|
471
|
+
// 01:可提前还款
|
|
472
|
+
// 02:不可提前还款
|
|
473
|
+
// isPeriodLimit=1 && repayCondition=01 代表:有可提前还款锁期
|
|
474
|
+
// isPeriodLimit=1 && repayCondition=02 代表:有不可提前还款锁期
|
|
475
|
+
repayCondition?: string;
|
|
476
|
+
// 还款场景
|
|
477
|
+
// 01-到期还款
|
|
478
|
+
// 02-即期还款
|
|
479
|
+
repayWays?: string;
|
|
480
|
+
// 优惠模板Id
|
|
481
|
+
couponModelNo?: string;
|
|
482
|
+
// 至到期:X年X月X日
|
|
483
|
+
// 0:不是至到期券
|
|
484
|
+
// 1:是至到期券
|
|
485
|
+
toMaturity?: string;
|
|
486
|
+
static names(): { [key: string]: string } {
|
|
487
|
+
return {
|
|
488
|
+
couponId: 'coupon_id',
|
|
489
|
+
couponName: 'coupon_name',
|
|
490
|
+
status: 'status',
|
|
491
|
+
useCondition: 'use_condition',
|
|
492
|
+
couponCode: 'coupon_code',
|
|
493
|
+
couponType: 'coupon_type',
|
|
494
|
+
couponValue: 'coupon_value',
|
|
495
|
+
couponAmount: 'coupon_amount',
|
|
496
|
+
expiredTime: 'expired_time',
|
|
497
|
+
effectiveTime: 'effective_time',
|
|
498
|
+
useDetail: 'use_detail',
|
|
499
|
+
minAmount: 'min_amount',
|
|
500
|
+
maxAmount: 'max_amount',
|
|
501
|
+
minPeriod: 'min_period',
|
|
502
|
+
maxPeriod: 'max_period',
|
|
503
|
+
minDay: 'min_day',
|
|
504
|
+
repaymentMethod: 'repayment_method',
|
|
505
|
+
isPeriodLimit: 'is_period_limit',
|
|
506
|
+
repayCondition: 'repay_condition',
|
|
507
|
+
repayWays: 'repay_ways',
|
|
508
|
+
couponModelNo: 'coupon_model_no',
|
|
509
|
+
toMaturity: 'to_maturity',
|
|
510
|
+
};
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
static types(): { [key: string]: any } {
|
|
514
|
+
return {
|
|
515
|
+
couponId: 'string',
|
|
516
|
+
couponName: 'string',
|
|
517
|
+
status: 'string',
|
|
518
|
+
useCondition: 'string',
|
|
519
|
+
couponCode: 'string',
|
|
520
|
+
couponType: 'string',
|
|
521
|
+
couponValue: 'string',
|
|
522
|
+
couponAmount: 'string',
|
|
523
|
+
expiredTime: 'string',
|
|
524
|
+
effectiveTime: 'string',
|
|
525
|
+
useDetail: 'string',
|
|
526
|
+
minAmount: 'string',
|
|
527
|
+
maxAmount: 'string',
|
|
528
|
+
minPeriod: 'string',
|
|
529
|
+
maxPeriod: 'string',
|
|
530
|
+
minDay: 'string',
|
|
531
|
+
repaymentMethod: 'string',
|
|
532
|
+
isPeriodLimit: 'string',
|
|
533
|
+
repayCondition: 'string',
|
|
534
|
+
repayWays: 'string',
|
|
535
|
+
couponModelNo: 'string',
|
|
536
|
+
toMaturity: 'string',
|
|
537
|
+
};
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
constructor(map?: { [key: string]: any }) {
|
|
541
|
+
super(map);
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
|
|
408
545
|
// 用户的混合策略圈客结果
|
|
409
546
|
export class UmktInfoModel extends $tea.Model {
|
|
410
547
|
// 场景策略id
|
|
@@ -1042,6 +1179,69 @@ export class SecurityDataQueryStruct extends $tea.Model {
|
|
|
1042
1179
|
}
|
|
1043
1180
|
}
|
|
1044
1181
|
|
|
1182
|
+
// 天枢用户聚合状态信息
|
|
1183
|
+
export class UserAggregationInfo extends $tea.Model {
|
|
1184
|
+
// 状态
|
|
1185
|
+
// 0: 未授信
|
|
1186
|
+
// 1: 授信中
|
|
1187
|
+
// 2: 已授信未支用
|
|
1188
|
+
// 3: 支用中
|
|
1189
|
+
// 4: 已支用
|
|
1190
|
+
// 5: 借据逾期
|
|
1191
|
+
// 6: 授信过期
|
|
1192
|
+
// 7: 授信冻结
|
|
1193
|
+
// 8: 可重新授信
|
|
1194
|
+
// 9: 授信拒绝
|
|
1195
|
+
status: string;
|
|
1196
|
+
// 总额度
|
|
1197
|
+
creditAmount?: number;
|
|
1198
|
+
// 可用额度
|
|
1199
|
+
availableAmount?: number;
|
|
1200
|
+
// 待还总金额
|
|
1201
|
+
shouldPayAmount?: number;
|
|
1202
|
+
// 逾期总金额
|
|
1203
|
+
overdueAmount?: number;
|
|
1204
|
+
// 下一期应还金额
|
|
1205
|
+
nextPeriodAmount?: number;
|
|
1206
|
+
// 下一期还款时间yyyy-MM-dd
|
|
1207
|
+
nextPeriodRepayTime?: string;
|
|
1208
|
+
// 下次可授信时间yyyy-MM-dd
|
|
1209
|
+
nextApplyTime?: string;
|
|
1210
|
+
// 优惠券列表
|
|
1211
|
+
couponList?: CouponInfo[];
|
|
1212
|
+
static names(): { [key: string]: string } {
|
|
1213
|
+
return {
|
|
1214
|
+
status: 'status',
|
|
1215
|
+
creditAmount: 'credit_amount',
|
|
1216
|
+
availableAmount: 'available_amount',
|
|
1217
|
+
shouldPayAmount: 'should_pay_amount',
|
|
1218
|
+
overdueAmount: 'overdue_amount',
|
|
1219
|
+
nextPeriodAmount: 'next_period_amount',
|
|
1220
|
+
nextPeriodRepayTime: 'next_period_repay_time',
|
|
1221
|
+
nextApplyTime: 'next_apply_time',
|
|
1222
|
+
couponList: 'coupon_list',
|
|
1223
|
+
};
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
static types(): { [key: string]: any } {
|
|
1227
|
+
return {
|
|
1228
|
+
status: 'string',
|
|
1229
|
+
creditAmount: 'number',
|
|
1230
|
+
availableAmount: 'number',
|
|
1231
|
+
shouldPayAmount: 'number',
|
|
1232
|
+
overdueAmount: 'number',
|
|
1233
|
+
nextPeriodAmount: 'number',
|
|
1234
|
+
nextPeriodRepayTime: 'string',
|
|
1235
|
+
nextApplyTime: 'string',
|
|
1236
|
+
couponList: { 'type': 'array', 'itemType': CouponInfo },
|
|
1237
|
+
};
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
constructor(map?: { [key: string]: any }) {
|
|
1241
|
+
super(map);
|
|
1242
|
+
}
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1045
1245
|
// 场景决策列表
|
|
1046
1246
|
export class SceneInfos extends $tea.Model {
|
|
1047
1247
|
// 决策结果
|
|
@@ -1461,6 +1661,31 @@ export class RtopRiskStormCompanyAnnualReport extends $tea.Model {
|
|
|
1461
1661
|
}
|
|
1462
1662
|
}
|
|
1463
1663
|
|
|
1664
|
+
// 信护盾产品查询信息
|
|
1665
|
+
export class QueryInfo extends $tea.Model {
|
|
1666
|
+
// key
|
|
1667
|
+
key?: string;
|
|
1668
|
+
// value
|
|
1669
|
+
value?: string;
|
|
1670
|
+
static names(): { [key: string]: string } {
|
|
1671
|
+
return {
|
|
1672
|
+
key: 'key',
|
|
1673
|
+
value: 'value',
|
|
1674
|
+
};
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
static types(): { [key: string]: any } {
|
|
1678
|
+
return {
|
|
1679
|
+
key: 'string',
|
|
1680
|
+
value: 'string',
|
|
1681
|
+
};
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
constructor(map?: { [key: string]: any }) {
|
|
1685
|
+
super(map);
|
|
1686
|
+
}
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1464
1689
|
// 营销盾场景策略上传结果
|
|
1465
1690
|
export class StrategyUploadResult extends $tea.Model {
|
|
1466
1691
|
// 元数据id
|
|
@@ -2462,6 +2687,31 @@ export class ModelDetails extends $tea.Model {
|
|
|
2462
2687
|
}
|
|
2463
2688
|
}
|
|
2464
2689
|
|
|
2690
|
+
// 资金方信息
|
|
2691
|
+
export class GwFundRouterResult extends $tea.Model {
|
|
2692
|
+
// 资金方代码
|
|
2693
|
+
fundCode: string;
|
|
2694
|
+
// 资金方简称
|
|
2695
|
+
abbreFundName: string;
|
|
2696
|
+
static names(): { [key: string]: string } {
|
|
2697
|
+
return {
|
|
2698
|
+
fundCode: 'fund_code',
|
|
2699
|
+
abbreFundName: 'abbre_fund_name',
|
|
2700
|
+
};
|
|
2701
|
+
}
|
|
2702
|
+
|
|
2703
|
+
static types(): { [key: string]: any } {
|
|
2704
|
+
return {
|
|
2705
|
+
fundCode: 'string',
|
|
2706
|
+
abbreFundName: 'string',
|
|
2707
|
+
};
|
|
2708
|
+
}
|
|
2709
|
+
|
|
2710
|
+
constructor(map?: { [key: string]: any }) {
|
|
2711
|
+
super(map);
|
|
2712
|
+
}
|
|
2713
|
+
}
|
|
2714
|
+
|
|
2465
2715
|
// 标签过滤配置
|
|
2466
2716
|
export class RiskLabelFilterConfigInfo extends $tea.Model {
|
|
2467
2717
|
// 创建时间
|
|
@@ -3164,6 +3414,33 @@ export class RtopStarCompanyInfo extends $tea.Model {
|
|
|
3164
3414
|
}
|
|
3165
3415
|
}
|
|
3166
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
|
+
|
|
3167
3444
|
// 企业日期趋势统计
|
|
3168
3445
|
export class RtopDateDistribution extends $tea.Model {
|
|
3169
3446
|
// 统计值
|
|
@@ -3363,6 +3640,31 @@ export class CustomerBankCardInfo extends $tea.Model {
|
|
|
3363
3640
|
}
|
|
3364
3641
|
}
|
|
3365
3642
|
|
|
3643
|
+
// 查询结果
|
|
3644
|
+
export class QueryResult extends $tea.Model {
|
|
3645
|
+
// key
|
|
3646
|
+
key?: string;
|
|
3647
|
+
// value
|
|
3648
|
+
value?: string;
|
|
3649
|
+
static names(): { [key: string]: string } {
|
|
3650
|
+
return {
|
|
3651
|
+
key: 'key',
|
|
3652
|
+
value: 'value',
|
|
3653
|
+
};
|
|
3654
|
+
}
|
|
3655
|
+
|
|
3656
|
+
static types(): { [key: string]: any } {
|
|
3657
|
+
return {
|
|
3658
|
+
key: 'string',
|
|
3659
|
+
value: 'string',
|
|
3660
|
+
};
|
|
3661
|
+
}
|
|
3662
|
+
|
|
3663
|
+
constructor(map?: { [key: string]: any }) {
|
|
3664
|
+
super(map);
|
|
3665
|
+
}
|
|
3666
|
+
}
|
|
3667
|
+
|
|
3366
3668
|
// 逾期信息查询响应
|
|
3367
3669
|
export class OverdueInfoResponse extends $tea.Model {
|
|
3368
3670
|
// 逾期标识
|
|
@@ -4249,6 +4551,31 @@ export class RtopCrowdRiskFeatureResp extends $tea.Model {
|
|
|
4249
4551
|
}
|
|
4250
4552
|
}
|
|
4251
4553
|
|
|
4554
|
+
// 离线圈客计划详细
|
|
4555
|
+
export class OfflineDecisionPlanDetail extends $tea.Model {
|
|
4556
|
+
// 圈客计划ID
|
|
4557
|
+
decisionPlanId: string;
|
|
4558
|
+
// 离线圈客执行任务状态
|
|
4559
|
+
decisionResultStatus: string;
|
|
4560
|
+
static names(): { [key: string]: string } {
|
|
4561
|
+
return {
|
|
4562
|
+
decisionPlanId: 'decision_plan_id',
|
|
4563
|
+
decisionResultStatus: 'decision_result_status',
|
|
4564
|
+
};
|
|
4565
|
+
}
|
|
4566
|
+
|
|
4567
|
+
static types(): { [key: string]: any } {
|
|
4568
|
+
return {
|
|
4569
|
+
decisionPlanId: 'string',
|
|
4570
|
+
decisionResultStatus: 'string',
|
|
4571
|
+
};
|
|
4572
|
+
}
|
|
4573
|
+
|
|
4574
|
+
constructor(map?: { [key: string]: any }) {
|
|
4575
|
+
super(map);
|
|
4576
|
+
}
|
|
4577
|
+
}
|
|
4578
|
+
|
|
4252
4579
|
// 用户分层信息
|
|
4253
4580
|
export class UserClassifyInfo extends $tea.Model {
|
|
4254
4581
|
// 版本号
|
|
@@ -4448,6 +4775,12 @@ export class RepayTrail extends $tea.Model {
|
|
|
4448
4775
|
endTime: string;
|
|
4449
4776
|
// 试算编号
|
|
4450
4777
|
trialNo: string;
|
|
4778
|
+
// 优惠后应还金额
|
|
4779
|
+
discountAfterNeedAmt?: number;
|
|
4780
|
+
// 优惠后应还利息
|
|
4781
|
+
discountAfterInterest?: number;
|
|
4782
|
+
// 优惠利息
|
|
4783
|
+
discountInterest?: number;
|
|
4451
4784
|
static names(): { [key: string]: string } {
|
|
4452
4785
|
return {
|
|
4453
4786
|
period: 'period',
|
|
@@ -4461,6 +4794,9 @@ export class RepayTrail extends $tea.Model {
|
|
|
4461
4794
|
startTime: 'start_time',
|
|
4462
4795
|
endTime: 'end_time',
|
|
4463
4796
|
trialNo: 'trial_no',
|
|
4797
|
+
discountAfterNeedAmt: 'discount_after_need_amt',
|
|
4798
|
+
discountAfterInterest: 'discount_after_interest',
|
|
4799
|
+
discountInterest: 'discount_interest',
|
|
4464
4800
|
};
|
|
4465
4801
|
}
|
|
4466
4802
|
|
|
@@ -4477,6 +4813,9 @@ export class RepayTrail extends $tea.Model {
|
|
|
4477
4813
|
startTime: 'string',
|
|
4478
4814
|
endTime: 'string',
|
|
4479
4815
|
trialNo: 'string',
|
|
4816
|
+
discountAfterNeedAmt: 'number',
|
|
4817
|
+
discountAfterInterest: 'number',
|
|
4818
|
+
discountInterest: 'number',
|
|
4480
4819
|
};
|
|
4481
4820
|
}
|
|
4482
4821
|
|
|
@@ -4584,6 +4923,73 @@ export class XNameValuePair extends $tea.Model {
|
|
|
4584
4923
|
}
|
|
4585
4924
|
}
|
|
4586
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
|
+
|
|
4587
4993
|
export class QuerySecurityPolicyRequest extends $tea.Model {
|
|
4588
4994
|
// OAuth模式下的授权token
|
|
4589
4995
|
authToken?: string;
|
|
@@ -5226,6 +5632,76 @@ export class QueryBatchSecurityPolicyResponse extends $tea.Model {
|
|
|
5226
5632
|
}
|
|
5227
5633
|
}
|
|
5228
5634
|
|
|
5635
|
+
export class QueryCreditshieldProductBatchRequest extends $tea.Model {
|
|
5636
|
+
// OAuth模式下的授权token
|
|
5637
|
+
authToken?: string;
|
|
5638
|
+
productInstanceId?: string;
|
|
5639
|
+
// 查询编码:
|
|
5640
|
+
// 1.还款概率评估
|
|
5641
|
+
// 2.经济波动检测
|
|
5642
|
+
// 3.触达前筛
|
|
5643
|
+
queryCode: string;
|
|
5644
|
+
// 查询信息集合
|
|
5645
|
+
queryInfos?: QueryInfo[];
|
|
5646
|
+
static names(): { [key: string]: string } {
|
|
5647
|
+
return {
|
|
5648
|
+
authToken: 'auth_token',
|
|
5649
|
+
productInstanceId: 'product_instance_id',
|
|
5650
|
+
queryCode: 'query_code',
|
|
5651
|
+
queryInfos: 'query_infos',
|
|
5652
|
+
};
|
|
5653
|
+
}
|
|
5654
|
+
|
|
5655
|
+
static types(): { [key: string]: any } {
|
|
5656
|
+
return {
|
|
5657
|
+
authToken: 'string',
|
|
5658
|
+
productInstanceId: 'string',
|
|
5659
|
+
queryCode: 'string',
|
|
5660
|
+
queryInfos: { 'type': 'array', 'itemType': QueryInfo },
|
|
5661
|
+
};
|
|
5662
|
+
}
|
|
5663
|
+
|
|
5664
|
+
constructor(map?: { [key: string]: any }) {
|
|
5665
|
+
super(map);
|
|
5666
|
+
}
|
|
5667
|
+
}
|
|
5668
|
+
|
|
5669
|
+
export class QueryCreditshieldProductBatchResponse extends $tea.Model {
|
|
5670
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
5671
|
+
reqMsgId?: string;
|
|
5672
|
+
// 结果码,一般OK表示调用成功
|
|
5673
|
+
resultCode?: string;
|
|
5674
|
+
// 异常信息的文本描述
|
|
5675
|
+
resultMsg?: string;
|
|
5676
|
+
// 查询结果是否成功
|
|
5677
|
+
success?: boolean;
|
|
5678
|
+
// 查询结果
|
|
5679
|
+
queryResults?: QueryResult[];
|
|
5680
|
+
static names(): { [key: string]: string } {
|
|
5681
|
+
return {
|
|
5682
|
+
reqMsgId: 'req_msg_id',
|
|
5683
|
+
resultCode: 'result_code',
|
|
5684
|
+
resultMsg: 'result_msg',
|
|
5685
|
+
success: 'success',
|
|
5686
|
+
queryResults: 'query_results',
|
|
5687
|
+
};
|
|
5688
|
+
}
|
|
5689
|
+
|
|
5690
|
+
static types(): { [key: string]: any } {
|
|
5691
|
+
return {
|
|
5692
|
+
reqMsgId: 'string',
|
|
5693
|
+
resultCode: 'string',
|
|
5694
|
+
resultMsg: 'string',
|
|
5695
|
+
success: 'boolean',
|
|
5696
|
+
queryResults: { 'type': 'array', 'itemType': QueryResult },
|
|
5697
|
+
};
|
|
5698
|
+
}
|
|
5699
|
+
|
|
5700
|
+
constructor(map?: { [key: string]: any }) {
|
|
5701
|
+
super(map);
|
|
5702
|
+
}
|
|
5703
|
+
}
|
|
5704
|
+
|
|
5229
5705
|
export class QueryDubheTestRequest extends $tea.Model {
|
|
5230
5706
|
// OAuth模式下的授权token
|
|
5231
5707
|
authToken?: string;
|
|
@@ -6893,6 +7369,8 @@ export class QueryDubbridgeRouterFundrouterResponse extends $tea.Model {
|
|
|
6893
7369
|
abbreFundName?: string;
|
|
6894
7370
|
// 客户编号
|
|
6895
7371
|
customerNo?: string;
|
|
7372
|
+
// 资金方列表
|
|
7373
|
+
fundList?: GwFundRouterResult[];
|
|
6896
7374
|
static names(): { [key: string]: string } {
|
|
6897
7375
|
return {
|
|
6898
7376
|
reqMsgId: 'req_msg_id',
|
|
@@ -6901,6 +7379,7 @@ export class QueryDubbridgeRouterFundrouterResponse extends $tea.Model {
|
|
|
6901
7379
|
fundCode: 'fund_code',
|
|
6902
7380
|
abbreFundName: 'abbre_fund_name',
|
|
6903
7381
|
customerNo: 'customer_no',
|
|
7382
|
+
fundList: 'fund_list',
|
|
6904
7383
|
};
|
|
6905
7384
|
}
|
|
6906
7385
|
|
|
@@ -6912,6 +7391,7 @@ export class QueryDubbridgeRouterFundrouterResponse extends $tea.Model {
|
|
|
6912
7391
|
fundCode: 'string',
|
|
6913
7392
|
abbreFundName: 'string',
|
|
6914
7393
|
customerNo: 'string',
|
|
7394
|
+
fundList: { 'type': 'array', 'itemType': GwFundRouterResult },
|
|
6915
7395
|
};
|
|
6916
7396
|
}
|
|
6917
7397
|
|
|
@@ -6956,6 +7436,8 @@ export class ApplyDubbridgeCreditRequest extends $tea.Model {
|
|
|
6956
7436
|
channelType?: string;
|
|
6957
7437
|
// 客户类型
|
|
6958
7438
|
customType?: string;
|
|
7439
|
+
// 资金方代码
|
|
7440
|
+
fundCode?: string;
|
|
6959
7441
|
static names(): { [key: string]: string } {
|
|
6960
7442
|
return {
|
|
6961
7443
|
authToken: 'auth_token',
|
|
@@ -6976,6 +7458,7 @@ export class ApplyDubbridgeCreditRequest extends $tea.Model {
|
|
|
6976
7458
|
clickId: 'click_id',
|
|
6977
7459
|
channelType: 'channel_type',
|
|
6978
7460
|
customType: 'custom_type',
|
|
7461
|
+
fundCode: 'fund_code',
|
|
6979
7462
|
};
|
|
6980
7463
|
}
|
|
6981
7464
|
|
|
@@ -6999,6 +7482,7 @@ export class ApplyDubbridgeCreditRequest extends $tea.Model {
|
|
|
6999
7482
|
clickId: 'string',
|
|
7000
7483
|
channelType: 'string',
|
|
7001
7484
|
customType: 'string',
|
|
7485
|
+
fundCode: 'string',
|
|
7002
7486
|
};
|
|
7003
7487
|
}
|
|
7004
7488
|
|
|
@@ -7140,6 +7624,8 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
7140
7624
|
cardNo?: string;
|
|
7141
7625
|
// 手机号
|
|
7142
7626
|
mobile?: string;
|
|
7627
|
+
// 银行名称
|
|
7628
|
+
bankName?: string;
|
|
7143
7629
|
static names(): { [key: string]: string } {
|
|
7144
7630
|
return {
|
|
7145
7631
|
authToken: 'auth_token',
|
|
@@ -7152,6 +7638,7 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
7152
7638
|
openId: 'open_id',
|
|
7153
7639
|
cardNo: 'card_no',
|
|
7154
7640
|
mobile: 'mobile',
|
|
7641
|
+
bankName: 'bank_name',
|
|
7155
7642
|
};
|
|
7156
7643
|
}
|
|
7157
7644
|
|
|
@@ -7167,6 +7654,7 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
7167
7654
|
openId: 'string',
|
|
7168
7655
|
cardNo: 'string',
|
|
7169
7656
|
mobile: 'string',
|
|
7657
|
+
bankName: 'string',
|
|
7170
7658
|
};
|
|
7171
7659
|
}
|
|
7172
7660
|
|
|
@@ -8656,6 +9144,8 @@ export class CountDubbridgeRepayReftrialRequest extends $tea.Model {
|
|
|
8656
9144
|
repayType: string;
|
|
8657
9145
|
// 还款日
|
|
8658
9146
|
repayDate?: string;
|
|
9147
|
+
// 优惠券id
|
|
9148
|
+
couponId?: string;
|
|
8659
9149
|
static names(): { [key: string]: string } {
|
|
8660
9150
|
return {
|
|
8661
9151
|
authToken: 'auth_token',
|
|
@@ -8667,6 +9157,7 @@ export class CountDubbridgeRepayReftrialRequest extends $tea.Model {
|
|
|
8667
9157
|
applyPeriod: 'apply_period',
|
|
8668
9158
|
repayType: 'repay_type',
|
|
8669
9159
|
repayDate: 'repay_date',
|
|
9160
|
+
couponId: 'coupon_id',
|
|
8670
9161
|
};
|
|
8671
9162
|
}
|
|
8672
9163
|
|
|
@@ -8681,6 +9172,7 @@ export class CountDubbridgeRepayReftrialRequest extends $tea.Model {
|
|
|
8681
9172
|
applyPeriod: 'number',
|
|
8682
9173
|
repayType: 'string',
|
|
8683
9174
|
repayDate: 'string',
|
|
9175
|
+
couponId: 'string',
|
|
8684
9176
|
};
|
|
8685
9177
|
}
|
|
8686
9178
|
|
|
@@ -8994,6 +9486,8 @@ export class ApplyDubbridgeUsecreditRequest extends $tea.Model {
|
|
|
8994
9486
|
bankCardNo?: string;
|
|
8995
9487
|
// 影像件信息
|
|
8996
9488
|
materials?: Material[];
|
|
9489
|
+
// 优惠券id
|
|
9490
|
+
couponId?: string;
|
|
8997
9491
|
static names(): { [key: string]: string } {
|
|
8998
9492
|
return {
|
|
8999
9493
|
authToken: 'auth_token',
|
|
@@ -9012,6 +9506,7 @@ export class ApplyDubbridgeUsecreditRequest extends $tea.Model {
|
|
|
9012
9506
|
loanInstCode: 'loan_inst_code',
|
|
9013
9507
|
bankCardNo: 'bank_card_no',
|
|
9014
9508
|
materials: 'materials',
|
|
9509
|
+
couponId: 'coupon_id',
|
|
9015
9510
|
};
|
|
9016
9511
|
}
|
|
9017
9512
|
|
|
@@ -9033,6 +9528,7 @@ export class ApplyDubbridgeUsecreditRequest extends $tea.Model {
|
|
|
9033
9528
|
loanInstCode: 'string',
|
|
9034
9529
|
bankCardNo: 'string',
|
|
9035
9530
|
materials: { 'type': 'array', 'itemType': Material },
|
|
9531
|
+
couponId: 'string',
|
|
9036
9532
|
};
|
|
9037
9533
|
}
|
|
9038
9534
|
|
|
@@ -10060,20 +10556,235 @@ export class QueryDubbridgeAgreementPreviewRequest extends $tea.Model {
|
|
|
10060
10556
|
return {
|
|
10061
10557
|
authToken: 'auth_token',
|
|
10062
10558
|
productInstanceId: 'product_instance_id',
|
|
10063
|
-
bizType: 'biz_type',
|
|
10064
|
-
fundCode: 'fund_code',
|
|
10559
|
+
bizType: 'biz_type',
|
|
10560
|
+
fundCode: 'fund_code',
|
|
10561
|
+
customerNo: 'customer_no',
|
|
10562
|
+
loanAmount: 'loan_amount',
|
|
10563
|
+
period: 'period',
|
|
10564
|
+
bankCode: 'bank_code',
|
|
10565
|
+
repayType: 'repay_type',
|
|
10566
|
+
bankName: 'bank_name',
|
|
10567
|
+
bankCardNo: 'bank_card_no',
|
|
10568
|
+
receiptEndDate: 'receipt_end_date',
|
|
10569
|
+
loanWay: 'loan_way',
|
|
10570
|
+
lpr: 'lpr',
|
|
10571
|
+
lprPoint: 'lpr_point',
|
|
10572
|
+
lprEffectDate: 'lpr_effect_date',
|
|
10573
|
+
};
|
|
10574
|
+
}
|
|
10575
|
+
|
|
10576
|
+
static types(): { [key: string]: any } {
|
|
10577
|
+
return {
|
|
10578
|
+
authToken: 'string',
|
|
10579
|
+
productInstanceId: 'string',
|
|
10580
|
+
bizType: 'string',
|
|
10581
|
+
fundCode: 'string',
|
|
10582
|
+
customerNo: 'string',
|
|
10583
|
+
loanAmount: 'number',
|
|
10584
|
+
period: 'number',
|
|
10585
|
+
bankCode: 'string',
|
|
10586
|
+
repayType: 'string',
|
|
10587
|
+
bankName: 'string',
|
|
10588
|
+
bankCardNo: 'string',
|
|
10589
|
+
receiptEndDate: 'string',
|
|
10590
|
+
loanWay: 'string',
|
|
10591
|
+
lpr: 'number',
|
|
10592
|
+
lprPoint: 'number',
|
|
10593
|
+
lprEffectDate: 'string',
|
|
10594
|
+
};
|
|
10595
|
+
}
|
|
10596
|
+
|
|
10597
|
+
constructor(map?: { [key: string]: any }) {
|
|
10598
|
+
super(map);
|
|
10599
|
+
}
|
|
10600
|
+
}
|
|
10601
|
+
|
|
10602
|
+
export class QueryDubbridgeAgreementPreviewResponse extends $tea.Model {
|
|
10603
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
10604
|
+
reqMsgId?: string;
|
|
10605
|
+
// 结果码,一般OK表示调用成功
|
|
10606
|
+
resultCode?: string;
|
|
10607
|
+
// 异常信息的文本描述
|
|
10608
|
+
resultMsg?: string;
|
|
10609
|
+
// 协议列表
|
|
10610
|
+
agreementInfoList?: GetAgreementUrlResponseData[];
|
|
10611
|
+
static names(): { [key: string]: string } {
|
|
10612
|
+
return {
|
|
10613
|
+
reqMsgId: 'req_msg_id',
|
|
10614
|
+
resultCode: 'result_code',
|
|
10615
|
+
resultMsg: 'result_msg',
|
|
10616
|
+
agreementInfoList: 'agreement_info_list',
|
|
10617
|
+
};
|
|
10618
|
+
}
|
|
10619
|
+
|
|
10620
|
+
static types(): { [key: string]: any } {
|
|
10621
|
+
return {
|
|
10622
|
+
reqMsgId: 'string',
|
|
10623
|
+
resultCode: 'string',
|
|
10624
|
+
resultMsg: 'string',
|
|
10625
|
+
agreementInfoList: { 'type': 'array', 'itemType': GetAgreementUrlResponseData },
|
|
10626
|
+
};
|
|
10627
|
+
}
|
|
10628
|
+
|
|
10629
|
+
constructor(map?: { [key: string]: any }) {
|
|
10630
|
+
super(map);
|
|
10631
|
+
}
|
|
10632
|
+
}
|
|
10633
|
+
|
|
10634
|
+
export class QueryDubbridgeAccountUsecreditRequest extends $tea.Model {
|
|
10635
|
+
// OAuth模式下的授权token
|
|
10636
|
+
authToken?: string;
|
|
10637
|
+
productInstanceId?: string;
|
|
10638
|
+
// 渠道号
|
|
10639
|
+
channelCode: string;
|
|
10640
|
+
// 客户编码
|
|
10641
|
+
customNo?: string;
|
|
10642
|
+
// 资产方用户唯一标识
|
|
10643
|
+
openId?: string;
|
|
10644
|
+
static names(): { [key: string]: string } {
|
|
10645
|
+
return {
|
|
10646
|
+
authToken: 'auth_token',
|
|
10647
|
+
productInstanceId: 'product_instance_id',
|
|
10648
|
+
channelCode: 'channel_code',
|
|
10649
|
+
customNo: 'custom_no',
|
|
10650
|
+
openId: 'open_id',
|
|
10651
|
+
};
|
|
10652
|
+
}
|
|
10653
|
+
|
|
10654
|
+
static types(): { [key: string]: any } {
|
|
10655
|
+
return {
|
|
10656
|
+
authToken: 'string',
|
|
10657
|
+
productInstanceId: 'string',
|
|
10658
|
+
channelCode: 'string',
|
|
10659
|
+
customNo: 'string',
|
|
10660
|
+
openId: 'string',
|
|
10661
|
+
};
|
|
10662
|
+
}
|
|
10663
|
+
|
|
10664
|
+
constructor(map?: { [key: string]: any }) {
|
|
10665
|
+
super(map);
|
|
10666
|
+
}
|
|
10667
|
+
}
|
|
10668
|
+
|
|
10669
|
+
export class QueryDubbridgeAccountUsecreditResponse extends $tea.Model {
|
|
10670
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
10671
|
+
reqMsgId?: string;
|
|
10672
|
+
// 结果码,一般OK表示调用成功
|
|
10673
|
+
resultCode?: string;
|
|
10674
|
+
// 异常信息的文本描述
|
|
10675
|
+
resultMsg?: string;
|
|
10676
|
+
// 用户借款是否结清
|
|
10677
|
+
data?: CustomReceiptStatus;
|
|
10678
|
+
static names(): { [key: string]: string } {
|
|
10679
|
+
return {
|
|
10680
|
+
reqMsgId: 'req_msg_id',
|
|
10681
|
+
resultCode: 'result_code',
|
|
10682
|
+
resultMsg: 'result_msg',
|
|
10683
|
+
data: 'data',
|
|
10684
|
+
};
|
|
10685
|
+
}
|
|
10686
|
+
|
|
10687
|
+
static types(): { [key: string]: any } {
|
|
10688
|
+
return {
|
|
10689
|
+
reqMsgId: 'string',
|
|
10690
|
+
resultCode: 'string',
|
|
10691
|
+
resultMsg: 'string',
|
|
10692
|
+
data: CustomReceiptStatus,
|
|
10693
|
+
};
|
|
10694
|
+
}
|
|
10695
|
+
|
|
10696
|
+
constructor(map?: { [key: string]: any }) {
|
|
10697
|
+
super(map);
|
|
10698
|
+
}
|
|
10699
|
+
}
|
|
10700
|
+
|
|
10701
|
+
export class QueryDubbridgeUserAggregationinfoRequest extends $tea.Model {
|
|
10702
|
+
// OAuth模式下的授权token
|
|
10703
|
+
authToken?: string;
|
|
10704
|
+
productInstanceId?: string;
|
|
10705
|
+
// 订单号
|
|
10706
|
+
orderNo: string;
|
|
10707
|
+
// 资产方用户唯一标识
|
|
10708
|
+
openId?: string;
|
|
10709
|
+
// 客户编码
|
|
10710
|
+
customNo?: string;
|
|
10711
|
+
static names(): { [key: string]: string } {
|
|
10712
|
+
return {
|
|
10713
|
+
authToken: 'auth_token',
|
|
10714
|
+
productInstanceId: 'product_instance_id',
|
|
10715
|
+
orderNo: 'order_no',
|
|
10716
|
+
openId: 'open_id',
|
|
10717
|
+
customNo: 'custom_no',
|
|
10718
|
+
};
|
|
10719
|
+
}
|
|
10720
|
+
|
|
10721
|
+
static types(): { [key: string]: any } {
|
|
10722
|
+
return {
|
|
10723
|
+
authToken: 'string',
|
|
10724
|
+
productInstanceId: 'string',
|
|
10725
|
+
orderNo: 'string',
|
|
10726
|
+
openId: 'string',
|
|
10727
|
+
customNo: 'string',
|
|
10728
|
+
};
|
|
10729
|
+
}
|
|
10730
|
+
|
|
10731
|
+
constructor(map?: { [key: string]: any }) {
|
|
10732
|
+
super(map);
|
|
10733
|
+
}
|
|
10734
|
+
}
|
|
10735
|
+
|
|
10736
|
+
export class QueryDubbridgeUserAggregationinfoResponse extends $tea.Model {
|
|
10737
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
10738
|
+
reqMsgId?: string;
|
|
10739
|
+
// 结果码,一般OK表示调用成功
|
|
10740
|
+
resultCode?: string;
|
|
10741
|
+
// 异常信息的文本描述
|
|
10742
|
+
resultMsg?: string;
|
|
10743
|
+
// 用户聚合状态信息
|
|
10744
|
+
userAggregationInfo?: UserAggregationInfo;
|
|
10745
|
+
static names(): { [key: string]: string } {
|
|
10746
|
+
return {
|
|
10747
|
+
reqMsgId: 'req_msg_id',
|
|
10748
|
+
resultCode: 'result_code',
|
|
10749
|
+
resultMsg: 'result_msg',
|
|
10750
|
+
userAggregationInfo: 'user_aggregation_info',
|
|
10751
|
+
};
|
|
10752
|
+
}
|
|
10753
|
+
|
|
10754
|
+
static types(): { [key: string]: any } {
|
|
10755
|
+
return {
|
|
10756
|
+
reqMsgId: 'string',
|
|
10757
|
+
resultCode: 'string',
|
|
10758
|
+
resultMsg: 'string',
|
|
10759
|
+
userAggregationInfo: UserAggregationInfo,
|
|
10760
|
+
};
|
|
10761
|
+
}
|
|
10762
|
+
|
|
10763
|
+
constructor(map?: { [key: string]: any }) {
|
|
10764
|
+
super(map);
|
|
10765
|
+
}
|
|
10766
|
+
}
|
|
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',
|
|
10065
10784
|
customerNo: 'customer_no',
|
|
10066
|
-
|
|
10067
|
-
|
|
10068
|
-
|
|
10069
|
-
repayType: 'repay_type',
|
|
10070
|
-
bankName: 'bank_name',
|
|
10071
|
-
bankCardNo: 'bank_card_no',
|
|
10072
|
-
receiptEndDate: 'receipt_end_date',
|
|
10073
|
-
loanWay: 'loan_way',
|
|
10074
|
-
lpr: 'lpr',
|
|
10075
|
-
lprPoint: 'lpr_point',
|
|
10076
|
-
lprEffectDate: 'lpr_effect_date',
|
|
10785
|
+
status: 'status',
|
|
10786
|
+
page: 'page',
|
|
10787
|
+
pageSize: 'page_size',
|
|
10077
10788
|
};
|
|
10078
10789
|
}
|
|
10079
10790
|
|
|
@@ -10081,20 +10792,10 @@ export class QueryDubbridgeAgreementPreviewRequest extends $tea.Model {
|
|
|
10081
10792
|
return {
|
|
10082
10793
|
authToken: 'string',
|
|
10083
10794
|
productInstanceId: 'string',
|
|
10084
|
-
bizType: 'string',
|
|
10085
|
-
fundCode: 'string',
|
|
10086
10795
|
customerNo: 'string',
|
|
10087
|
-
|
|
10088
|
-
|
|
10089
|
-
|
|
10090
|
-
repayType: 'string',
|
|
10091
|
-
bankName: 'string',
|
|
10092
|
-
bankCardNo: 'string',
|
|
10093
|
-
receiptEndDate: 'string',
|
|
10094
|
-
loanWay: 'string',
|
|
10095
|
-
lpr: 'number',
|
|
10096
|
-
lprPoint: 'number',
|
|
10097
|
-
lprEffectDate: 'string',
|
|
10796
|
+
status: 'string',
|
|
10797
|
+
page: 'number',
|
|
10798
|
+
pageSize: 'number',
|
|
10098
10799
|
};
|
|
10099
10800
|
}
|
|
10100
10801
|
|
|
@@ -10103,21 +10804,21 @@ export class QueryDubbridgeAgreementPreviewRequest extends $tea.Model {
|
|
|
10103
10804
|
}
|
|
10104
10805
|
}
|
|
10105
10806
|
|
|
10106
|
-
export class
|
|
10807
|
+
export class QueryDubbridgeMarketingCouponlistResponse extends $tea.Model {
|
|
10107
10808
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
10108
10809
|
reqMsgId?: string;
|
|
10109
10810
|
// 结果码,一般OK表示调用成功
|
|
10110
10811
|
resultCode?: string;
|
|
10111
10812
|
// 异常信息的文本描述
|
|
10112
10813
|
resultMsg?: string;
|
|
10113
|
-
//
|
|
10114
|
-
|
|
10814
|
+
// 优惠券列表
|
|
10815
|
+
couponList?: CouponInfo[];
|
|
10115
10816
|
static names(): { [key: string]: string } {
|
|
10116
10817
|
return {
|
|
10117
10818
|
reqMsgId: 'req_msg_id',
|
|
10118
10819
|
resultCode: 'result_code',
|
|
10119
10820
|
resultMsg: 'result_msg',
|
|
10120
|
-
|
|
10821
|
+
couponList: 'coupon_list',
|
|
10121
10822
|
};
|
|
10122
10823
|
}
|
|
10123
10824
|
|
|
@@ -10126,7 +10827,7 @@ export class QueryDubbridgeAgreementPreviewResponse extends $tea.Model {
|
|
|
10126
10827
|
reqMsgId: 'string',
|
|
10127
10828
|
resultCode: 'string',
|
|
10128
10829
|
resultMsg: 'string',
|
|
10129
|
-
|
|
10830
|
+
couponList: { 'type': 'array', 'itemType': CouponInfo },
|
|
10130
10831
|
};
|
|
10131
10832
|
}
|
|
10132
10833
|
|
|
@@ -10135,23 +10836,20 @@ export class QueryDubbridgeAgreementPreviewResponse extends $tea.Model {
|
|
|
10135
10836
|
}
|
|
10136
10837
|
}
|
|
10137
10838
|
|
|
10138
|
-
export class
|
|
10839
|
+
export class QueryDubbridgeRepaytypeInfoRequest extends $tea.Model {
|
|
10139
10840
|
// OAuth模式下的授权token
|
|
10140
10841
|
authToken?: string;
|
|
10141
10842
|
productInstanceId?: string;
|
|
10142
|
-
//
|
|
10143
|
-
|
|
10144
|
-
//
|
|
10145
|
-
|
|
10146
|
-
// 资产方用户唯一标识
|
|
10147
|
-
openId?: string;
|
|
10843
|
+
// 客户号
|
|
10844
|
+
customerNo: string;
|
|
10845
|
+
// 资金方编号
|
|
10846
|
+
fundCode: string;
|
|
10148
10847
|
static names(): { [key: string]: string } {
|
|
10149
10848
|
return {
|
|
10150
10849
|
authToken: 'auth_token',
|
|
10151
10850
|
productInstanceId: 'product_instance_id',
|
|
10152
|
-
|
|
10153
|
-
|
|
10154
|
-
openId: 'open_id',
|
|
10851
|
+
customerNo: 'customer_no',
|
|
10852
|
+
fundCode: 'fund_code',
|
|
10155
10853
|
};
|
|
10156
10854
|
}
|
|
10157
10855
|
|
|
@@ -10159,9 +10857,8 @@ export class QueryDubbridgeAccountUsecreditRequest extends $tea.Model {
|
|
|
10159
10857
|
return {
|
|
10160
10858
|
authToken: 'string',
|
|
10161
10859
|
productInstanceId: 'string',
|
|
10162
|
-
|
|
10163
|
-
|
|
10164
|
-
openId: 'string',
|
|
10860
|
+
customerNo: 'string',
|
|
10861
|
+
fundCode: 'string',
|
|
10165
10862
|
};
|
|
10166
10863
|
}
|
|
10167
10864
|
|
|
@@ -10170,21 +10867,21 @@ export class QueryDubbridgeAccountUsecreditRequest extends $tea.Model {
|
|
|
10170
10867
|
}
|
|
10171
10868
|
}
|
|
10172
10869
|
|
|
10173
|
-
export class
|
|
10870
|
+
export class QueryDubbridgeRepaytypeInfoResponse extends $tea.Model {
|
|
10174
10871
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
10175
10872
|
reqMsgId?: string;
|
|
10176
10873
|
// 结果码,一般OK表示调用成功
|
|
10177
10874
|
resultCode?: string;
|
|
10178
10875
|
// 异常信息的文本描述
|
|
10179
10876
|
resultMsg?: string;
|
|
10180
|
-
//
|
|
10181
|
-
|
|
10877
|
+
// 还款方式/借款期数集合
|
|
10878
|
+
repayTypeInfoList?: PlatformRepayTypeInfo[];
|
|
10182
10879
|
static names(): { [key: string]: string } {
|
|
10183
10880
|
return {
|
|
10184
10881
|
reqMsgId: 'req_msg_id',
|
|
10185
10882
|
resultCode: 'result_code',
|
|
10186
10883
|
resultMsg: 'result_msg',
|
|
10187
|
-
|
|
10884
|
+
repayTypeInfoList: 'repay_type_info_list',
|
|
10188
10885
|
};
|
|
10189
10886
|
}
|
|
10190
10887
|
|
|
@@ -10193,7 +10890,7 @@ export class QueryDubbridgeAccountUsecreditResponse extends $tea.Model {
|
|
|
10193
10890
|
reqMsgId: 'string',
|
|
10194
10891
|
resultCode: 'string',
|
|
10195
10892
|
resultMsg: 'string',
|
|
10196
|
-
|
|
10893
|
+
repayTypeInfoList: { 'type': 'array', 'itemType': PlatformRepayTypeInfo },
|
|
10197
10894
|
};
|
|
10198
10895
|
}
|
|
10199
10896
|
|
|
@@ -10525,6 +11222,69 @@ export class ReceiveMdipParamsRbbfileResponse extends $tea.Model {
|
|
|
10525
11222
|
}
|
|
10526
11223
|
}
|
|
10527
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
|
+
|
|
10528
11288
|
export class ApplyQmpRtBatchmarketingRequest extends $tea.Model {
|
|
10529
11289
|
// OAuth模式下的授权token
|
|
10530
11290
|
authToken?: string;
|
|
@@ -19866,6 +20626,73 @@ export class DownloadUmktOfflinedecisionResultResponse extends $tea.Model {
|
|
|
19866
20626
|
}
|
|
19867
20627
|
}
|
|
19868
20628
|
|
|
20629
|
+
export class QueryUmktOfflinedecisionPlandetailsRequest extends $tea.Model {
|
|
20630
|
+
// OAuth模式下的授权token
|
|
20631
|
+
authToken?: string;
|
|
20632
|
+
productInstanceId?: string;
|
|
20633
|
+
// 离线圈客配置的ID
|
|
20634
|
+
offlineDecisionPlanId: number;
|
|
20635
|
+
// 执行日期
|
|
20636
|
+
resultDate?: string;
|
|
20637
|
+
static names(): { [key: string]: string } {
|
|
20638
|
+
return {
|
|
20639
|
+
authToken: 'auth_token',
|
|
20640
|
+
productInstanceId: 'product_instance_id',
|
|
20641
|
+
offlineDecisionPlanId: 'offline_decision_plan_id',
|
|
20642
|
+
resultDate: 'result_date',
|
|
20643
|
+
};
|
|
20644
|
+
}
|
|
20645
|
+
|
|
20646
|
+
static types(): { [key: string]: any } {
|
|
20647
|
+
return {
|
|
20648
|
+
authToken: 'string',
|
|
20649
|
+
productInstanceId: 'string',
|
|
20650
|
+
offlineDecisionPlanId: 'number',
|
|
20651
|
+
resultDate: 'string',
|
|
20652
|
+
};
|
|
20653
|
+
}
|
|
20654
|
+
|
|
20655
|
+
constructor(map?: { [key: string]: any }) {
|
|
20656
|
+
super(map);
|
|
20657
|
+
}
|
|
20658
|
+
}
|
|
20659
|
+
|
|
20660
|
+
export class QueryUmktOfflinedecisionPlandetailsResponse extends $tea.Model {
|
|
20661
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
20662
|
+
reqMsgId?: string;
|
|
20663
|
+
// 结果码,一般OK表示调用成功
|
|
20664
|
+
resultCode?: string;
|
|
20665
|
+
// 异常信息的文本描述
|
|
20666
|
+
resultMsg?: string;
|
|
20667
|
+
// 离线圈客关联计划的个数
|
|
20668
|
+
offlineDecisionPlanCount?: number;
|
|
20669
|
+
// 离线圈客计划详细
|
|
20670
|
+
planDetailList?: OfflineDecisionPlanDetail[];
|
|
20671
|
+
static names(): { [key: string]: string } {
|
|
20672
|
+
return {
|
|
20673
|
+
reqMsgId: 'req_msg_id',
|
|
20674
|
+
resultCode: 'result_code',
|
|
20675
|
+
resultMsg: 'result_msg',
|
|
20676
|
+
offlineDecisionPlanCount: 'offline_decision_plan_count',
|
|
20677
|
+
planDetailList: 'plan_detail_list',
|
|
20678
|
+
};
|
|
20679
|
+
}
|
|
20680
|
+
|
|
20681
|
+
static types(): { [key: string]: any } {
|
|
20682
|
+
return {
|
|
20683
|
+
reqMsgId: 'string',
|
|
20684
|
+
resultCode: 'string',
|
|
20685
|
+
resultMsg: 'string',
|
|
20686
|
+
offlineDecisionPlanCount: 'number',
|
|
20687
|
+
planDetailList: { 'type': 'array', 'itemType': OfflineDecisionPlanDetail },
|
|
20688
|
+
};
|
|
20689
|
+
}
|
|
20690
|
+
|
|
20691
|
+
constructor(map?: { [key: string]: any }) {
|
|
20692
|
+
super(map);
|
|
20693
|
+
}
|
|
20694
|
+
}
|
|
20695
|
+
|
|
19869
20696
|
export class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
19870
20697
|
// OAuth模式下的授权token
|
|
19871
20698
|
authToken?: string;
|
|
@@ -20067,7 +20894,7 @@ export default class Client {
|
|
|
20067
20894
|
req_msg_id: AntchainUtil.getNonce(),
|
|
20068
20895
|
access_key: this._accessKeyId,
|
|
20069
20896
|
base_sdk_version: "TeaSDK-2.0",
|
|
20070
|
-
sdk_version: "1.
|
|
20897
|
+
sdk_version: "1.20.7",
|
|
20071
20898
|
_prod_code: "RISKPLUS",
|
|
20072
20899
|
_prod_channel: "undefined",
|
|
20073
20900
|
};
|
|
@@ -20115,6 +20942,25 @@ export default class Client {
|
|
|
20115
20942
|
throw $tea.newUnretryableError(_lastRequest);
|
|
20116
20943
|
}
|
|
20117
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
|
+
|
|
20118
20964
|
/**
|
|
20119
20965
|
* Description: 风控云风险咨询接口
|
|
20120
20966
|
* Summary: 风控云风险咨询接口
|
|
@@ -20286,6 +21132,25 @@ export default class Client {
|
|
|
20286
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({}));
|
|
20287
21133
|
}
|
|
20288
21134
|
|
|
21135
|
+
/**
|
|
21136
|
+
* Description: 信护盾产品批量查询
|
|
21137
|
+
* Summary: 信护盾产品批量查询
|
|
21138
|
+
*/
|
|
21139
|
+
async queryCreditshieldProductBatch(request: QueryCreditshieldProductBatchRequest): Promise<QueryCreditshieldProductBatchResponse> {
|
|
21140
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
21141
|
+
let headers : {[key: string ]: string} = { };
|
|
21142
|
+
return await this.queryCreditshieldProductBatchEx(request, headers, runtime);
|
|
21143
|
+
}
|
|
21144
|
+
|
|
21145
|
+
/**
|
|
21146
|
+
* Description: 信护盾产品批量查询
|
|
21147
|
+
* Summary: 信护盾产品批量查询
|
|
21148
|
+
*/
|
|
21149
|
+
async queryCreditshieldProductBatchEx(request: QueryCreditshieldProductBatchRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryCreditshieldProductBatchResponse> {
|
|
21150
|
+
Util.validateModel(request);
|
|
21151
|
+
return $tea.cast<QueryCreditshieldProductBatchResponse>(await this.doRequest("1.0", "riskplus.creditshield.product.batch.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryCreditshieldProductBatchResponse({}));
|
|
21152
|
+
}
|
|
21153
|
+
|
|
20289
21154
|
/**
|
|
20290
21155
|
* Description: 天枢信贷业务系统线下测试环境测试接口
|
|
20291
21156
|
* Summary: 天枢信贷业务系统线下测试接口
|
|
@@ -20719,6 +21584,7 @@ export default class Client {
|
|
|
20719
21584
|
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
20720
21585
|
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
20721
21586
|
request.fileId = uploadResp.fileId;
|
|
21587
|
+
request.fileObject = null;
|
|
20722
21588
|
}
|
|
20723
21589
|
|
|
20724
21590
|
Util.validateModel(request);
|
|
@@ -21428,6 +22294,63 @@ export default class Client {
|
|
|
21428
22294
|
return $tea.cast<QueryDubbridgeAccountUsecreditResponse>(await this.doRequest("1.0", "riskplus.dubbridge.account.usecredit.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeAccountUsecreditResponse({}));
|
|
21429
22295
|
}
|
|
21430
22296
|
|
|
22297
|
+
/**
|
|
22298
|
+
* Description: 天枢用户聚合状态查询接口
|
|
22299
|
+
* Summary: 天枢用户聚合状态查询接口
|
|
22300
|
+
*/
|
|
22301
|
+
async queryDubbridgeUserAggregationinfo(request: QueryDubbridgeUserAggregationinfoRequest): Promise<QueryDubbridgeUserAggregationinfoResponse> {
|
|
22302
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
22303
|
+
let headers : {[key: string ]: string} = { };
|
|
22304
|
+
return await this.queryDubbridgeUserAggregationinfoEx(request, headers, runtime);
|
|
22305
|
+
}
|
|
22306
|
+
|
|
22307
|
+
/**
|
|
22308
|
+
* Description: 天枢用户聚合状态查询接口
|
|
22309
|
+
* Summary: 天枢用户聚合状态查询接口
|
|
22310
|
+
*/
|
|
22311
|
+
async queryDubbridgeUserAggregationinfoEx(request: QueryDubbridgeUserAggregationinfoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeUserAggregationinfoResponse> {
|
|
22312
|
+
Util.validateModel(request);
|
|
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({}));
|
|
22314
|
+
}
|
|
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
|
+
|
|
21431
22354
|
/**
|
|
21432
22355
|
* Description: 四要素认证首先调用此接口
|
|
21433
22356
|
* Summary: 芝麻四要素接口
|
|
@@ -21519,6 +22442,7 @@ export default class Client {
|
|
|
21519
22442
|
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
21520
22443
|
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
21521
22444
|
request.fileId = uploadResp.fileId;
|
|
22445
|
+
request.fileObject = null;
|
|
21522
22446
|
}
|
|
21523
22447
|
|
|
21524
22448
|
Util.validateModel(request);
|
|
@@ -21559,12 +22483,32 @@ export default class Client {
|
|
|
21559
22483
|
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
21560
22484
|
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
21561
22485
|
request.fileId = uploadResp.fileId;
|
|
22486
|
+
request.fileObject = null;
|
|
21562
22487
|
}
|
|
21563
22488
|
|
|
21564
22489
|
Util.validateModel(request);
|
|
21565
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({}));
|
|
21566
22491
|
}
|
|
21567
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
|
+
|
|
21568
22512
|
/**
|
|
21569
22513
|
* Description: 批量实时触达接口
|
|
21570
22514
|
* Summary: 发起触达任务
|
|
@@ -22321,6 +23265,7 @@ export default class Client {
|
|
|
22321
23265
|
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
22322
23266
|
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
22323
23267
|
request.fileId = uploadResp.fileId;
|
|
23268
|
+
request.fileObject = null;
|
|
22324
23269
|
}
|
|
22325
23270
|
|
|
22326
23271
|
Util.validateModel(request);
|
|
@@ -23104,6 +24049,7 @@ export default class Client {
|
|
|
23104
24049
|
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
23105
24050
|
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
23106
24051
|
request.fileId = uploadResp.fileId;
|
|
24052
|
+
request.fileObject = null;
|
|
23107
24053
|
}
|
|
23108
24054
|
|
|
23109
24055
|
Util.validateModel(request);
|
|
@@ -23811,6 +24757,7 @@ export default class Client {
|
|
|
23811
24757
|
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
23812
24758
|
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
23813
24759
|
request.fileId = uploadResp.fileId;
|
|
24760
|
+
request.fileObject = null;
|
|
23814
24761
|
}
|
|
23815
24762
|
|
|
23816
24763
|
Util.validateModel(request);
|
|
@@ -23855,6 +24802,25 @@ export default class Client {
|
|
|
23855
24802
|
return $tea.cast<DownloadUmktOfflinedecisionResultResponse>(await this.doRequest("1.0", "riskplus.umkt.offlinedecision.result.download", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new DownloadUmktOfflinedecisionResultResponse({}));
|
|
23856
24803
|
}
|
|
23857
24804
|
|
|
24805
|
+
/**
|
|
24806
|
+
* Description: 包含离线圈客关联计划和任务状态详情
|
|
24807
|
+
* Summary: 营销盾离线圈客计划执行详情
|
|
24808
|
+
*/
|
|
24809
|
+
async queryUmktOfflinedecisionPlandetails(request: QueryUmktOfflinedecisionPlandetailsRequest): Promise<QueryUmktOfflinedecisionPlandetailsResponse> {
|
|
24810
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
24811
|
+
let headers : {[key: string ]: string} = { };
|
|
24812
|
+
return await this.queryUmktOfflinedecisionPlandetailsEx(request, headers, runtime);
|
|
24813
|
+
}
|
|
24814
|
+
|
|
24815
|
+
/**
|
|
24816
|
+
* Description: 包含离线圈客关联计划和任务状态详情
|
|
24817
|
+
* Summary: 营销盾离线圈客计划执行详情
|
|
24818
|
+
*/
|
|
24819
|
+
async queryUmktOfflinedecisionPlandetailsEx(request: QueryUmktOfflinedecisionPlandetailsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryUmktOfflinedecisionPlandetailsResponse> {
|
|
24820
|
+
Util.validateModel(request);
|
|
24821
|
+
return $tea.cast<QueryUmktOfflinedecisionPlandetailsResponse>(await this.doRequest("1.0", "riskplus.umkt.offlinedecision.plandetails.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryUmktOfflinedecisionPlandetailsResponse({}));
|
|
24822
|
+
}
|
|
24823
|
+
|
|
23858
24824
|
/**
|
|
23859
24825
|
* Description: 创建HTTP PUT提交的文件上传
|
|
23860
24826
|
* Summary: 文件上传创建
|