@antchain/riskplus 1.19.28 → 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/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;
@@ -6893,6 +7324,8 @@ export class QueryDubbridgeRouterFundrouterResponse extends $tea.Model {
6893
7324
  abbreFundName?: string;
6894
7325
  // 客户编号
6895
7326
  customerNo?: string;
7327
+ // 资金方列表
7328
+ fundList?: GwFundRouterResult[];
6896
7329
  static names(): { [key: string]: string } {
6897
7330
  return {
6898
7331
  reqMsgId: 'req_msg_id',
@@ -6901,6 +7334,7 @@ export class QueryDubbridgeRouterFundrouterResponse extends $tea.Model {
6901
7334
  fundCode: 'fund_code',
6902
7335
  abbreFundName: 'abbre_fund_name',
6903
7336
  customerNo: 'customer_no',
7337
+ fundList: 'fund_list',
6904
7338
  };
6905
7339
  }
6906
7340
 
@@ -6912,6 +7346,7 @@ export class QueryDubbridgeRouterFundrouterResponse extends $tea.Model {
6912
7346
  fundCode: 'string',
6913
7347
  abbreFundName: 'string',
6914
7348
  customerNo: 'string',
7349
+ fundList: { 'type': 'array', 'itemType': GwFundRouterResult },
6915
7350
  };
6916
7351
  }
6917
7352
 
@@ -6956,6 +7391,8 @@ export class ApplyDubbridgeCreditRequest extends $tea.Model {
6956
7391
  channelType?: string;
6957
7392
  // 客户类型
6958
7393
  customType?: string;
7394
+ // 资金方代码
7395
+ fundCode?: string;
6959
7396
  static names(): { [key: string]: string } {
6960
7397
  return {
6961
7398
  authToken: 'auth_token',
@@ -6976,6 +7413,7 @@ export class ApplyDubbridgeCreditRequest extends $tea.Model {
6976
7413
  clickId: 'click_id',
6977
7414
  channelType: 'channel_type',
6978
7415
  customType: 'custom_type',
7416
+ fundCode: 'fund_code',
6979
7417
  };
6980
7418
  }
6981
7419
 
@@ -6999,6 +7437,7 @@ export class ApplyDubbridgeCreditRequest extends $tea.Model {
6999
7437
  clickId: 'string',
7000
7438
  channelType: 'string',
7001
7439
  customType: 'string',
7440
+ fundCode: 'string',
7002
7441
  };
7003
7442
  }
7004
7443
 
@@ -7140,6 +7579,8 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
7140
7579
  cardNo?: string;
7141
7580
  // 手机号
7142
7581
  mobile?: string;
7582
+ // 银行名称
7583
+ bankName?: string;
7143
7584
  static names(): { [key: string]: string } {
7144
7585
  return {
7145
7586
  authToken: 'auth_token',
@@ -7152,6 +7593,7 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
7152
7593
  openId: 'open_id',
7153
7594
  cardNo: 'card_no',
7154
7595
  mobile: 'mobile',
7596
+ bankName: 'bank_name',
7155
7597
  };
7156
7598
  }
7157
7599
 
@@ -7167,6 +7609,7 @@ export class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
7167
7609
  openId: 'string',
7168
7610
  cardNo: 'string',
7169
7611
  mobile: 'string',
7612
+ bankName: 'string',
7170
7613
  };
7171
7614
  }
7172
7615
 
@@ -10202,6 +10645,73 @@ export class QueryDubbridgeAccountUsecreditResponse extends $tea.Model {
10202
10645
  }
10203
10646
  }
10204
10647
 
