@antchain/riskplus 1.12.19 → 1.13.5
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 +270 -0
- package/dist/client.js +414 -3
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +607 -5
package/dist/client.js
CHANGED
|
@@ -205,6 +205,25 @@ class DecisionFlow extends $tea.Model {
|
|
|
205
205
|
}
|
|
206
206
|
}
|
|
207
207
|
exports.DecisionFlow = DecisionFlow;
|
|
208
|
+
// 回流事件记录属性项
|
|
209
|
+
class BackflowEventRecordProperty extends $tea.Model {
|
|
210
|
+
constructor(map) {
|
|
211
|
+
super(map);
|
|
212
|
+
}
|
|
213
|
+
static names() {
|
|
214
|
+
return {
|
|
215
|
+
key: 'key',
|
|
216
|
+
value: 'value',
|
|
217
|
+
};
|
|
218
|
+
}
|
|
219
|
+
static types() {
|
|
220
|
+
return {
|
|
221
|
+
key: 'string',
|
|
222
|
+
value: 'string',
|
|
223
|
+
};
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
exports.BackflowEventRecordProperty = BackflowEventRecordProperty;
|
|
208
227
|
// 营销盾批量查询单条结果
|
|
209
228
|
class BaseCustomerUmktInfoModel extends $tea.Model {
|
|
210
229
|
constructor(map) {
|
|
@@ -428,6 +447,25 @@ class RuleDetail extends $tea.Model {
|
|
|
428
447
|
}
|
|
429
448
|
}
|
|
430
449
|
exports.RuleDetail = RuleDetail;
|
|
450
|
+
// 回调通用返回体
|
|
451
|
+
class CommonNotyfyResult extends $tea.Model {
|
|
452
|
+
constructor(map) {
|
|
453
|
+
super(map);
|
|
454
|
+
}
|
|
455
|
+
static names() {
|
|
456
|
+
return {
|
|
457
|
+
requestId: 'request_id',
|
|
458
|
+
bizResponse: 'biz_response',
|
|
459
|
+
};
|
|
460
|
+
}
|
|
461
|
+
static types() {
|
|
462
|
+
return {
|
|
463
|
+
requestId: 'string',
|
|
464
|
+
bizResponse: 'string',
|
|
465
|
+
};
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
exports.CommonNotyfyResult = CommonNotyfyResult;
|
|
431
469
|
// 安全场景参数
|
|
432
470
|
class SecurityScene extends $tea.Model {
|
|
433
471
|
constructor(map) {
|
|
@@ -582,6 +620,12 @@ class RepayResult extends $tea.Model {
|
|
|
582
620
|
status: 'status',
|
|
583
621
|
settleDate: 'settle_date',
|
|
584
622
|
tradeDate: 'trade_date',
|
|
623
|
+
alreadyGuaranteeFee: 'already_guarantee_fee',
|
|
624
|
+
alreadyLiquidatedDamages: 'already_liquidated_damages',
|
|
625
|
+
restGuaranteeFee: 'rest_guarantee_fee',
|
|
626
|
+
restLiquidatedDamages: 'rest_liquidated_damages',
|
|
627
|
+
needGuaranteeFee: 'need_guarantee_fee',
|
|
628
|
+
needLiquidatedDamages: 'need_liquidated_damages',
|
|
585
629
|
};
|
|
586
630
|
}
|
|
587
631
|
static types() {
|
|
@@ -609,6 +653,12 @@ class RepayResult extends $tea.Model {
|
|
|
609
653
|
status: 'string',
|
|
610
654
|
settleDate: 'string',
|
|
611
655
|
tradeDate: 'string',
|
|
656
|
+
alreadyGuaranteeFee: 'number',
|
|
657
|
+
alreadyLiquidatedDamages: 'number',
|
|
658
|
+
restGuaranteeFee: 'number',
|
|
659
|
+
restLiquidatedDamages: 'number',
|
|
660
|
+
needGuaranteeFee: 'number',
|
|
661
|
+
needLiquidatedDamages: 'number',
|
|
612
662
|
};
|
|
613
663
|
}
|
|
614
664
|
}
|
|
@@ -684,6 +734,25 @@ class UpdateCustomerRelationResponseData extends $tea.Model {
|
|
|
684
734
|
}
|
|
685
735
|
}
|
|
686
736
|
exports.UpdateCustomerRelationResponseData = UpdateCustomerRelationResponseData;
|
|
737
|
+
// 回流事件记录
|
|
738
|
+
class BackflowEventRecord extends $tea.Model {
|
|
739
|
+
constructor(map) {
|
|
740
|
+
super(map);
|
|
741
|
+
}
|
|
742
|
+
static names() {
|
|
743
|
+
return {
|
|
744
|
+
groupCode: 'group_code',
|
|
745
|
+
properties: 'properties',
|
|
746
|
+
};
|
|
747
|
+
}
|
|
748
|
+
static types() {
|
|
749
|
+
return {
|
|
750
|
+
groupCode: 'string',
|
|
751
|
+
properties: { 'type': 'array', 'itemType': BackflowEventRecordProperty },
|
|
752
|
+
};
|
|
753
|
+
}
|
|
754
|
+
}
|
|
755
|
+
exports.BackflowEventRecord = BackflowEventRecord;
|
|
687
756
|
// 风险维度
|
|
688
757
|
class RtopCompanyRiskFactor extends $tea.Model {
|
|
689
758
|
constructor(map) {
|
|
@@ -1284,6 +1353,31 @@ class StrategyDetails extends $tea.Model {
|
|
|
1284
1353
|
}
|
|
1285
1354
|
}
|
|
1286
1355
|
exports.StrategyDetails = StrategyDetails;
|
|
1356
|
+
// 支付方式锁定结果
|
|
1357
|
+
class PayMethodLockResult extends $tea.Model {
|
|
1358
|
+
constructor(map) {
|
|
1359
|
+
super(map);
|
|
1360
|
+
}
|
|
1361
|
+
static names() {
|
|
1362
|
+
return {
|
|
1363
|
+
signStatus: 'sign_status',
|
|
1364
|
+
accountId: 'account_id',
|
|
1365
|
+
loginId: 'login_id',
|
|
1366
|
+
payChannel: 'pay_channel',
|
|
1367
|
+
accountName: 'account_name',
|
|
1368
|
+
};
|
|
1369
|
+
}
|
|
1370
|
+
static types() {
|
|
1371
|
+
return {
|
|
1372
|
+
signStatus: 'string',
|
|
1373
|
+
accountId: 'string',
|
|
1374
|
+
loginId: 'string',
|
|
1375
|
+
payChannel: 'string',
|
|
1376
|
+
accountName: 'string',
|
|
1377
|
+
};
|
|
1378
|
+
}
|
|
1379
|
+
}
|
|
1380
|
+
exports.PayMethodLockResult = PayMethodLockResult;
|
|
1287
1381
|
// 反欺诈风险数据服务决策结果
|
|
1288
1382
|
class SecurityResultInfos extends $tea.Model {
|
|
1289
1383
|
constructor(map) {
|
|
@@ -1774,6 +1868,27 @@ class RtopCompanyOpinionCount extends $tea.Model {
|
|
|
1774
1868
|
}
|
|
1775
1869
|
}
|
|
1776
1870
|
exports.RtopCompanyOpinionCount = RtopCompanyOpinionCount;
|
|
1871
|
+
// 商户资金链锁定结果
|
|
1872
|
+
class FundChainLockResult extends $tea.Model {
|
|
1873
|
+
constructor(map) {
|
|
1874
|
+
super(map);
|
|
1875
|
+
}
|
|
1876
|
+
static names() {
|
|
1877
|
+
return {
|
|
1878
|
+
name: 'name',
|
|
1879
|
+
id: 'id',
|
|
1880
|
+
status: 'status',
|
|
1881
|
+
};
|
|
1882
|
+
}
|
|
1883
|
+
static types() {
|
|
1884
|
+
return {
|
|
1885
|
+
name: 'string',
|
|
1886
|
+
id: 'string',
|
|
1887
|
+
status: 'string',
|
|
1888
|
+
};
|
|
1889
|
+
}
|
|
1890
|
+
}
|
|
1891
|
+
exports.FundChainLockResult = FundChainLockResult;
|
|
1777
1892
|
// 企业地区分布统计
|
|
1778
1893
|
class RtopRegionalDistribution extends $tea.Model {
|
|
1779
1894
|
constructor(map) {
|
|
@@ -4176,6 +4291,7 @@ class QueryDubbridgeAccountStatusRequest extends $tea.Model {
|
|
|
4176
4291
|
productInstanceId: 'product_instance_id',
|
|
4177
4292
|
customNo: 'custom_no',
|
|
4178
4293
|
openId: 'open_id',
|
|
4294
|
+
bizType: 'biz_type',
|
|
4179
4295
|
};
|
|
4180
4296
|
}
|
|
4181
4297
|
static types() {
|
|
@@ -4184,6 +4300,7 @@ class QueryDubbridgeAccountStatusRequest extends $tea.Model {
|
|
|
4184
4300
|
productInstanceId: 'string',
|
|
4185
4301
|
customNo: 'string',
|
|
4186
4302
|
openId: 'string',
|
|
4303
|
+
bizType: 'string',
|
|
4187
4304
|
};
|
|
4188
4305
|
}
|
|
4189
4306
|
}
|
|
@@ -4198,6 +4315,8 @@ class QueryDubbridgeAccountStatusResponse extends $tea.Model {
|
|
|
4198
4315
|
resultCode: 'result_code',
|
|
4199
4316
|
resultMsg: 'result_msg',
|
|
4200
4317
|
data: 'data',
|
|
4318
|
+
payMethodLockResult: 'pay_method_lock_result',
|
|
4319
|
+
fundChainLockResult: 'fund_chain_lock_result',
|
|
4201
4320
|
};
|
|
4202
4321
|
}
|
|
4203
4322
|
static types() {
|
|
@@ -4206,6 +4325,8 @@ class QueryDubbridgeAccountStatusResponse extends $tea.Model {
|
|
|
4206
4325
|
resultCode: 'string',
|
|
4207
4326
|
resultMsg: 'string',
|
|
4208
4327
|
data: CustomStatus,
|
|
4328
|
+
payMethodLockResult: PayMethodLockResult,
|
|
4329
|
+
fundChainLockResult: { 'type': 'array', 'itemType': FundChainLockResult },
|
|
4209
4330
|
};
|
|
4210
4331
|
}
|
|
4211
4332
|
}
|
|
@@ -4554,6 +4675,8 @@ class QueryDubbridgeRepayInfoResponse extends $tea.Model {
|
|
|
4554
4675
|
repayStatus: 'repay_status',
|
|
4555
4676
|
failReason: 'fail_reason',
|
|
4556
4677
|
applyNo: 'apply_no',
|
|
4678
|
+
guaranteeFee: 'guarantee_fee',
|
|
4679
|
+
liquidatedDamages: 'liquidated_damages',
|
|
4557
4680
|
};
|
|
4558
4681
|
}
|
|
4559
4682
|
static types() {
|
|
@@ -4582,6 +4705,8 @@ class QueryDubbridgeRepayInfoResponse extends $tea.Model {
|
|
|
4582
4705
|
repayStatus: 'string',
|
|
4583
4706
|
failReason: 'string',
|
|
4584
4707
|
applyNo: 'string',
|
|
4708
|
+
guaranteeFee: 'number',
|
|
4709
|
+
liquidatedDamages: 'number',
|
|
4585
4710
|
};
|
|
4586
4711
|
}
|
|
4587
4712
|
}
|
|
@@ -4719,6 +4844,8 @@ class CountDubbridgeRepayTrialResponse extends $tea.Model {
|
|
|
4719
4844
|
realInterest: 'real_interest',
|
|
4720
4845
|
realOverAmt: 'real_over_amt',
|
|
4721
4846
|
serviceCharge: 'service_charge',
|
|
4847
|
+
realGuaranteeFee: 'real_guarantee_fee',
|
|
4848
|
+
realLiquidatedDamages: 'real_liquidated_damages',
|
|
4722
4849
|
};
|
|
4723
4850
|
}
|
|
4724
4851
|
static types() {
|
|
@@ -4730,6 +4857,8 @@ class CountDubbridgeRepayTrialResponse extends $tea.Model {
|
|
|
4730
4857
|
realInterest: 'number',
|
|
4731
4858
|
realOverAmt: 'number',
|
|
4732
4859
|
serviceCharge: 'number',
|
|
4860
|
+
realGuaranteeFee: 'number',
|
|
4861
|
+
realLiquidatedDamages: 'number',
|
|
4733
4862
|
};
|
|
4734
4863
|
}
|
|
4735
4864
|
}
|
|
@@ -4849,6 +4978,7 @@ class ApplyDubbridgeUsecreditRequest extends $tea.Model {
|
|
|
4849
4978
|
orderNo: 'order_no',
|
|
4850
4979
|
repayType: 'repay_type',
|
|
4851
4980
|
loanWay: 'loan_way',
|
|
4981
|
+
repayDate: 'repay_date',
|
|
4852
4982
|
};
|
|
4853
4983
|
}
|
|
4854
4984
|
static types() {
|
|
@@ -4862,6 +4992,7 @@ class ApplyDubbridgeUsecreditRequest extends $tea.Model {
|
|
|
4862
4992
|
orderNo: 'string',
|
|
4863
4993
|
repayType: 'string',
|
|
4864
4994
|
loanWay: 'string',
|
|
4995
|
+
repayDate: 'string',
|
|
4865
4996
|
};
|
|
4866
4997
|
}
|
|
4867
4998
|
}
|
|
@@ -4921,6 +5052,8 @@ class QueryDubbridgeUsecreditStatusResponse extends $tea.Model {
|
|
|
4921
5052
|
msg: 'msg',
|
|
4922
5053
|
receiptInfo: 'receipt_info',
|
|
4923
5054
|
repayRef: 'repay_ref',
|
|
5055
|
+
disburseContractNo: 'disburse_contract_no',
|
|
5056
|
+
creditContractNo: 'credit_contract_no',
|
|
4924
5057
|
};
|
|
4925
5058
|
}
|
|
4926
5059
|
static types() {
|
|
@@ -4932,6 +5065,8 @@ class QueryDubbridgeUsecreditStatusResponse extends $tea.Model {
|
|
|
4932
5065
|
msg: 'string',
|
|
4933
5066
|
receiptInfo: ReceiptInfo,
|
|
4934
5067
|
repayRef: { 'type': 'array', 'itemType': RepayRef },
|
|
5068
|
+
disburseContractNo: 'string',
|
|
5069
|
+
creditContractNo: 'string',
|
|
4935
5070
|
};
|
|
4936
5071
|
}
|
|
4937
5072
|
}
|
|
@@ -5220,6 +5355,54 @@ class QueryDubbridgeBusinessDetailResponse extends $tea.Model {
|
|
|
5220
5355
|
}
|
|
5221
5356
|
}
|
|
5222
5357
|
exports.QueryDubbridgeBusinessDetailResponse = QueryDubbridgeBusinessDetailResponse;
|
|
5358
|
+
class NotifyDubbridgeCallbackRequest extends $tea.Model {
|
|
5359
|
+
constructor(map) {
|
|
5360
|
+
super(map);
|
|
5361
|
+
}
|
|
5362
|
+
static names() {
|
|
5363
|
+
return {
|
|
5364
|
+
authToken: 'auth_token',
|
|
5365
|
+
productInstanceId: 'product_instance_id',
|
|
5366
|
+
channelCode: 'channel_code',
|
|
5367
|
+
bizParam: 'biz_param',
|
|
5368
|
+
bizType: 'biz_type',
|
|
5369
|
+
seqNo: 'seq_no',
|
|
5370
|
+
};
|
|
5371
|
+
}
|
|
5372
|
+
static types() {
|
|
5373
|
+
return {
|
|
5374
|
+
authToken: 'string',
|
|
5375
|
+
productInstanceId: 'string',
|
|
5376
|
+
channelCode: 'string',
|
|
5377
|
+
bizParam: 'string',
|
|
5378
|
+
bizType: 'string',
|
|
5379
|
+
seqNo: 'string',
|
|
5380
|
+
};
|
|
5381
|
+
}
|
|
5382
|
+
}
|
|
5383
|
+
exports.NotifyDubbridgeCallbackRequest = NotifyDubbridgeCallbackRequest;
|
|
5384
|
+
class NotifyDubbridgeCallbackResponse extends $tea.Model {
|
|
5385
|
+
constructor(map) {
|
|
5386
|
+
super(map);
|
|
5387
|
+
}
|
|
5388
|
+
static names() {
|
|
5389
|
+
return {
|
|
5390
|
+
reqMsgId: 'req_msg_id',
|
|
5391
|
+
resultCode: 'result_code',
|
|
5392
|
+
resultMsg: 'result_msg',
|
|
5393
|
+
data: 'data',
|
|
5394
|
+
};
|
|
5395
|
+
}
|
|
5396
|
+
static types() {
|
|
5397
|
+
return {
|
|
5398
|
+
reqMsgId: 'string',
|
|
5399
|
+
resultCode: 'string',
|
|
5400
|
+
resultMsg: 'string',
|
|
5401
|
+
data: CommonNotyfyResult,
|
|
5402
|
+
};
|
|
5403
|
+
}
|
|
5404
|
+
}
|
|
5405
|
+
exports.NotifyDubbridgeCallbackResponse = NotifyDubbridgeCallbackResponse;
|
|
5223
5406
|
class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
|
|
5224
5407
|
constructor(map) {
|
|
5225
5408
|
super(map);
|
|
@@ -8452,6 +8635,168 @@ class QueryUmktRtMarketingResponse extends $tea.Model {
|
|
|
8452
8635
|
}
|
|
8453
8636
|
}
|
|
8454
8637
|
exports.QueryUmktRtMarketingResponse = QueryUmktRtMarketingResponse;
|
|
8638
|
+
class PushUmktBackflowEventRequest extends $tea.Model {
|
|
8639
|
+
constructor(map) {
|
|
8640
|
+
super(map);
|
|
8641
|
+
}
|
|
8642
|
+
static names() {
|
|
8643
|
+
return {
|
|
8644
|
+
authToken: 'auth_token',
|
|
8645
|
+
productInstanceId: 'product_instance_id',
|
|
8646
|
+
eventId: 'event_id',
|
|
8647
|
+
eventRecords: 'event_records',
|
|
8648
|
+
};
|
|
8649
|
+
}
|
|
8650
|
+
static types() {
|
|
8651
|
+
return {
|
|
8652
|
+
authToken: 'string',
|
|
8653
|
+
productInstanceId: 'string',
|
|
8654
|
+
eventId: 'number',
|
|
8655
|
+
eventRecords: { 'type': 'array', 'itemType': BackflowEventRecord },
|
|
8656
|
+
};
|
|
8657
|
+
}
|
|
8658
|
+
}
|
|
8659
|
+
exports.PushUmktBackflowEventRequest = PushUmktBackflowEventRequest;
|
|
8660
|
+
class PushUmktBackflowEventResponse extends $tea.Model {
|
|
8661
|
+
constructor(map) {
|
|
8662
|
+
super(map);
|
|
8663
|
+
}
|
|
8664
|
+
static names() {
|
|
8665
|
+
return {
|
|
8666
|
+
reqMsgId: 'req_msg_id',
|
|
8667
|
+
resultCode: 'result_code',
|
|
8668
|
+
resultMsg: 'result_msg',
|
|
8669
|
+
};
|
|
8670
|
+
}
|
|
8671
|
+
static types() {
|
|
8672
|
+
return {
|
|
8673
|
+
reqMsgId: 'string',
|
|
8674
|
+
resultCode: 'string',
|
|
8675
|
+
resultMsg: 'string',
|
|
8676
|
+
};
|
|
8677
|
+
}
|
|
8678
|
+
}
|
|
8679
|
+
exports.PushUmktBackflowEventResponse = PushUmktBackflowEventResponse;
|
|
8680
|
+
class SendUmktCardsmsBatchRequest extends $tea.Model {
|
|
8681
|
+
constructor(map) {
|
|
8682
|
+
super(map);
|
|
8683
|
+
}
|
|
8684
|
+
static names() {
|
|
8685
|
+
return {
|
|
8686
|
+
authToken: 'auth_token',
|
|
8687
|
+
productInstanceId: 'product_instance_id',
|
|
8688
|
+
cpassAk: 'cpass_ak',
|
|
8689
|
+
industryTag: 'industry_tag',
|
|
8690
|
+
cardTemplateCode: 'card_template_code',
|
|
8691
|
+
cardTemplateParamJson: 'card_template_param_json',
|
|
8692
|
+
phoneNumberJson: 'phone_number_json',
|
|
8693
|
+
signNameJson: 'sign_name_json',
|
|
8694
|
+
smsUpExtendCodeJson: 'sms_up_extend_code_json',
|
|
8695
|
+
fallbackType: 'fallback_type',
|
|
8696
|
+
fallbackTemplateCode: 'fallback_template_code',
|
|
8697
|
+
fallbackTemplateParamJson: 'fallback_template_param_json',
|
|
8698
|
+
templateCode: 'template_code',
|
|
8699
|
+
templateParamJson: 'template_param_json',
|
|
8700
|
+
};
|
|
8701
|
+
}
|
|
8702
|
+
static types() {
|
|
8703
|
+
return {
|
|
8704
|
+
authToken: 'string',
|
|
8705
|
+
productInstanceId: 'string',
|
|
8706
|
+
cpassAk: 'string',
|
|
8707
|
+
industryTag: 'string',
|
|
8708
|
+
cardTemplateCode: 'string',
|
|
8709
|
+
cardTemplateParamJson: 'string',
|
|
8710
|
+
phoneNumberJson: 'string',
|
|
8711
|
+
signNameJson: 'string',
|
|
8712
|
+
smsUpExtendCodeJson: 'string',
|
|
8713
|
+
fallbackType: 'string',
|
|
8714
|
+
fallbackTemplateCode: 'string',
|
|
8715
|
+
fallbackTemplateParamJson: 'string',
|
|
8716
|
+
templateCode: 'string',
|
|
8717
|
+
templateParamJson: 'string',
|
|
8718
|
+
};
|
|
8719
|
+
}
|
|
8720
|
+
}
|
|
8721
|
+
exports.SendUmktCardsmsBatchRequest = SendUmktCardsmsBatchRequest;
|
|
8722
|
+
class SendUmktCardsmsBatchResponse extends $tea.Model {
|
|
8723
|
+
constructor(map) {
|
|
8724
|
+
super(map);
|
|
8725
|
+
}
|
|
8726
|
+
static names() {
|
|
8727
|
+
return {
|
|
8728
|
+
reqMsgId: 'req_msg_id',
|
|
8729
|
+
resultCode: 'result_code',
|
|
8730
|
+
resultMsg: 'result_msg',
|
|
8731
|
+
bizCardId: 'biz_card_id',
|
|
8732
|
+
mediaMobiles: 'media_mobiles',
|
|
8733
|
+
notMediaMobiles: 'not_media_mobiles',
|
|
8734
|
+
bizId: 'biz_id',
|
|
8735
|
+
bizDigitalId: 'biz_digital_id',
|
|
8736
|
+
};
|
|
8737
|
+
}
|
|
8738
|
+
static types() {
|
|
8739
|
+
return {
|
|
8740
|
+
reqMsgId: 'string',
|
|
8741
|
+
resultCode: 'string',
|
|
8742
|
+
resultMsg: 'string',
|
|
8743
|
+
bizCardId: 'string',
|
|
8744
|
+
mediaMobiles: 'string',
|
|
8745
|
+
notMediaMobiles: 'string',
|
|
8746
|
+
bizId: 'string',
|
|
8747
|
+
bizDigitalId: 'string',
|
|
8748
|
+
};
|
|
8749
|
+
}
|
|
8750
|
+
}
|
|
8751
|
+
exports.SendUmktCardsmsBatchResponse = SendUmktCardsmsBatchResponse;
|
|
8752
|
+
class QueryUmktCardsmsSupportRequest extends $tea.Model {
|
|
8753
|
+
constructor(map) {
|
|
8754
|
+
super(map);
|
|
8755
|
+
}
|
|
8756
|
+
static names() {
|
|
8757
|
+
return {
|
|
8758
|
+
authToken: 'auth_token',
|
|
8759
|
+
productInstanceId: 'product_instance_id',
|
|
8760
|
+
cpassAk: 'cpass_ak',
|
|
8761
|
+
industryTag: 'industry_tag',
|
|
8762
|
+
templateCode: 'template_code',
|
|
8763
|
+
mobiles: 'mobiles',
|
|
8764
|
+
};
|
|
8765
|
+
}
|
|
8766
|
+
static types() {
|
|
8767
|
+
return {
|
|
8768
|
+
authToken: 'string',
|
|
8769
|
+
productInstanceId: 'string',
|
|
8770
|
+
cpassAk: 'string',
|
|
8771
|
+
industryTag: 'string',
|
|
8772
|
+
templateCode: 'string',
|
|
8773
|
+
mobiles: 'string',
|
|
8774
|
+
};
|
|
8775
|
+
}
|
|
8776
|
+
}
|
|
8777
|
+
exports.QueryUmktCardsmsSupportRequest = QueryUmktCardsmsSupportRequest;
|
|
8778
|
+
class QueryUmktCardsmsSupportResponse extends $tea.Model {
|
|
8779
|
+
constructor(map) {
|
|
8780
|
+
super(map);
|
|
8781
|
+
}
|
|
8782
|
+
static names() {
|
|
8783
|
+
return {
|
|
8784
|
+
reqMsgId: 'req_msg_id',
|
|
8785
|
+
resultCode: 'result_code',
|
|
8786
|
+
resultMsg: 'result_msg',
|
|
8787
|
+
datas: 'datas',
|
|
8788
|
+
};
|
|
8789
|
+
}
|
|
8790
|
+
static types() {
|
|
8791
|
+
return {
|
|
8792
|
+
reqMsgId: 'string',
|
|
8793
|
+
resultCode: 'string',
|
|
8794
|
+
resultMsg: 'string',
|
|
8795
|
+
datas: 'string',
|
|
8796
|
+
};
|
|
8797
|
+
}
|
|
8798
|
+
}
|
|
8799
|
+
exports.QueryUmktCardsmsSupportResponse = QueryUmktCardsmsSupportResponse;
|
|
8455
8800
|
class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
8456
8801
|
constructor(map) {
|
|
8457
8802
|
super(map);
|
|
@@ -8596,9 +8941,7 @@ class Client {
|
|
|
8596
8941
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
8597
8942
|
access_key: this._accessKeyId,
|
|
8598
8943
|
base_sdk_version: "TeaSDK-2.0",
|
|
8599
|
-
sdk_version: "1.
|
|
8600
|
-
_prod_code: "RISKPLUS",
|
|
8601
|
-
_prod_channel: "undefined",
|
|
8944
|
+
sdk_version: "1.13.5",
|
|
8602
8945
|
};
|
|
8603
8946
|
if (!tea_util_1.default.empty(this._securityToken)) {
|
|
8604
8947
|
request_.query["security_token"] = this._securityToken;
|
|
@@ -9655,6 +9998,23 @@ class Client {
|
|
|
9655
9998
|
tea_util_1.default.validateModel(request);
|
|
9656
9999
|
return $tea.cast(await this.doRequest("1.0", "riskplus.dubbridge.business.detail.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeBusinessDetailResponse({}));
|
|
9657
10000
|
}
|
|
10001
|
+
/**
|
|
10002
|
+
* Description: 天枢回调通用接口
|
|
10003
|
+
* Summary: 天枢回调通用接口
|
|
10004
|
+
*/
|
|
10005
|
+
async notifyDubbridgeCallback(request) {
|
|
10006
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
10007
|
+
let headers = {};
|
|
10008
|
+
return await this.notifyDubbridgeCallbackEx(request, headers, runtime);
|
|
10009
|
+
}
|
|
10010
|
+
/**
|
|
10011
|
+
* Description: 天枢回调通用接口
|
|
10012
|
+
* Summary: 天枢回调通用接口
|
|
10013
|
+
*/
|
|
10014
|
+
async notifyDubbridgeCallbackEx(request, headers, runtime) {
|
|
10015
|
+
tea_util_1.default.validateModel(request);
|
|
10016
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.dubbridge.callback.notify", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new NotifyDubbridgeCallbackResponse({}));
|
|
10017
|
+
}
|
|
9658
10018
|
/**
|
|
9659
10019
|
* Description: 四要素认证首先调用此接口
|
|
9660
10020
|
* Summary: 芝麻四要素接口
|
|
@@ -10783,6 +11143,57 @@ class Client {
|
|
|
10783
11143
|
tea_util_1.default.validateModel(request);
|
|
10784
11144
|
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.rt.marketing.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryUmktRtMarketingResponse({}));
|
|
10785
11145
|
}
|
|
11146
|
+
/**
|
|
11147
|
+
* Description: 营销盾业务回流事件推送
|
|
11148
|
+
* Summary: 营销盾回流事件推送
|
|
11149
|
+
*/
|
|
11150
|
+
async pushUmktBackflowEvent(request) {
|
|
11151
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
11152
|
+
let headers = {};
|
|
11153
|
+
return await this.pushUmktBackflowEventEx(request, headers, runtime);
|
|
11154
|
+
}
|
|
11155
|
+
/**
|
|
11156
|
+
* Description: 营销盾业务回流事件推送
|
|
11157
|
+
* Summary: 营销盾回流事件推送
|
|
11158
|
+
*/
|
|
11159
|
+
async pushUmktBackflowEventEx(request, headers, runtime) {
|
|
11160
|
+
tea_util_1.default.validateModel(request);
|
|
11161
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.backflow.event.push", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PushUmktBackflowEventResponse({}));
|
|
11162
|
+
}
|
|
11163
|
+
/**
|
|
11164
|
+
* Description: 卡片短信批量发送接口
|
|
11165
|
+
* Summary: 卡片短信批量发送接口
|
|
11166
|
+
*/
|
|
11167
|
+
async sendUmktCardsmsBatch(request) {
|
|
11168
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
11169
|
+
let headers = {};
|
|
11170
|
+
return await this.sendUmktCardsmsBatchEx(request, headers, runtime);
|
|
11171
|
+
}
|
|
11172
|
+
/**
|
|
11173
|
+
* Description: 卡片短信批量发送接口
|
|
11174
|
+
* Summary: 卡片短信批量发送接口
|
|
11175
|
+
*/
|
|
11176
|
+
async sendUmktCardsmsBatchEx(request, headers, runtime) {
|
|
11177
|
+
tea_util_1.default.validateModel(request);
|
|
11178
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.cardsms.batch.send", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new SendUmktCardsmsBatchResponse({}));
|
|
11179
|
+
}
|
|
11180
|
+
/**
|
|
11181
|
+
* Description: 卡片短信支持能力查询
|
|
11182
|
+
* Summary: 卡片短信支持能力查询
|
|
11183
|
+
*/
|
|
11184
|
+
async queryUmktCardsmsSupport(request) {
|
|
11185
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
11186
|
+
let headers = {};
|
|
11187
|
+
return await this.queryUmktCardsmsSupportEx(request, headers, runtime);
|
|
11188
|
+
}
|
|
11189
|
+
/**
|
|
11190
|
+
* Description: 卡片短信支持能力查询
|
|
11191
|
+
* Summary: 卡片短信支持能力查询
|
|
11192
|
+
*/
|
|
11193
|
+
async queryUmktCardsmsSupportEx(request, headers, runtime) {
|
|
11194
|
+
tea_util_1.default.validateModel(request);
|
|
11195
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.cardsms.support.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryUmktCardsmsSupportResponse({}));
|
|
11196
|
+
}
|
|
10786
11197
|
/**
|
|
10787
11198
|
* Description: 创建HTTP PUT提交的文件上传
|
|
10788
11199
|
* Summary: 文件上传创建
|