@antchain/riskplus 1.19.24 → 1.20.2
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 +364 -0
- package/dist/client.js +556 -2
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +848 -15
package/src/client.ts
CHANGED
|
@@ -405,6 +405,133 @@ 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
|
+
// 0-未使用
|
|
416
|
+
// 2-已使用
|
|
417
|
+
// 3-已失效
|
|
418
|
+
couponStatus: string;
|
|
419
|
+
// 使用场景
|
|
420
|
+
// 01-提款使用
|
|
421
|
+
// 02-还款使用
|
|
422
|
+
useScene: 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
|
+
static names(): { [key: string]: string } {
|
|
481
|
+
return {
|
|
482
|
+
couponId: 'coupon_id',
|
|
483
|
+
couponName: 'coupon_name',
|
|
484
|
+
couponStatus: 'coupon_status',
|
|
485
|
+
useScene: 'use_scene',
|
|
486
|
+
couponCode: 'coupon_code',
|
|
487
|
+
couponType: 'coupon_type',
|
|
488
|
+
couponValue: 'coupon_value',
|
|
489
|
+
couponAmount: 'coupon_amount',
|
|
490
|
+
expiredTime: 'expired_time',
|
|
491
|
+
effectiveTime: 'effective_time',
|
|
492
|
+
useDetail: 'use_detail',
|
|
493
|
+
minAmount: 'min_amount',
|
|
494
|
+
maxAmount: 'max_amount',
|
|
495
|
+
minPeriod: 'min_period',
|
|
496
|
+
maxPeriod: 'max_period',
|
|
497
|
+
minDay: 'min_day',
|
|
498
|
+
repaymentMethod: 'repayment_method',
|
|
499
|
+
isPeriodLimit: 'is_period_limit',
|
|
500
|
+
repayCondition: 'repay_condition',
|
|
501
|
+
repayWays: 'repay_ways',
|
|
502
|
+
};
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
static types(): { [key: string]: any } {
|
|
506
|
+
return {
|
|
507
|
+
couponId: 'string',
|
|
508
|
+
couponName: 'string',
|
|
509
|
+
couponStatus: 'string',
|
|
510
|
+
useScene: 'string',
|
|
511
|
+
couponCode: 'string',
|
|
512
|
+
couponType: 'string',
|
|
513
|
+
couponValue: 'string',
|
|
514
|
+
couponAmount: 'string',
|
|
515
|
+
expiredTime: 'string',
|
|
516
|
+
effectiveTime: 'string',
|
|
517
|
+
useDetail: 'string',
|
|
518
|
+
minAmount: 'string',
|
|
519
|
+
maxAmount: 'string',
|
|
520
|
+
minPeriod: 'string',
|
|
521
|
+
maxPeriod: 'string',
|
|
522
|
+
minDay: 'string',
|
|
523
|
+
repaymentMethod: 'string',
|
|
524
|
+
isPeriodLimit: 'string',
|
|
525
|
+
repayCondition: 'string',
|
|
526
|
+
repayWays: 'string',
|
|
527
|
+
};
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
constructor(map?: { [key: string]: any }) {
|
|
531
|
+
super(map);
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
|
|
408
535
|
// 用户的混合策略圈客结果
|
|
409
536
|
export class UmktInfoModel extends $tea.Model {
|
|
410
537
|
// 场景策略id
|
|
@@ -1042,6 +1169,69 @@ export class SecurityDataQueryStruct extends $tea.Model {
|
|
|
1042
1169
|
}
|
|
1043
1170
|
}
|
|
1044
1171
|
|
|
1172
|
+
// 天枢用户聚合状态信息
|
|
1173
|
+
export class UserAggregationInfo extends $tea.Model {
|
|
1174
|
+
// 状态
|
|
1175
|
+
// 0: 未授信
|
|
1176
|
+
// 1: 授信中
|
|
1177
|
+
// 2: 已授信未支用
|
|
1178
|
+
// 3: 支用中
|
|
1179
|
+
// 4: 已支用
|
|
1180
|
+
// 5: 借据逾期
|
|
1181
|
+
// 6: 授信过期
|
|
1182
|
+
// 7: 授信冻结
|
|
1183
|
+
// 8: 可重新授信
|
|
1184
|
+
// 9: 授信拒绝
|
|
1185
|
+
status: string;
|
|
1186
|
+
// 总额度
|
|
1187
|
+
creditAmount?: number;
|
|
1188
|
+
// 可用额度
|
|
1189
|
+
availableAmount?: number;
|
|
1190
|
+
// 待还总金额
|
|
1191
|
+
shouldPayAmount?: number;
|
|
1192
|
+
// 逾期总金额
|
|
1193
|
+
overdueAmount?: number;
|
|
1194
|
+
// 下一期应还金额
|
|
1195
|
+
nextPeriodAmount?: number;
|
|
1196
|
+
// 下一期还款时间yyyy-MM-dd
|
|
1197
|
+
nextPeriodRepayTime?: string;
|
|
1198
|
+
// 下次可授信时间yyyy-MM-dd
|
|
1199
|
+
nextApplyTime?: string;
|
|
1200
|
+
// 优惠券列表
|
|
1201
|
+
couponList?: CouponInfo[];
|
|
1202
|
+
static names(): { [key: string]: string } {
|
|
1203
|
+
return {
|
|
1204
|
+
status: 'status',
|
|
1205
|
+
creditAmount: 'credit_amount',
|
|
1206
|
+
availableAmount: 'available_amount',
|
|
1207
|
+
shouldPayAmount: 'should_pay_amount',
|
|
1208
|
+
overdueAmount: 'overdue_amount',
|
|
1209
|
+
nextPeriodAmount: 'next_period_amount',
|
|
1210
|
+
nextPeriodRepayTime: 'next_period_repay_time',
|
|
1211
|
+
nextApplyTime: 'next_apply_time',
|
|
1212
|
+
couponList: 'coupon_list',
|
|
1213
|
+
};
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
static types(): { [key: string]: any } {
|
|
1217
|
+
return {
|
|
1218
|
+
status: 'string',
|
|
1219
|
+
creditAmount: 'number',
|
|
1220
|
+
availableAmount: 'number',
|
|
1221
|
+
shouldPayAmount: 'number',
|
|
1222
|
+
overdueAmount: 'number',
|
|
1223
|
+
nextPeriodAmount: 'number',
|
|
1224
|
+
nextPeriodRepayTime: 'string',
|
|
1225
|
+
nextApplyTime: 'string',
|
|
1226
|
+
couponList: { 'type': 'array', 'itemType': CouponInfo },
|
|
1227
|
+
};
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
constructor(map?: { [key: string]: any }) {
|
|
1231
|
+
super(map);
|
|
1232
|
+
}
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1045
1235
|
// 场景决策列表
|
|
1046
1236
|
export class SceneInfos extends $tea.Model {
|
|
1047
1237
|
// 决策结果
|
|
@@ -1461,6 +1651,31 @@ export class RtopRiskStormCompanyAnnualReport extends $tea.Model {
|
|
|
1461
1651
|
}
|
|
1462
1652
|
}
|
|
1463
1653
|
|
|
1654
|
+
// 信护盾产品查询信息
|
|
1655
|
+
export class QueryInfo extends $tea.Model {
|
|
1656
|
+
// key
|
|
1657
|
+
key?: string;
|
|
1658
|
+
// value
|
|
1659
|
+
value?: string;
|
|
1660
|
+
static names(): { [key: string]: string } {
|
|
1661
|
+
return {
|
|
1662
|
+
key: 'key',
|
|
1663
|
+
value: 'value',
|
|
1664
|
+
};
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
static types(): { [key: string]: any } {
|
|
1668
|
+
return {
|
|
1669
|
+
key: 'string',
|
|
1670
|
+
value: 'string',
|
|
1671
|
+
};
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
constructor(map?: { [key: string]: any }) {
|
|
1675
|
+
super(map);
|
|
1676
|
+
}
|
|
1677
|
+
}
|
|
1678
|
+
|
|
1464
1679
|
// 营销盾场景策略上传结果
|
|
1465
1680
|
export class StrategyUploadResult extends $tea.Model {
|
|
1466
1681
|
// 元数据id
|
|
@@ -2462,6 +2677,31 @@ export class ModelDetails extends $tea.Model {
|
|
|
2462
2677
|
}
|
|
2463
2678
|
}
|
|
2464
2679
|
|
|
2680
|
+
// 资金方信息
|
|
2681
|
+
export class GwFundRouterResult extends $tea.Model {
|
|
2682
|
+
// 资金方代码
|
|
2683
|
+
fundCode: string;
|
|
2684
|
+
// 资金方简称
|
|
2685
|
+
abbreFundName: string;
|
|
2686
|
+
static names(): { [key: string]: string } {
|
|
2687
|
+
return {
|
|
2688
|
+
fundCode: 'fund_code',
|
|
2689
|
+
abbreFundName: 'abbre_fund_name',
|
|
2690
|
+
};
|
|
2691
|
+
}
|
|
2692
|
+
|
|
2693
|
+
static types(): { [key: string]: any } {
|
|
2694
|
+
return {
|
|
2695
|
+
fundCode: 'string',
|
|
2696
|
+
abbreFundName: 'string',
|
|
2697
|
+
};
|
|
2698
|
+
}
|
|
2699
|
+
|
|
2700
|
+
constructor(map?: { [key: string]: any }) {
|
|
2701
|
+
super(map);
|
|
2702
|
+
}
|
|
2703
|
+
}
|
|
2704
|
+
|
|
2465
2705
|
// 标签过滤配置
|
|
2466
2706
|
export class RiskLabelFilterConfigInfo extends $tea.Model {
|
|
2467
2707
|
// 创建时间
|
|
@@ -3363,6 +3603,31 @@ export class CustomerBankCardInfo extends $tea.Model {
|
|
|
3363
3603
|
}
|
|
3364
3604
|
}
|
|
3365
3605
|
|
|
3606
|
+
// 查询结果
|
|
3607
|
+
export class QueryResult extends $tea.Model {
|
|
3608
|
+
// key
|
|
3609
|
+
key?: string;
|
|
3610
|
+
// value
|
|
3611
|
+
value?: string;
|
|
3612
|
+
static names(): { [key: string]: string } {
|
|
3613
|
+
return {
|
|
3614
|
+
key: 'key',
|
|
3615
|
+
value: 'value',
|
|
3616
|
+
};
|
|
3617
|
+
}
|
|
3618
|
+
|
|
3619
|
+
static types(): { [key: string]: any } {
|
|
3620
|
+
return {
|
|
3621
|
+
key: 'string',
|
|
3622
|
+
value: 'string',
|
|
3623
|
+
};
|
|
3624
|
+
}
|
|
3625
|
+
|
|
3626
|
+
constructor(map?: { [key: string]: any }) {
|
|
3627
|
+
super(map);
|
|
3628
|
+
}
|
|
3629
|
+
}
|
|
3630
|
+
|
|
3366
3631
|
// 逾期信息查询响应
|
|
3367
3632
|
export class OverdueInfoResponse extends $tea.Model {
|
|
3368
3633
|
// 逾期标识
|
|
@@ -4249,6 +4514,31 @@ export class RtopCrowdRiskFeatureResp extends $tea.Model {
|
|
|
4249
4514
|
}
|
|
4250
4515
|
}
|
|
4251
4516
|
|
|
4517
|
+
// 离线圈客计划详细
|
|
4518
|
+
export class OfflineDecisionPlanDetail extends $tea.Model {
|
|
4519
|
+
// 圈客计划ID
|
|
4520
|
+
decisionPlanId: string;
|
|
4521
|
+
// 离线圈客执行任务状态
|
|
4522
|
+
decisionResultStatus: string;
|
|
4523
|
+
static names(): { [key: string]: string } {
|
|
4524
|
+
return {
|
|
4525
|
+
decisionPlanId: 'decision_plan_id',
|
|
4526
|
+
decisionResultStatus: 'decision_result_status',
|
|
4527
|
+
};
|
|
4528
|
+
}
|
|
4529
|
+
|
|
4530
|
+
static types(): { [key: string]: any } {
|
|
4531
|
+
return {
|
|
4532
|
+
decisionPlanId: 'string',
|
|
4533
|
+
decisionResultStatus: 'string',
|
|
4534
|
+
};
|
|
4535
|
+
}
|
|
4536
|
+
|
|
4537
|
+
constructor(map?: { [key: string]: any }) {
|
|
4538
|
+
super(map);
|
|
4539
|
+
}
|
|
4540
|
+
}
|
|
4541
|
+
|
|
4252
4542
|
// 用户分层信息
|
|
4253
4543
|
export class UserClassifyInfo extends $tea.Model {
|
|
4254
4544
|
// 版本号
|
|
@@ -5226,6 +5516,147 @@ export class QueryBatchSecurityPolicyResponse extends $tea.Model {
|
|
|
5226
5516
|
}
|
|
5227
5517
|
}
|
|
5228
5518
|
|
|
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
|
+
export class QueryCreditshieldProductBatchRequest extends $tea.Model {
|
|
5591
|
+
// OAuth模式下的授权token
|
|
5592
|
+
authToken?: string;
|
|
5593
|
+
productInstanceId?: string;
|
|
5594
|
+
// 查询类型:
|
|
5595
|
+
// 1.还款概率评估
|
|
5596
|
+
// 2.经济波动检测
|
|
5597
|
+
// 3.触达前筛
|
|
5598
|
+
queryType: number;
|
|
5599
|
+
// 查询信息集合
|
|
5600
|
+
queryInfos: QueryInfo[];
|
|
5601
|
+
static names(): { [key: string]: string } {
|
|
5602
|
+
return {
|
|
5603
|
+
authToken: 'auth_token',
|
|
5604
|
+
productInstanceId: 'product_instance_id',
|
|
5605
|
+
queryType: 'query_type',
|
|
5606
|
+
queryInfos: 'query_infos',
|
|
5607
|
+
};
|
|
5608
|
+
}
|
|
5609
|
+
|
|
5610
|
+
static types(): { [key: string]: any } {
|
|
5611
|
+
return {
|
|
5612
|
+
authToken: 'string',
|
|
5613
|
+
productInstanceId: 'string',
|
|
5614
|
+
queryType: 'number',
|
|
5615
|
+
queryInfos: { 'type': 'array', 'itemType': QueryInfo },
|
|
5616
|
+
};
|
|
5617
|
+
}
|
|
5618
|
+
|
|
5619
|
+
constructor(map?: { [key: string]: any }) {
|
|
5620
|
+
super(map);
|
|
5621
|
+
}
|
|
5622
|
+
}
|
|
5623
|
+
|
|
5624
|
+
export class QueryCreditshieldProductBatchResponse extends $tea.Model {
|
|
5625
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
5626
|
+
reqMsgId?: string;
|
|
5627
|
+
// 结果码,一般OK表示调用成功
|
|
5628
|
+
resultCode?: string;
|
|
5629
|
+
// 异常信息的文本描述
|
|
5630
|
+
resultMsg?: string;
|
|
5631
|
+
// 查询结果是否成功
|
|
5632
|
+
success?: boolean;
|
|
5633
|
+
// 查询结果
|
|
5634
|
+
queryResults?: QueryResult[];
|
|
5635
|
+
static names(): { [key: string]: string } {
|
|
5636
|
+
return {
|
|
5637
|
+
reqMsgId: 'req_msg_id',
|
|
5638
|
+
resultCode: 'result_code',
|
|
5639
|
+
resultMsg: 'result_msg',
|
|
5640
|
+
success: 'success',
|
|
5641
|
+
queryResults: 'query_results',
|
|
5642
|
+
};
|
|
5643
|
+
}
|
|
5644
|
+
|
|
5645
|
+
static types(): { [key: string]: any } {
|
|
5646
|
+
return {
|
|
5647
|
+
reqMsgId: 'string',
|
|
5648
|
+
resultCode: 'string',
|
|
5649
|
+
resultMsg: 'string',
|
|
5650
|
+
success: 'boolean',
|
|
5651
|
+
queryResults: { 'type': 'array', 'itemType': QueryResult },
|
|
5652
|
+
};
|
|
5653
|
+
}
|
|
5654
|
+
|
|
5655
|
+
constructor(map?: { [key: string]: any }) {
|
|
5656
|
+
super(map);
|
|
5657
|
+
}
|
|
5658
|
+
}
|
|
5659
|
+
|
|
5229
5660
|
export class QueryDubheTestRequest extends $tea.Model {
|
|
5230
5661
|
// OAuth模式下的授权token
|
|
5231
5662
|
authToken?: string;
|
|
@@ -6815,6 +7246,18 @@ export class QueryDubbridgeRouterFundrouterRequest extends $tea.Model {
|
|
|
6815
7246
|
riskData?: string;
|
|
6816
7247
|
// 扩展字段
|
|
6817
7248
|
extInfo?: string;
|
|
7249
|
+
// 默认:0
|
|
7250
|
+
// 0:明文
|
|
7251
|
+
// 1:md5
|
|
7252
|
+
mobileType?: string;
|
|
7253
|
+
// 默认:0
|
|
7254
|
+
// 0:明文
|
|
7255
|
+
// 1:md5
|
|
7256
|
+
cardNoType?: string;
|
|
7257
|
+
// 默认:0
|
|
7258
|
+
// 0:明文
|
|
7259
|
+
// 1:md5
|
|
7260
|
+
customNameType?: string;
|
|
6818
7261
|
static names(): { [key: string]: string } {
|
|
6819
7262
|
return {
|
|
6820
7263
|
authToken: 'auth_token',
|
|
@@ -6833,6 +7276,9 @@ export class QueryDubbridgeRouterFundrouterRequest extends $tea.Model {
|
|
|
6833
7276
|
orderNo: 'order_no',
|
|
6834
7277
|
riskData: 'risk_data',
|
|
6835
7278
|
extInfo: 'ext_info',
|
|
7279
|
+
mobileType: 'mobile_type',
|
|
7280
|
+
cardNoType: 'card_no_type',
|
|
7281
|
+
customNameType: 'custom_name_type',
|
|
6836
7282
|
};
|
|
6837
7283
|
}
|
|
6838
7284
|
|
|
@@ -6854,6 +7300,9 @@ export class QueryDubbridgeRouterFundrouterRequest extends $tea.Model {
|
|
|
6854
7300
|
orderNo: 'string',
|
|
6855
7301
|
riskData: 'string',
|
|
6856
7302
|
extInfo: 'string',
|
|
7303
|
+
mobileType: 'string',
|
|
7304
|
+
cardNoType: 'string',
|
|
7305
|
+
customNameType: 'string',
|
|
6857
7306
|
};
|
|
6858
7307
|
}
|
|
6859
7308
|
|
|
@@ -6875,6 +7324,8 @@ export class QueryDubbridgeRouterFundrouterResponse extends $tea.Model {
|
|
|
6875
7324
|
abbreFundName?: string;
|
|
6876
7325
|
// 客户编号
|
|
6877
7326
|
customerNo?: string;
|
|
7327
|
+
// 资金方列表
|
|
7328
|
+
fundList?: GwFundRouterResult[];
|
|
6878
7329
|
static names(): { [key: string]: string } {
|
|
6879
7330
|
return {
|
|
6880
7331
|
reqMsgId: 'req_msg_id',
|
|
@@ -6883,6 +7334,7 @@ export class QueryDubbridgeRouterFundrouterResponse extends $tea.Model {
|
|
|
6883
7334
|
fundCode: 'fund_code',
|
|
6884
7335
|
abbreFundName: 'abbre_fund_name',
|
|
6885
7336
|
customerNo: 'customer_no',
|
|
7337
|
+
fundList: 'fund_list',
|
|
6886
7338
|
};
|
|
6887
7339
|
}
|
|
6888
7340
|
|
|
@@ -6894,6 +7346,7 @@ export class QueryDubbridgeRouterFundrouterResponse extends $tea.Model {
|
|
|
6894
7346
|
fundCode: 'string',
|
|
6895
7347
|
abbreFundName: 'string',
|
|
6896
7348
|
customerNo: 'string',
|
|
7349
|
+
fundList: { 'type': 'array', 'itemType': GwFundRouterResult },
|
|
6897
7350
|
};
|
|
6898
7351
|
}
|
|
6899
7352
|
|
|
@@ -6938,6 +7391,8 @@ export class ApplyDubbridgeCreditRequest extends $tea.Model {
|
|
|
6938
7391
|
channelType?: string;
|
|
6939
7392
|
// 客户类型
|
|
6940
7393
|
customType?: string;
|
|
7394
|
+
// 资金方代码
|
|
7395
|
+
fundCode?: string;
|
|
6941
7396
|
static names(): { [key: string]: string } {
|
|
6942
7397
|
return {
|
|
6943
7398
|
authToken: 'auth_token',
|
|
@@ -6958,6 +7413,7 @@ export class ApplyDubbridgeCreditRequest extends $tea.Model {
|
|
|
6958
7413
|
clickId: 'click_id',
|
|
6959
7414
|
channelType: 'channel_type',
|
|
6960
7415
|
customType: 'custom_type',
|
|
7416
|
+
fundCode: 'fund_code',
|
|
6961
7417
|
};
|
|
6962
7418
|
}
|
|
6963
7419
|
|
|
@@ -6981,6 +7437,7 @@ export class ApplyDubbridgeCreditRequest extends $tea.Model {
|
|
|
6981
7437
|
clickId: 'string',
|
|
6982
7438
|
channelType: 'string',
|
|
6983
7439
|
customType: 'string',
|
|
7440
|
+
fundCode: 'string',
|
|
6984
7441
|
};
|
|
6985
7442
|
}
|
|
6986
7443
|
|
|
@@ -7122,6 +7579,8 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
7122
7579
|
cardNo?: string;
|
|
7123
7580
|
// 手机号
|
|
7124
7581
|
mobile?: string;
|
|
7582
|
+
// 银行名称
|
|
7583
|
+
bankName?: string;
|
|
7125
7584
|
static names(): { [key: string]: string } {
|
|
7126
7585
|
return {
|
|
7127
7586
|
authToken: 'auth_token',
|
|
@@ -7134,6 +7593,7 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
7134
7593
|
openId: 'open_id',
|
|
7135
7594
|
cardNo: 'card_no',
|
|
7136
7595
|
mobile: 'mobile',
|
|
7596
|
+
bankName: 'bank_name',
|
|
7137
7597
|
};
|
|
7138
7598
|
}
|
|
7139
7599
|
|
|
@@ -7149,6 +7609,7 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
7149
7609
|
openId: 'string',
|
|
7150
7610
|
cardNo: 'string',
|
|
7151
7611
|
mobile: 'string',
|
|
7612
|
+
bankName: 'string',
|
|
7152
7613
|
};
|
|
7153
7614
|
}
|
|
7154
7615
|
|
|
@@ -10117,23 +10578,90 @@ export class QueryDubbridgeAgreementPreviewResponse extends $tea.Model {
|
|
|
10117
10578
|
}
|
|
10118
10579
|
}
|
|
10119
10580
|
|
|
10120
|
-
export class QueryDubbridgeAccountUsecreditRequest extends $tea.Model {
|
|
10581
|
+
export class QueryDubbridgeAccountUsecreditRequest extends $tea.Model {
|
|
10582
|
+
// OAuth模式下的授权token
|
|
10583
|
+
authToken?: string;
|
|
10584
|
+
productInstanceId?: string;
|
|
10585
|
+
// 渠道号
|
|
10586
|
+
channelCode: string;
|
|
10587
|
+
// 客户编码
|
|
10588
|
+
customNo?: string;
|
|
10589
|
+
// 资产方用户唯一标识
|
|
10590
|
+
openId?: string;
|
|
10591
|
+
static names(): { [key: string]: string } {
|
|
10592
|
+
return {
|
|
10593
|
+
authToken: 'auth_token',
|
|
10594
|
+
productInstanceId: 'product_instance_id',
|
|
10595
|
+
channelCode: 'channel_code',
|
|
10596
|
+
customNo: 'custom_no',
|
|
10597
|
+
openId: 'open_id',
|
|
10598
|
+
};
|
|
10599
|
+
}
|
|
10600
|
+
|
|
10601
|
+
static types(): { [key: string]: any } {
|
|
10602
|
+
return {
|
|
10603
|
+
authToken: 'string',
|
|
10604
|
+
productInstanceId: 'string',
|
|
10605
|
+
channelCode: 'string',
|
|
10606
|
+
customNo: 'string',
|
|
10607
|
+
openId: 'string',
|
|
10608
|
+
};
|
|
10609
|
+
}
|
|
10610
|
+
|
|
10611
|
+
constructor(map?: { [key: string]: any }) {
|
|
10612
|
+
super(map);
|
|
10613
|
+
}
|
|
10614
|
+
}
|
|
10615
|
+
|
|
10616
|
+
export class QueryDubbridgeAccountUsecreditResponse extends $tea.Model {
|
|
10617
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
10618
|
+
reqMsgId?: string;
|
|
10619
|
+
// 结果码,一般OK表示调用成功
|
|
10620
|
+
resultCode?: string;
|
|
10621
|
+
// 异常信息的文本描述
|
|
10622
|
+
resultMsg?: string;
|
|
10623
|
+
// 用户借款是否结清
|
|
10624
|
+
data?: CustomReceiptStatus;
|
|
10625
|
+
static names(): { [key: string]: string } {
|
|
10626
|
+
return {
|
|
10627
|
+
reqMsgId: 'req_msg_id',
|
|
10628
|
+
resultCode: 'result_code',
|
|
10629
|
+
resultMsg: 'result_msg',
|
|
10630
|
+
data: 'data',
|
|
10631
|
+
};
|
|
10632
|
+
}
|
|
10633
|
+
|
|
10634
|
+
static types(): { [key: string]: any } {
|
|
10635
|
+
return {
|
|
10636
|
+
reqMsgId: 'string',
|
|
10637
|
+
resultCode: 'string',
|
|
10638
|
+
resultMsg: 'string',
|
|
10639
|
+
data: CustomReceiptStatus,
|
|
10640
|
+
};
|
|
10641
|
+
}
|
|
10642
|
+
|
|
10643
|
+
constructor(map?: { [key: string]: any }) {
|
|
10644
|
+
super(map);
|
|
10645
|
+
}
|
|
10646
|
+
}
|
|
10647
|
+
|
|
10648
|
+
export class QueryDubbridgeUserAggregationinfoRequest extends $tea.Model {
|
|
10121
10649
|
// OAuth模式下的授权token
|
|
10122
10650
|
authToken?: string;
|
|
10123
10651
|
productInstanceId?: string;
|
|
10124
|
-
//
|
|
10125
|
-
|
|
10126
|
-
// 客户编码
|
|
10127
|
-
customNo?: string;
|
|
10652
|
+
// 订单号
|
|
10653
|
+
orderNo: string;
|
|
10128
10654
|
// 资产方用户唯一标识
|
|
10129
10655
|
openId?: string;
|
|
10656
|
+
// 客户编码
|
|
10657
|
+
customNo?: string;
|
|
10130
10658
|
static names(): { [key: string]: string } {
|
|
10131
10659
|
return {
|
|
10132
10660
|
authToken: 'auth_token',
|
|
10133
10661
|
productInstanceId: 'product_instance_id',
|
|
10134
|
-
|
|
10135
|
-
customNo: 'custom_no',
|
|
10662
|
+
orderNo: 'order_no',
|
|
10136
10663
|
openId: 'open_id',
|
|
10664
|
+
customNo: 'custom_no',
|
|
10137
10665
|
};
|
|
10138
10666
|
}
|
|
10139
10667
|
|
|
@@ -10141,9 +10669,9 @@ export class QueryDubbridgeAccountUsecreditRequest extends $tea.Model {
|
|
|
10141
10669
|
return {
|
|
10142
10670
|
authToken: 'string',
|
|
10143
10671
|
productInstanceId: 'string',
|
|
10144
|
-
|
|
10145
|
-
customNo: 'string',
|
|
10672
|
+
orderNo: 'string',
|
|
10146
10673
|
openId: 'string',
|
|
10674
|
+
customNo: 'string',
|
|
10147
10675
|
};
|
|
10148
10676
|
}
|
|
10149
10677
|
|
|
@@ -10152,21 +10680,21 @@ export class QueryDubbridgeAccountUsecreditRequest extends $tea.Model {
|
|
|
10152
10680
|
}
|
|
10153
10681
|
}
|
|
10154
10682
|
|
|
10155
|
-
export class
|
|
10683
|
+
export class QueryDubbridgeUserAggregationinfoResponse extends $tea.Model {
|
|
10156
10684
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
10157
10685
|
reqMsgId?: string;
|
|
10158
10686
|
// 结果码,一般OK表示调用成功
|
|
10159
10687
|
resultCode?: string;
|
|
10160
10688
|
// 异常信息的文本描述
|
|
10161
10689
|
resultMsg?: string;
|
|
10162
|
-
//
|
|
10163
|
-
|
|
10690
|
+
// 用户聚合状态信息
|
|
10691
|
+
userAggregationInfo?: UserAggregationInfo;
|
|
10164
10692
|
static names(): { [key: string]: string } {
|
|
10165
10693
|
return {
|
|
10166
10694
|
reqMsgId: 'req_msg_id',
|
|
10167
10695
|
resultCode: 'result_code',
|
|
10168
10696
|
resultMsg: 'result_msg',
|
|
10169
|
-
|
|
10697
|
+
userAggregationInfo: 'user_aggregation_info',
|
|
10170
10698
|
};
|
|
10171
10699
|
}
|
|
10172
10700
|
|
|
@@ -10175,7 +10703,7 @@ export class QueryDubbridgeAccountUsecreditResponse extends $tea.Model {
|
|
|
10175
10703
|
reqMsgId: 'string',
|
|
10176
10704
|
resultCode: 'string',
|
|
10177
10705
|
resultMsg: 'string',
|
|
10178
|
-
|
|
10706
|
+
userAggregationInfo: UserAggregationInfo,
|
|
10179
10707
|
};
|
|
10180
10708
|
}
|
|
10181
10709
|
|
|
@@ -12221,6 +12749,124 @@ export class QueryQmpTextsmsTemplateResponse extends $tea.Model {
|
|
|
12221
12749
|
}
|
|
12222
12750
|
}
|
|
12223
12751
|
|
|
12752
|
+
export class PushQmpBackflowEventRequest extends $tea.Model {
|
|
12753
|
+
// OAuth模式下的授权token
|
|
12754
|
+
authToken?: string;
|
|
12755
|
+
productInstanceId?: string;
|
|
12756
|
+
// 回流事件id,对应租户回流事件id
|
|
12757
|
+
eventId: number;
|
|
12758
|
+
// 回流事件记录列表
|
|
12759
|
+
eventRecords: BackflowEventRecord[];
|
|
12760
|
+
static names(): { [key: string]: string } {
|
|
12761
|
+
return {
|
|
12762
|
+
authToken: 'auth_token',
|
|
12763
|
+
productInstanceId: 'product_instance_id',
|
|
12764
|
+
eventId: 'event_id',
|
|
12765
|
+
eventRecords: 'event_records',
|
|
12766
|
+
};
|
|
12767
|
+
}
|
|
12768
|
+
|
|
12769
|
+
static types(): { [key: string]: any } {
|
|
12770
|
+
return {
|
|
12771
|
+
authToken: 'string',
|
|
12772
|
+
productInstanceId: 'string',
|
|
12773
|
+
eventId: 'number',
|
|
12774
|
+
eventRecords: { 'type': 'array', 'itemType': BackflowEventRecord },
|
|
12775
|
+
};
|
|
12776
|
+
}
|
|
12777
|
+
|
|
12778
|
+
constructor(map?: { [key: string]: any }) {
|
|
12779
|
+
super(map);
|
|
12780
|
+
}
|
|
12781
|
+
}
|
|
12782
|
+
|
|
12783
|
+
export class PushQmpBackflowEventResponse extends $tea.Model {
|
|
12784
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
12785
|
+
reqMsgId?: string;
|
|
12786
|
+
// 结果码,一般OK表示调用成功
|
|
12787
|
+
resultCode?: string;
|
|
12788
|
+
// 异常信息的文本描述
|
|
12789
|
+
resultMsg?: string;
|
|
12790
|
+
static names(): { [key: string]: string } {
|
|
12791
|
+
return {
|
|
12792
|
+
reqMsgId: 'req_msg_id',
|
|
12793
|
+
resultCode: 'result_code',
|
|
12794
|
+
resultMsg: 'result_msg',
|
|
12795
|
+
};
|
|
12796
|
+
}
|
|
12797
|
+
|
|
12798
|
+
static types(): { [key: string]: any } {
|
|
12799
|
+
return {
|
|
12800
|
+
reqMsgId: 'string',
|
|
12801
|
+
resultCode: 'string',
|
|
12802
|
+
resultMsg: 'string',
|
|
12803
|
+
};
|
|
12804
|
+
}
|
|
12805
|
+
|
|
12806
|
+
constructor(map?: { [key: string]: any }) {
|
|
12807
|
+
super(map);
|
|
12808
|
+
}
|
|
12809
|
+
}
|
|
12810
|
+
|
|
12811
|
+
export class PushQmpBackflowJsondataRequest extends $tea.Model {
|
|
12812
|
+
// OAuth模式下的授权token
|
|
12813
|
+
authToken?: string;
|
|
12814
|
+
productInstanceId?: string;
|
|
12815
|
+
// 回流事件id,对应租户回流事件id
|
|
12816
|
+
eventId: number;
|
|
12817
|
+
// 回流事件记录列表
|
|
12818
|
+
eventRecords: string;
|
|
12819
|
+
static names(): { [key: string]: string } {
|
|
12820
|
+
return {
|
|
12821
|
+
authToken: 'auth_token',
|
|
12822
|
+
productInstanceId: 'product_instance_id',
|
|
12823
|
+
eventId: 'event_id',
|
|
12824
|
+
eventRecords: 'event_records',
|
|
12825
|
+
};
|
|
12826
|
+
}
|
|
12827
|
+
|
|
12828
|
+
static types(): { [key: string]: any } {
|
|
12829
|
+
return {
|
|
12830
|
+
authToken: 'string',
|
|
12831
|
+
productInstanceId: 'string',
|
|
12832
|
+
eventId: 'number',
|
|
12833
|
+
eventRecords: 'string',
|
|
12834
|
+
};
|
|
12835
|
+
}
|
|
12836
|
+
|
|
12837
|
+
constructor(map?: { [key: string]: any }) {
|
|
12838
|
+
super(map);
|
|
12839
|
+
}
|
|
12840
|
+
}
|
|
12841
|
+
|
|
12842
|
+
export class PushQmpBackflowJsondataResponse extends $tea.Model {
|
|
12843
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
12844
|
+
reqMsgId?: string;
|
|
12845
|
+
// 结果码,一般OK表示调用成功
|
|
12846
|
+
resultCode?: string;
|
|
12847
|
+
// 异常信息的文本描述
|
|
12848
|
+
resultMsg?: string;
|
|
12849
|
+
static names(): { [key: string]: string } {
|
|
12850
|
+
return {
|
|
12851
|
+
reqMsgId: 'req_msg_id',
|
|
12852
|
+
resultCode: 'result_code',
|
|
12853
|
+
resultMsg: 'result_msg',
|
|
12854
|
+
};
|
|
12855
|
+
}
|
|
12856
|
+
|
|
12857
|
+
static types(): { [key: string]: any } {
|
|
12858
|
+
return {
|
|
12859
|
+
reqMsgId: 'string',
|
|
12860
|
+
resultCode: 'string',
|
|
12861
|
+
resultMsg: 'string',
|
|
12862
|
+
};
|
|
12863
|
+
}
|
|
12864
|
+
|
|
12865
|
+
constructor(map?: { [key: string]: any }) {
|
|
12866
|
+
super(map);
|
|
12867
|
+
}
|
|
12868
|
+
}
|
|
12869
|
+
|
|
12224
12870
|
export class QueryRbbGenericInvokeRequest extends $tea.Model {
|
|
12225
12871
|
// OAuth模式下的授权token
|
|
12226
12872
|
authToken?: string;
|
|
@@ -19730,6 +20376,73 @@ export class DownloadUmktOfflinedecisionResultResponse extends $tea.Model {
|
|
|
19730
20376
|
}
|
|
19731
20377
|
}
|
|
19732
20378
|
|
|
20379
|
+
export class QueryUmktOfflinedecisionPlandetailsRequest extends $tea.Model {
|
|
20380
|
+
// OAuth模式下的授权token
|
|
20381
|
+
authToken?: string;
|
|
20382
|
+
productInstanceId?: string;
|
|
20383
|
+
// 离线圈客配置的ID
|
|
20384
|
+
offlineDecisionPlanId: number;
|
|
20385
|
+
// 执行日期
|
|
20386
|
+
resultDate: string;
|
|
20387
|
+
static names(): { [key: string]: string } {
|
|
20388
|
+
return {
|
|
20389
|
+
authToken: 'auth_token',
|
|
20390
|
+
productInstanceId: 'product_instance_id',
|
|
20391
|
+
offlineDecisionPlanId: 'offline_decision_plan_id',
|
|
20392
|
+
resultDate: 'result_date',
|
|
20393
|
+
};
|
|
20394
|
+
}
|
|
20395
|
+
|
|
20396
|
+
static types(): { [key: string]: any } {
|
|
20397
|
+
return {
|
|
20398
|
+
authToken: 'string',
|
|
20399
|
+
productInstanceId: 'string',
|
|
20400
|
+
offlineDecisionPlanId: 'number',
|
|
20401
|
+
resultDate: 'string',
|
|
20402
|
+
};
|
|
20403
|
+
}
|
|
20404
|
+
|
|
20405
|
+
constructor(map?: { [key: string]: any }) {
|
|
20406
|
+
super(map);
|
|
20407
|
+
}
|
|
20408
|
+
}
|
|
20409
|
+
|
|
20410
|
+
export class QueryUmktOfflinedecisionPlandetailsResponse extends $tea.Model {
|
|
20411
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
20412
|
+
reqMsgId?: string;
|
|
20413
|
+
// 结果码,一般OK表示调用成功
|
|
20414
|
+
resultCode?: string;
|
|
20415
|
+
// 异常信息的文本描述
|
|
20416
|
+
resultMsg?: string;
|
|
20417
|
+
// 离线圈客关联计划的个数
|
|
20418
|
+
offlineDecisionPlanCount?: number;
|
|
20419
|
+
// 离线圈客计划详细
|
|
20420
|
+
planDetailList?: OfflineDecisionPlanDetail[];
|
|
20421
|
+
static names(): { [key: string]: string } {
|
|
20422
|
+
return {
|
|
20423
|
+
reqMsgId: 'req_msg_id',
|
|
20424
|
+
resultCode: 'result_code',
|
|
20425
|
+
resultMsg: 'result_msg',
|
|
20426
|
+
offlineDecisionPlanCount: 'offline_decision_plan_count',
|
|
20427
|
+
planDetailList: 'plan_detail_list',
|
|
20428
|
+
};
|
|
20429
|
+
}
|
|
20430
|
+
|
|
20431
|
+
static types(): { [key: string]: any } {
|
|
20432
|
+
return {
|
|
20433
|
+
reqMsgId: 'string',
|
|
20434
|
+
resultCode: 'string',
|
|
20435
|
+
resultMsg: 'string',
|
|
20436
|
+
offlineDecisionPlanCount: 'number',
|
|
20437
|
+
planDetailList: { 'type': 'array', 'itemType': OfflineDecisionPlanDetail },
|
|
20438
|
+
};
|
|
20439
|
+
}
|
|
20440
|
+
|
|
20441
|
+
constructor(map?: { [key: string]: any }) {
|
|
20442
|
+
super(map);
|
|
20443
|
+
}
|
|
20444
|
+
}
|
|
20445
|
+
|
|
19733
20446
|
export class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
19734
20447
|
// OAuth模式下的授权token
|
|
19735
20448
|
authToken?: string;
|
|
@@ -19931,7 +20644,7 @@ export default class Client {
|
|
|
19931
20644
|
req_msg_id: AntchainUtil.getNonce(),
|
|
19932
20645
|
access_key: this._accessKeyId,
|
|
19933
20646
|
base_sdk_version: "TeaSDK-2.0",
|
|
19934
|
-
sdk_version: "1.
|
|
20647
|
+
sdk_version: "1.20.2",
|
|
19935
20648
|
_prod_code: "RISKPLUS",
|
|
19936
20649
|
_prod_channel: "undefined",
|
|
19937
20650
|
};
|
|
@@ -20150,6 +20863,44 @@ export default class Client {
|
|
|
20150
20863
|
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({}));
|
|
20151
20864
|
}
|
|
20152
20865
|
|
|
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
|
+
/**
|
|
20886
|
+
* Description: 信护盾产品批量查询
|
|
20887
|
+
* Summary: 信护盾产品批量查询
|
|
20888
|
+
*/
|
|
20889
|
+
async queryCreditshieldProductBatch(request: QueryCreditshieldProductBatchRequest): Promise<QueryCreditshieldProductBatchResponse> {
|
|
20890
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
20891
|
+
let headers : {[key: string ]: string} = { };
|
|
20892
|
+
return await this.queryCreditshieldProductBatchEx(request, headers, runtime);
|
|
20893
|
+
}
|
|
20894
|
+
|
|
20895
|
+
/**
|
|
20896
|
+
* Description: 信护盾产品批量查询
|
|
20897
|
+
* Summary: 信护盾产品批量查询
|
|
20898
|
+
*/
|
|
20899
|
+
async queryCreditshieldProductBatchEx(request: QueryCreditshieldProductBatchRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryCreditshieldProductBatchResponse> {
|
|
20900
|
+
Util.validateModel(request);
|
|
20901
|
+
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({}));
|
|
20902
|
+
}
|
|
20903
|
+
|
|
20153
20904
|
/**
|
|
20154
20905
|
* Description: 天枢信贷业务系统线下测试环境测试接口
|
|
20155
20906
|
* Summary: 天枢信贷业务系统线下测试接口
|
|
@@ -20583,6 +21334,7 @@ export default class Client {
|
|
|
20583
21334
|
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
20584
21335
|
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
20585
21336
|
request.fileId = uploadResp.fileId;
|
|
21337
|
+
request.fileObject = null;
|
|
20586
21338
|
}
|
|
20587
21339
|
|
|
20588
21340
|
Util.validateModel(request);
|
|
@@ -21292,6 +22044,25 @@ export default class Client {
|
|
|
21292
22044
|
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({}));
|
|
21293
22045
|
}
|
|
21294
22046
|
|
|
22047
|
+
/**
|
|
22048
|
+
* Description: 天枢用户聚合状态查询接口
|
|
22049
|
+
* Summary: 天枢用户聚合状态查询接口
|
|
22050
|
+
*/
|
|
22051
|
+
async queryDubbridgeUserAggregationinfo(request: QueryDubbridgeUserAggregationinfoRequest): Promise<QueryDubbridgeUserAggregationinfoResponse> {
|
|
22052
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
22053
|
+
let headers : {[key: string ]: string} = { };
|
|
22054
|
+
return await this.queryDubbridgeUserAggregationinfoEx(request, headers, runtime);
|
|
22055
|
+
}
|
|
22056
|
+
|
|
22057
|
+
/**
|
|
22058
|
+
* Description: 天枢用户聚合状态查询接口
|
|
22059
|
+
* Summary: 天枢用户聚合状态查询接口
|
|
22060
|
+
*/
|
|
22061
|
+
async queryDubbridgeUserAggregationinfoEx(request: QueryDubbridgeUserAggregationinfoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeUserAggregationinfoResponse> {
|
|
22062
|
+
Util.validateModel(request);
|
|
22063
|
+
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
|
+
}
|
|
22065
|
+
|
|
21295
22066
|
/**
|
|
21296
22067
|
* Description: 四要素认证首先调用此接口
|
|
21297
22068
|
* Summary: 芝麻四要素接口
|
|
@@ -21383,6 +22154,7 @@ export default class Client {
|
|
|
21383
22154
|
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
21384
22155
|
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
21385
22156
|
request.fileId = uploadResp.fileId;
|
|
22157
|
+
request.fileObject = null;
|
|
21386
22158
|
}
|
|
21387
22159
|
|
|
21388
22160
|
Util.validateModel(request);
|
|
@@ -21423,6 +22195,7 @@ export default class Client {
|
|
|
21423
22195
|
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
21424
22196
|
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
21425
22197
|
request.fileId = uploadResp.fileId;
|
|
22198
|
+
request.fileObject = null;
|
|
21426
22199
|
}
|
|
21427
22200
|
|
|
21428
22201
|
Util.validateModel(request);
|
|
@@ -21790,6 +22563,44 @@ export default class Client {
|
|
|
21790
22563
|
return $tea.cast<QueryQmpTextsmsTemplateResponse>(await this.doRequest("1.0", "riskplus.qmp.textsms.template.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryQmpTextsmsTemplateResponse({}));
|
|
21791
22564
|
}
|
|
21792
22565
|
|
|
22566
|
+
/**
|
|
22567
|
+
* Description: 蚁盾业务回流事件推送
|
|
22568
|
+
* Summary: 蚁盾回流事件推送
|
|
22569
|
+
*/
|
|
22570
|
+
async pushQmpBackflowEvent(request: PushQmpBackflowEventRequest): Promise<PushQmpBackflowEventResponse> {
|
|
22571
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
22572
|
+
let headers : {[key: string ]: string} = { };
|
|
22573
|
+
return await this.pushQmpBackflowEventEx(request, headers, runtime);
|
|
22574
|
+
}
|
|
22575
|
+
|
|
22576
|
+
/**
|
|
22577
|
+
* Description: 蚁盾业务回流事件推送
|
|
22578
|
+
* Summary: 蚁盾回流事件推送
|
|
22579
|
+
*/
|
|
22580
|
+
async pushQmpBackflowEventEx(request: PushQmpBackflowEventRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PushQmpBackflowEventResponse> {
|
|
22581
|
+
Util.validateModel(request);
|
|
22582
|
+
return $tea.cast<PushQmpBackflowEventResponse>(await this.doRequest("1.0", "riskplus.qmp.backflow.event.push", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PushQmpBackflowEventResponse({}));
|
|
22583
|
+
}
|
|
22584
|
+
|
|
22585
|
+
/**
|
|
22586
|
+
* Description: 蚁盾数据回流推送,用于客户定制json数据
|
|
22587
|
+
* Summary: 蚁盾数据回流json格式推送
|
|
22588
|
+
*/
|
|
22589
|
+
async pushQmpBackflowJsondata(request: PushQmpBackflowJsondataRequest): Promise<PushQmpBackflowJsondataResponse> {
|
|
22590
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
22591
|
+
let headers : {[key: string ]: string} = { };
|
|
22592
|
+
return await this.pushQmpBackflowJsondataEx(request, headers, runtime);
|
|
22593
|
+
}
|
|
22594
|
+
|
|
22595
|
+
/**
|
|
22596
|
+
* Description: 蚁盾数据回流推送,用于客户定制json数据
|
|
22597
|
+
* Summary: 蚁盾数据回流json格式推送
|
|
22598
|
+
*/
|
|
22599
|
+
async pushQmpBackflowJsondataEx(request: PushQmpBackflowJsondataRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PushQmpBackflowJsondataResponse> {
|
|
22600
|
+
Util.validateModel(request);
|
|
22601
|
+
return $tea.cast<PushQmpBackflowJsondataResponse>(await this.doRequest("1.0", "riskplus.qmp.backflow.jsondata.push", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PushQmpBackflowJsondataResponse({}));
|
|
22602
|
+
}
|
|
22603
|
+
|
|
21793
22604
|
/**
|
|
21794
22605
|
* Description: 风险大脑企业版通用查询接口
|
|
21795
22606
|
* Summary: 【已废弃】
|
|
@@ -22147,6 +22958,7 @@ export default class Client {
|
|
|
22147
22958
|
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
22148
22959
|
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
22149
22960
|
request.fileId = uploadResp.fileId;
|
|
22961
|
+
request.fileObject = null;
|
|
22150
22962
|
}
|
|
22151
22963
|
|
|
22152
22964
|
Util.validateModel(request);
|
|
@@ -22930,6 +23742,7 @@ export default class Client {
|
|
|
22930
23742
|
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
22931
23743
|
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
22932
23744
|
request.fileId = uploadResp.fileId;
|
|
23745
|
+
request.fileObject = null;
|
|
22933
23746
|
}
|
|
22934
23747
|
|
|
22935
23748
|
Util.validateModel(request);
|
|
@@ -23637,6 +24450,7 @@ export default class Client {
|
|
|
23637
24450
|
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
23638
24451
|
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
23639
24452
|
request.fileId = uploadResp.fileId;
|
|
24453
|
+
request.fileObject = null;
|
|
23640
24454
|
}
|
|
23641
24455
|
|
|
23642
24456
|
Util.validateModel(request);
|
|
@@ -23681,6 +24495,25 @@ export default class Client {
|
|
|
23681
24495
|
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({}));
|
|
23682
24496
|
}
|
|
23683
24497
|
|
|
24498
|
+
/**
|
|
24499
|
+
* Description: 包含离线圈客关联计划和任务状态详情
|
|
24500
|
+
* Summary: 营销盾离线圈客计划执行详情
|
|
24501
|
+
*/
|
|
24502
|
+
async queryUmktOfflinedecisionPlandetails(request: QueryUmktOfflinedecisionPlandetailsRequest): Promise<QueryUmktOfflinedecisionPlandetailsResponse> {
|
|
24503
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
24504
|
+
let headers : {[key: string ]: string} = { };
|
|
24505
|
+
return await this.queryUmktOfflinedecisionPlandetailsEx(request, headers, runtime);
|
|
24506
|
+
}
|
|
24507
|
+
|
|
24508
|
+
/**
|
|
24509
|
+
* Description: 包含离线圈客关联计划和任务状态详情
|
|
24510
|
+
* Summary: 营销盾离线圈客计划执行详情
|
|
24511
|
+
*/
|
|
24512
|
+
async queryUmktOfflinedecisionPlandetailsEx(request: QueryUmktOfflinedecisionPlandetailsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryUmktOfflinedecisionPlandetailsResponse> {
|
|
24513
|
+
Util.validateModel(request);
|
|
24514
|
+
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({}));
|
|
24515
|
+
}
|
|
24516
|
+
|
|
23684
24517
|
/**
|
|
23685
24518
|
* Description: 创建HTTP PUT提交的文件上传
|
|
23686
24519
|
* Summary: 文件上传创建
|