10648
+ export class QueryDubbridgeUserAggregationinfoRequest extends $tea.Model {
10649
+ // OAuth模式下的授权token
10650
+ authToken?: string;
10651
+ productInstanceId?: string;
10652
+ // 订单号
10653
+ orderNo: string;
10654
+ // 资产方用户唯一标识
10655
+ openId?: string;
10656
+ // 客户编码
10657
+ customNo?: string;
10658
+ static names(): { [key: string]: string } {
10659
+ return {
10660
+ authToken: 'auth_token',
10661
+ productInstanceId: 'product_instance_id',
10662
+ orderNo: 'order_no',
10663
+ openId: 'open_id',
10664
+ customNo: 'custom_no',
10665
+ };
10666
+ }
10667
+
10668
+ static types(): { [key: string]: any } {
10669
+ return {
10670
+ authToken: 'string',
10671
+ productInstanceId: 'string',
10672
+ orderNo: 'string',
10673
+ openId: 'string',
10674
+ customNo: 'string',
10675
+ };
10676
+ }
10677
+
10678
+ constructor(map?: { [key: string]: any }) {
10679
+ super(map);
10680
+ }
10681
+ }
10682
+
10683
+ export class QueryDubbridgeUserAggregationinfoResponse extends $tea.Model {
10684
+ // 请求唯一ID,用于链路跟踪和问题排查
10685
+ reqMsgId?: string;
10686
+ // 结果码,一般OK表示调用成功
10687
+ resultCode?: string;
10688
+ // 异常信息的文本描述
10689
+ resultMsg?: string;
10690
+ // 用户聚合状态信息
10691
+ userAggregationInfo?: UserAggregationInfo;
10692
+ static names(): { [key: string]: string } {
10693
+ return {
10694
+ reqMsgId: 'req_msg_id',
10695
+ resultCode: 'result_code',
10696
+ resultMsg: 'result_msg',
10697
+ userAggregationInfo: 'user_aggregation_info',
10698
+ };
10699
+ }
10700
+
10701
+ static types(): { [key: string]: any } {
10702
+ return {
10703
+ reqMsgId: 'string',
10704
+ resultCode: 'string',
10705
+ resultMsg: 'string',
10706
+ userAggregationInfo: UserAggregationInfo,
10707
+ };
10708
+ }
10709
+
10710
+ constructor(map?: { [key: string]: any }) {
10711
+ super(map);
10712
+ }
10713
+ }
10714
+
10205
10715
  export class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
10206
10716
  // OAuth模式下的授权token
10207
10717
  authToken?: string;
@@ -19866,6 +20376,73 @@ export class DownloadUmktOfflinedecisionResultResponse extends $tea.Model {
19866
20376
  }
19867
20377
  }
19868
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
+
19869
20446
  export class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
19870
20447
  // OAuth模式下的授权token
19871
20448
  authToken?: string;
@@ -20067,7 +20644,7 @@ export default class Client {
20067
20644
  req_msg_id: AntchainUtil.getNonce(),
20068
20645
  access_key: this._accessKeyId,
20069
20646
  base_sdk_version: "TeaSDK-2.0",
20070
- sdk_version: "1.19.28",
20647
+ sdk_version: "1.20.2",
20071
20648
  _prod_code: "RISKPLUS",
20072
20649
  _prod_channel: "undefined",
20073
20650
  };
@@ -20286,6 +20863,44 @@ export default class Client {
20286
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({}));
20287
20864
  }
20288
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
+
20289
20904
  /**
20290
20905
  * Description: 天枢信贷业务系统线下测试环境测试接口
20291
20906
  * Summary: 天枢信贷业务系统线下测试接口
@@ -20719,6 +21334,7 @@ export default class Client {
20719
21334
  let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
20720
21335
  await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
20721
21336
  request.fileId = uploadResp.fileId;
21337
+ request.fileObject = null;
20722
21338
  }
20723
21339
 
20724
21340
  Util.validateModel(request);
@@ -21428,6 +22044,25 @@ export default class Client {
21428
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({}));
21429
22045
  }
21430
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
+
21431
22066
  /**
21432
22067
  * Description: 四要素认证首先调用此接口
21433
22068
  * Summary: 芝麻四要素接口
@@ -21519,6 +22154,7 @@ export default class Client {
21519
22154
  let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
21520
22155
  await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
21521
22156
  request.fileId = uploadResp.fileId;
22157
+ request.fileObject = null;
21522
22158
  }
21523
22159
 
21524
22160
  Util.validateModel(request);
@@ -21559,6 +22195,7 @@ export default class Client {
21559
22195
  let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
21560
22196
  await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
21561
22197
  request.fileId = uploadResp.fileId;
22198
+ request.fileObject = null;
21562
22199
  }
21563
22200
 
21564
22201
  Util.validateModel(request);
@@ -22321,6 +22958,7 @@ export default class Client {
22321
22958
  let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
22322
22959
  await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
22323
22960
  request.fileId = uploadResp.fileId;
22961
+ request.fileObject = null;
22324
22962
  }
22325
22963
 
22326
22964
  Util.validateModel(request);
@@ -23104,6 +23742,7 @@ export default class Client {
23104
23742
  let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
23105
23743
  await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
23106
23744
  request.fileId = uploadResp.fileId;
23745
+ request.fileObject = null;
23107
23746
  }
23108
23747
 
23109
23748
  Util.validateModel(request);
@@ -23811,6 +24450,7 @@ export default class Client {
23811
24450
  let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
23812
24451
  await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
23813
24452
  request.fileId = uploadResp.fileId;
24453
+ request.fileObject = null;
23814
24454
  }
23815
24455
 
23816
24456
  Util.validateModel(request);
@@ -23855,6 +24495,25 @@ export default class Client {
23855
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({}));
23856
24496
  }
23857
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
+
23858
24517
  /**
23859
24518
  * Description: 创建HTTP PUT提交的文件上传
23860
24519
  * Summary: 文件上传创建