@antchain/riskplus 1.16.21 → 1.16.23
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 +109 -25
- package/dist/client.js +163 -41
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +221 -57
package/dist/client.d.ts
CHANGED
|
@@ -815,24 +815,6 @@ export declare class RtopCrowdRiskSummaryResp extends $tea.Model {
|
|
|
815
815
|
[key: string]: any;
|
|
816
816
|
});
|
|
817
817
|
}
|
|
818
|
-
export declare class TenantActionTouchPlanInfo extends $tea.Model {
|
|
819
|
-
sceneStrategyId: number;
|
|
820
|
-
sceneStrategyName: string;
|
|
821
|
-
sceneStrategyStatus: string;
|
|
822
|
-
actionDriverCode: number;
|
|
823
|
-
channelCode: string;
|
|
824
|
-
gmtCreate: string;
|
|
825
|
-
gmtModified: string;
|
|
826
|
-
static names(): {
|
|
827
|
-
[key: string]: string;
|
|
828
|
-
};
|
|
829
|
-
static types(): {
|
|
830
|
-
[key: string]: any;
|
|
831
|
-
};
|
|
832
|
-
constructor(map?: {
|
|
833
|
-
[key: string]: any;
|
|
834
|
-
});
|
|
835
|
-
}
|
|
836
818
|
export declare class StatisticResult extends $tea.Model {
|
|
837
819
|
validCount: number;
|
|
838
820
|
statisticInfoDetailList: StatisticInfoDetail[];
|
|
@@ -1522,6 +1504,24 @@ export declare class CustomStatus extends $tea.Model {
|
|
|
1522
1504
|
[key: string]: any;
|
|
1523
1505
|
});
|
|
1524
1506
|
}
|
|
1507
|
+
export declare class TenantActionPlanInfo extends $tea.Model {
|
|
1508
|
+
sceneStrategyId: number;
|
|
1509
|
+
sceneStrategyName: string;
|
|
1510
|
+
sceneStrategyStatus: string;
|
|
1511
|
+
actionDriverCode: number;
|
|
1512
|
+
channelCode: string;
|
|
1513
|
+
gmtCreate: string;
|
|
1514
|
+
gmtModified: string;
|
|
1515
|
+
static names(): {
|
|
1516
|
+
[key: string]: string;
|
|
1517
|
+
};
|
|
1518
|
+
static types(): {
|
|
1519
|
+
[key: string]: any;
|
|
1520
|
+
};
|
|
1521
|
+
constructor(map?: {
|
|
1522
|
+
[key: string]: any;
|
|
1523
|
+
});
|
|
1524
|
+
}
|
|
1525
1525
|
export declare class XNameValuePair extends $tea.Model {
|
|
1526
1526
|
name: string;
|
|
1527
1527
|
value: string;
|
|
@@ -2575,7 +2575,7 @@ export declare class VerifyDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
2575
2575
|
authToken?: string;
|
|
2576
2576
|
productInstanceId?: string;
|
|
2577
2577
|
orderNo?: string;
|
|
2578
|
-
|
|
2578
|
+
customerNo?: string;
|
|
2579
2579
|
bindSerialNo: string;
|
|
2580
2580
|
bindValidCode: string;
|
|
2581
2581
|
bankCardNo: string;
|
|
@@ -3592,6 +3592,66 @@ export declare class QueryDubbridgeCreditPermitResponse extends $tea.Model {
|
|
|
3592
3592
|
[key: string]: any;
|
|
3593
3593
|
});
|
|
3594
3594
|
}
|
|
3595
|
+
export declare class QueryDubbridgeUserUpgradestatusRequest extends $tea.Model {
|
|
3596
|
+
authToken?: string;
|
|
3597
|
+
productInstanceId?: string;
|
|
3598
|
+
openId?: string;
|
|
3599
|
+
customerNo?: string;
|
|
3600
|
+
static names(): {
|
|
3601
|
+
[key: string]: string;
|
|
3602
|
+
};
|
|
3603
|
+
static types(): {
|
|
3604
|
+
[key: string]: any;
|
|
3605
|
+
};
|
|
3606
|
+
constructor(map?: {
|
|
3607
|
+
[key: string]: any;
|
|
3608
|
+
});
|
|
3609
|
+
}
|
|
3610
|
+
export declare class QueryDubbridgeUserUpgradestatusResponse extends $tea.Model {
|
|
3611
|
+
reqMsgId?: string;
|
|
3612
|
+
resultCode?: string;
|
|
3613
|
+
resultMsg?: string;
|
|
3614
|
+
status?: string;
|
|
3615
|
+
static names(): {
|
|
3616
|
+
[key: string]: string;
|
|
3617
|
+
};
|
|
3618
|
+
static types(): {
|
|
3619
|
+
[key: string]: any;
|
|
3620
|
+
};
|
|
3621
|
+
constructor(map?: {
|
|
3622
|
+
[key: string]: any;
|
|
3623
|
+
});
|
|
3624
|
+
}
|
|
3625
|
+
export declare class QueryDubbridgeLoanUpgradestatusRequest extends $tea.Model {
|
|
3626
|
+
authToken?: string;
|
|
3627
|
+
productInstanceId?: string;
|
|
3628
|
+
originalOrderNo?: string;
|
|
3629
|
+
receiptNo?: string;
|
|
3630
|
+
static names(): {
|
|
3631
|
+
[key: string]: string;
|
|
3632
|
+
};
|
|
3633
|
+
static types(): {
|
|
3634
|
+
[key: string]: any;
|
|
3635
|
+
};
|
|
3636
|
+
constructor(map?: {
|
|
3637
|
+
[key: string]: any;
|
|
3638
|
+
});
|
|
3639
|
+
}
|
|
3640
|
+
export declare class QueryDubbridgeLoanUpgradestatusResponse extends $tea.Model {
|
|
3641
|
+
reqMsgId?: string;
|
|
3642
|
+
resultCode?: string;
|
|
3643
|
+
resultMsg?: string;
|
|
3644
|
+
status?: string;
|
|
3645
|
+
static names(): {
|
|
3646
|
+
[key: string]: string;
|
|
3647
|
+
};
|
|
3648
|
+
static types(): {
|
|
3649
|
+
[key: string]: any;
|
|
3650
|
+
};
|
|
3651
|
+
constructor(map?: {
|
|
3652
|
+
[key: string]: any;
|
|
3653
|
+
});
|
|
3654
|
+
}
|
|
3595
3655
|
export declare class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
|
|
3596
3656
|
authToken?: string;
|
|
3597
3657
|
productInstanceId?: string;
|
|
@@ -6127,7 +6187,7 @@ export declare class QueryUmktRobotcallStatisticinfoResponse extends $tea.Model
|
|
|
6127
6187
|
[key: string]: any;
|
|
6128
6188
|
});
|
|
6129
6189
|
}
|
|
6130
|
-
export declare class
|
|
6190
|
+
export declare class QueryUmktTenantActionplaninfoRequest extends $tea.Model {
|
|
6131
6191
|
authToken?: string;
|
|
6132
6192
|
productInstanceId?: string;
|
|
6133
6193
|
pageNum?: number;
|
|
@@ -6143,11 +6203,11 @@ export declare class QueryUmktTenantStrategyinfoRequest extends $tea.Model {
|
|
|
6143
6203
|
[key: string]: any;
|
|
6144
6204
|
});
|
|
6145
6205
|
}
|
|
6146
|
-
export declare class
|
|
6206
|
+
export declare class QueryUmktTenantActionplaninfoResponse extends $tea.Model {
|
|
6147
6207
|
reqMsgId?: string;
|
|
6148
6208
|
resultCode?: string;
|
|
6149
6209
|
resultMsg?: string;
|
|
6150
|
-
queryResult?:
|
|
6210
|
+
queryResult?: TenantActionPlanInfo[];
|
|
6151
6211
|
pageNum?: number;
|
|
6152
6212
|
pageSize?: number;
|
|
6153
6213
|
totalCount?: number;
|
|
@@ -6947,6 +7007,30 @@ export default class Client {
|
|
|
6947
7007
|
queryDubbridgeCreditPermitEx(request: QueryDubbridgeCreditPermitRequest, headers: {
|
|
6948
7008
|
[key: string]: string;
|
|
6949
7009
|
}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeCreditPermitResponse>;
|
|
7010
|
+
/**
|
|
7011
|
+
* Description: 用户状态判断
|
|
7012
|
+
* Summary: 用户状态判断
|
|
7013
|
+
*/
|
|
7014
|
+
queryDubbridgeUserUpgradestatus(request: QueryDubbridgeUserUpgradestatusRequest): Promise<QueryDubbridgeUserUpgradestatusResponse>;
|
|
7015
|
+
/**
|
|
7016
|
+
* Description: 用户状态判断
|
|
7017
|
+
* Summary: 用户状态判断
|
|
7018
|
+
*/
|
|
7019
|
+
queryDubbridgeUserUpgradestatusEx(request: QueryDubbridgeUserUpgradestatusRequest, headers: {
|
|
7020
|
+
[key: string]: string;
|
|
7021
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeUserUpgradestatusResponse>;
|
|
7022
|
+
/**
|
|
7023
|
+
* Description: 借据状态判断
|
|
7024
|
+
* Summary: 借据状态判断
|
|
7025
|
+
*/
|
|
7026
|
+
queryDubbridgeLoanUpgradestatus(request: QueryDubbridgeLoanUpgradestatusRequest): Promise<QueryDubbridgeLoanUpgradestatusResponse>;
|
|
7027
|
+
/**
|
|
7028
|
+
* Description: 借据状态判断
|
|
7029
|
+
* Summary: 借据状态判断
|
|
7030
|
+
*/
|
|
7031
|
+
queryDubbridgeLoanUpgradestatusEx(request: QueryDubbridgeLoanUpgradestatusRequest, headers: {
|
|
7032
|
+
[key: string]: string;
|
|
7033
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeLoanUpgradestatusResponse>;
|
|
6950
7034
|
/**
|
|
6951
7035
|
* Description: 四要素认证首先调用此接口
|
|
6952
7036
|
* Summary: 芝麻四要素接口
|
|
@@ -7865,14 +7949,14 @@ export default class Client {
|
|
|
7865
7949
|
* Description: 营销盾租户场景信息查询
|
|
7866
7950
|
* Summary: 营销盾租户场景信息查询
|
|
7867
7951
|
*/
|
|
7868
|
-
|
|
7952
|
+
queryUmktTenantActionplaninfo(request: QueryUmktTenantActionplaninfoRequest): Promise<QueryUmktTenantActionplaninfoResponse>;
|
|
7869
7953
|
/**
|
|
7870
7954
|
* Description: 营销盾租户场景信息查询
|
|
7871
7955
|
* Summary: 营销盾租户场景信息查询
|
|
7872
7956
|
*/
|
|
7873
|
-
|
|
7957
|
+
queryUmktTenantActionplaninfoEx(request: QueryUmktTenantActionplaninfoRequest, headers: {
|
|
7874
7958
|
[key: string]: string;
|
|
7875
|
-
}, runtime: $Util.RuntimeOptions): Promise<
|
|
7959
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryUmktTenantActionplaninfoResponse>;
|
|
7876
7960
|
/**
|
|
7877
7961
|
* Description: 创建HTTP PUT提交的文件上传
|
|
7878
7962
|
* Summary: 文件上传创建
|
package/dist/client.js
CHANGED
|
@@ -1324,35 +1324,6 @@ class RtopCrowdRiskSummaryResp extends $tea.Model {
|
|
|
1324
1324
|
}
|
|
1325
1325
|
}
|
|
1326
1326
|
exports.RtopCrowdRiskSummaryResp = RtopCrowdRiskSummaryResp;
|
|
1327
|
-
// 营销盾租户触达策略计划信息
|
|
1328
|
-
class TenantActionTouchPlanInfo extends $tea.Model {
|
|
1329
|
-
constructor(map) {
|
|
1330
|
-
super(map);
|
|
1331
|
-
}
|
|
1332
|
-
static names() {
|
|
1333
|
-
return {
|
|
1334
|
-
sceneStrategyId: 'scene_strategy_id',
|
|
1335
|
-
sceneStrategyName: 'scene_strategy_name',
|
|
1336
|
-
sceneStrategyStatus: 'scene_strategy_status',
|
|
1337
|
-
actionDriverCode: 'action_driver_code',
|
|
1338
|
-
channelCode: 'channel_code',
|
|
1339
|
-
gmtCreate: 'gmt_create',
|
|
1340
|
-
gmtModified: 'gmt_modified',
|
|
1341
|
-
};
|
|
1342
|
-
}
|
|
1343
|
-
static types() {
|
|
1344
|
-
return {
|
|
1345
|
-
sceneStrategyId: 'number',
|
|
1346
|
-
sceneStrategyName: 'string',
|
|
1347
|
-
sceneStrategyStatus: 'string',
|
|
1348
|
-
actionDriverCode: 'number',
|
|
1349
|
-
channelCode: 'string',
|
|
1350
|
-
gmtCreate: 'string',
|
|
1351
|
-
gmtModified: 'string',
|
|
1352
|
-
};
|
|
1353
|
-
}
|
|
1354
|
-
}
|
|
1355
|
-
exports.TenantActionTouchPlanInfo = TenantActionTouchPlanInfo;
|
|
1356
1327
|
// 回执统计结果
|
|
1357
1328
|
class StatisticResult extends $tea.Model {
|
|
1358
1329
|
constructor(map) {
|
|
@@ -2459,6 +2430,35 @@ class CustomStatus extends $tea.Model {
|
|
|
2459
2430
|
}
|
|
2460
2431
|
}
|
|
2461
2432
|
exports.CustomStatus = CustomStatus;
|
|
2433
|
+
// 营销盾租户触达策略计划信息
|
|
2434
|
+
class TenantActionPlanInfo extends $tea.Model {
|
|
2435
|
+
constructor(map) {
|
|
2436
|
+
super(map);
|
|
2437
|
+
}
|
|
2438
|
+
static names() {
|
|
2439
|
+
return {
|
|
2440
|
+
sceneStrategyId: 'scene_strategy_id',
|
|
2441
|
+
sceneStrategyName: 'scene_strategy_name',
|
|
2442
|
+
sceneStrategyStatus: 'scene_strategy_status',
|
|
2443
|
+
actionDriverCode: 'action_driver_code',
|
|
2444
|
+
channelCode: 'channel_code',
|
|
2445
|
+
gmtCreate: 'gmt_create',
|
|
2446
|
+
gmtModified: 'gmt_modified',
|
|
2447
|
+
};
|
|
2448
|
+
}
|
|
2449
|
+
static types() {
|
|
2450
|
+
return {
|
|
2451
|
+
sceneStrategyId: 'number',
|
|
2452
|
+
sceneStrategyName: 'string',
|
|
2453
|
+
sceneStrategyStatus: 'string',
|
|
2454
|
+
actionDriverCode: 'number',
|
|
2455
|
+
channelCode: 'string',
|
|
2456
|
+
gmtCreate: 'string',
|
|
2457
|
+
gmtModified: 'string',
|
|
2458
|
+
};
|
|
2459
|
+
}
|
|
2460
|
+
}
|
|
2461
|
+
exports.TenantActionPlanInfo = TenantActionPlanInfo;
|
|
2462
2462
|
// 键值对
|
|
2463
2463
|
class XNameValuePair extends $tea.Model {
|
|
2464
2464
|
constructor(map) {
|
|
@@ -4079,7 +4079,7 @@ class VerifyDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
4079
4079
|
authToken: 'auth_token',
|
|
4080
4080
|
productInstanceId: 'product_instance_id',
|
|
4081
4081
|
orderNo: 'order_no',
|
|
4082
|
-
|
|
4082
|
+
customerNo: 'customer_no',
|
|
4083
4083
|
bindSerialNo: 'bind_serial_no',
|
|
4084
4084
|
bindValidCode: 'bind_valid_code',
|
|
4085
4085
|
bankCardNo: 'bank_card_no',
|
|
@@ -4091,7 +4091,7 @@ class VerifyDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
4091
4091
|
authToken: 'string',
|
|
4092
4092
|
productInstanceId: 'string',
|
|
4093
4093
|
orderNo: 'string',
|
|
4094
|
-
|
|
4094
|
+
customerNo: 'string',
|
|
4095
4095
|
bindSerialNo: 'string',
|
|
4096
4096
|
bindValidCode: 'string',
|
|
4097
4097
|
bankCardNo: 'string',
|
|
@@ -5648,6 +5648,94 @@ class QueryDubbridgeCreditPermitResponse extends $tea.Model {
|
|
|
5648
5648
|
}
|
|
5649
5649
|
}
|
|
5650
5650
|
exports.QueryDubbridgeCreditPermitResponse = QueryDubbridgeCreditPermitResponse;
|
|
5651
|
+
class QueryDubbridgeUserUpgradestatusRequest extends $tea.Model {
|
|
5652
|
+
constructor(map) {
|
|
5653
|
+
super(map);
|
|
5654
|
+
}
|
|
5655
|
+
static names() {
|
|
5656
|
+
return {
|
|
5657
|
+
authToken: 'auth_token',
|
|
5658
|
+
productInstanceId: 'product_instance_id',
|
|
5659
|
+
openId: 'open_id',
|
|
5660
|
+
customerNo: 'customer_no',
|
|
5661
|
+
};
|
|
5662
|
+
}
|
|
5663
|
+
static types() {
|
|
5664
|
+
return {
|
|
5665
|
+
authToken: 'string',
|
|
5666
|
+
productInstanceId: 'string',
|
|
5667
|
+
openId: 'string',
|
|
5668
|
+
customerNo: 'string',
|
|
5669
|
+
};
|
|
5670
|
+
}
|
|
5671
|
+
}
|
|
5672
|
+
exports.QueryDubbridgeUserUpgradestatusRequest = QueryDubbridgeUserUpgradestatusRequest;
|
|
5673
|
+
class QueryDubbridgeUserUpgradestatusResponse extends $tea.Model {
|
|
5674
|
+
constructor(map) {
|
|
5675
|
+
super(map);
|
|
5676
|
+
}
|
|
5677
|
+
static names() {
|
|
5678
|
+
return {
|
|
5679
|
+
reqMsgId: 'req_msg_id',
|
|
5680
|
+
resultCode: 'result_code',
|
|
5681
|
+
resultMsg: 'result_msg',
|
|
5682
|
+
status: 'status',
|
|
5683
|
+
};
|
|
5684
|
+
}
|
|
5685
|
+
static types() {
|
|
5686
|
+
return {
|
|
5687
|
+
reqMsgId: 'string',
|
|
5688
|
+
resultCode: 'string',
|
|
5689
|
+
resultMsg: 'string',
|
|
5690
|
+
status: 'string',
|
|
5691
|
+
};
|
|
5692
|
+
}
|
|
5693
|
+
}
|
|
5694
|
+
exports.QueryDubbridgeUserUpgradestatusResponse = QueryDubbridgeUserUpgradestatusResponse;
|
|
5695
|
+
class QueryDubbridgeLoanUpgradestatusRequest extends $tea.Model {
|
|
5696
|
+
constructor(map) {
|
|
5697
|
+
super(map);
|
|
5698
|
+
}
|
|
5699
|
+
static names() {
|
|
5700
|
+
return {
|
|
5701
|
+
authToken: 'auth_token',
|
|
5702
|
+
productInstanceId: 'product_instance_id',
|
|
5703
|
+
originalOrderNo: 'original_order_no',
|
|
5704
|
+
receiptNo: 'receipt_no',
|
|
5705
|
+
};
|
|
5706
|
+
}
|
|
5707
|
+
static types() {
|
|
5708
|
+
return {
|
|
5709
|
+
authToken: 'string',
|
|
5710
|
+
productInstanceId: 'string',
|
|
5711
|
+
originalOrderNo: 'string',
|
|
5712
|
+
receiptNo: 'string',
|
|
5713
|
+
};
|
|
5714
|
+
}
|
|
5715
|
+
}
|
|
5716
|
+
exports.QueryDubbridgeLoanUpgradestatusRequest = QueryDubbridgeLoanUpgradestatusRequest;
|
|
5717
|
+
class QueryDubbridgeLoanUpgradestatusResponse extends $tea.Model {
|
|
5718
|
+
constructor(map) {
|
|
5719
|
+
super(map);
|
|
5720
|
+
}
|
|
5721
|
+
static names() {
|
|
5722
|
+
return {
|
|
5723
|
+
reqMsgId: 'req_msg_id',
|
|
5724
|
+
resultCode: 'result_code',
|
|
5725
|
+
resultMsg: 'result_msg',
|
|
5726
|
+
status: 'status',
|
|
5727
|
+
};
|
|
5728
|
+
}
|
|
5729
|
+
static types() {
|
|
5730
|
+
return {
|
|
5731
|
+
reqMsgId: 'string',
|
|
5732
|
+
resultCode: 'string',
|
|
5733
|
+
resultMsg: 'string',
|
|
5734
|
+
status: 'string',
|
|
5735
|
+
};
|
|
5736
|
+
}
|
|
5737
|
+
}
|
|
5738
|
+
exports.QueryDubbridgeLoanUpgradestatusResponse = QueryDubbridgeLoanUpgradestatusResponse;
|
|
5651
5739
|
class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
|
|
5652
5740
|
constructor(map) {
|
|
5653
5741
|
super(map);
|
|
@@ -9502,7 +9590,7 @@ class QueryUmktRobotcallStatisticinfoResponse extends $tea.Model {
|
|
|
9502
9590
|
}
|
|
9503
9591
|
}
|
|
9504
9592
|
exports.QueryUmktRobotcallStatisticinfoResponse = QueryUmktRobotcallStatisticinfoResponse;
|
|
9505
|
-
class
|
|
9593
|
+
class QueryUmktTenantActionplaninfoRequest extends $tea.Model {
|
|
9506
9594
|
constructor(map) {
|
|
9507
9595
|
super(map);
|
|
9508
9596
|
}
|
|
@@ -9525,8 +9613,8 @@ class QueryUmktTenantStrategyinfoRequest extends $tea.Model {
|
|
|
9525
9613
|
};
|
|
9526
9614
|
}
|
|
9527
9615
|
}
|
|
9528
|
-
exports.
|
|
9529
|
-
class
|
|
9616
|
+
exports.QueryUmktTenantActionplaninfoRequest = QueryUmktTenantActionplaninfoRequest;
|
|
9617
|
+
class QueryUmktTenantActionplaninfoResponse extends $tea.Model {
|
|
9530
9618
|
constructor(map) {
|
|
9531
9619
|
super(map);
|
|
9532
9620
|
}
|
|
@@ -9546,14 +9634,14 @@ class QueryUmktTenantStrategyinfoResponse extends $tea.Model {
|
|
|
9546
9634
|
reqMsgId: 'string',
|
|
9547
9635
|
resultCode: 'string',
|
|
9548
9636
|
resultMsg: 'string',
|
|
9549
|
-
queryResult: { 'type': 'array', 'itemType':
|
|
9637
|
+
queryResult: { 'type': 'array', 'itemType': TenantActionPlanInfo },
|
|
9550
9638
|
pageNum: 'number',
|
|
9551
9639
|
pageSize: 'number',
|
|
9552
9640
|
totalCount: 'number',
|
|
9553
9641
|
};
|
|
9554
9642
|
}
|
|
9555
9643
|
}
|
|
9556
|
-
exports.
|
|
9644
|
+
exports.QueryUmktTenantActionplaninfoResponse = QueryUmktTenantActionplaninfoResponse;
|
|
9557
9645
|
class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
9558
9646
|
constructor(map) {
|
|
9559
9647
|
super(map);
|
|
@@ -9698,7 +9786,7 @@ class Client {
|
|
|
9698
9786
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
9699
9787
|
access_key: this._accessKeyId,
|
|
9700
9788
|
base_sdk_version: "TeaSDK-2.0",
|
|
9701
|
-
sdk_version: "1.16.
|
|
9789
|
+
sdk_version: "1.16.23",
|
|
9702
9790
|
_prod_code: "RISKPLUS",
|
|
9703
9791
|
_prod_channel: "undefined",
|
|
9704
9792
|
};
|
|
@@ -10757,6 +10845,40 @@ class Client {
|
|
|
10757
10845
|
tea_util_1.default.validateModel(request);
|
|
10758
10846
|
return $tea.cast(await this.doRequest("1.0", "riskplus.dubbridge.credit.permit.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeCreditPermitResponse({}));
|
|
10759
10847
|
}
|
|
10848
|
+
/**
|
|
10849
|
+
* Description: 用户状态判断
|
|
10850
|
+
* Summary: 用户状态判断
|
|
10851
|
+
*/
|
|
10852
|
+
async queryDubbridgeUserUpgradestatus(request) {
|
|
10853
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
10854
|
+
let headers = {};
|
|
10855
|
+
return await this.queryDubbridgeUserUpgradestatusEx(request, headers, runtime);
|
|
10856
|
+
}
|
|
10857
|
+
/**
|
|
10858
|
+
* Description: 用户状态判断
|
|
10859
|
+
* Summary: 用户状态判断
|
|
10860
|
+
*/
|
|
10861
|
+
async queryDubbridgeUserUpgradestatusEx(request, headers, runtime) {
|
|
10862
|
+
tea_util_1.default.validateModel(request);
|
|
10863
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.dubbridge.user.upgradestatus.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeUserUpgradestatusResponse({}));
|
|
10864
|
+
}
|
|
10865
|
+
/**
|
|
10866
|
+
* Description: 借据状态判断
|
|
10867
|
+
* Summary: 借据状态判断
|
|
10868
|
+
*/
|
|
10869
|
+
async queryDubbridgeLoanUpgradestatus(request) {
|
|
10870
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
10871
|
+
let headers = {};
|
|
10872
|
+
return await this.queryDubbridgeLoanUpgradestatusEx(request, headers, runtime);
|
|
10873
|
+
}
|
|
10874
|
+
/**
|
|
10875
|
+
* Description: 借据状态判断
|
|
10876
|
+
* Summary: 借据状态判断
|
|
10877
|
+
*/
|
|
10878
|
+
async queryDubbridgeLoanUpgradestatusEx(request, headers, runtime) {
|
|
10879
|
+
tea_util_1.default.validateModel(request);
|
|
10880
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.dubbridge.loan.upgradestatus.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeLoanUpgradestatusResponse({}));
|
|
10881
|
+
}
|
|
10760
10882
|
/**
|
|
10761
10883
|
* Description: 四要素认证首先调用此接口
|
|
10762
10884
|
* Summary: 芝麻四要素接口
|
|
@@ -12131,18 +12253,18 @@ class Client {
|
|
|
12131
12253
|
* Description: 营销盾租户场景信息查询
|
|
12132
12254
|
* Summary: 营销盾租户场景信息查询
|
|
12133
12255
|
*/
|
|
12134
|
-
async
|
|
12256
|
+
async queryUmktTenantActionplaninfo(request) {
|
|
12135
12257
|
let runtime = new $Util.RuntimeOptions({});
|
|
12136
12258
|
let headers = {};
|
|
12137
|
-
return await this.
|
|
12259
|
+
return await this.queryUmktTenantActionplaninfoEx(request, headers, runtime);
|
|
12138
12260
|
}
|
|
12139
12261
|
/**
|
|
12140
12262
|
* Description: 营销盾租户场景信息查询
|
|
12141
12263
|
* Summary: 营销盾租户场景信息查询
|
|
12142
12264
|
*/
|
|
12143
|
-
async
|
|
12265
|
+
async queryUmktTenantActionplaninfoEx(request, headers, runtime) {
|
|
12144
12266
|
tea_util_1.default.validateModel(request);
|
|
12145
|
-
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.tenant.
|
|
12267
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.tenant.actionplaninfo.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryUmktTenantActionplaninfoResponse({}));
|
|
12146
12268
|
}
|
|
12147
12269
|
/**
|
|
12148
12270
|
* Description: 创建HTTP PUT提交的文件上传
|