@antchain/riskplus 1.12.17 → 1.13.3
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 +377 -16
- package/dist/client.js +559 -26
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +847 -110
package/dist/client.d.ts
CHANGED
|
@@ -127,6 +127,19 @@ export declare class DecisionFlow extends $tea.Model {
|
|
|
127
127
|
[key: string]: any;
|
|
128
128
|
});
|
|
129
129
|
}
|
|
130
|
+
export declare class BackflowEventRecordProperty extends $tea.Model {
|
|
131
|
+
key: string;
|
|
132
|
+
value: string;
|
|
133
|
+
static names(): {
|
|
134
|
+
[key: string]: string;
|
|
135
|
+
};
|
|
136
|
+
static types(): {
|
|
137
|
+
[key: string]: any;
|
|
138
|
+
};
|
|
139
|
+
constructor(map?: {
|
|
140
|
+
[key: string]: any;
|
|
141
|
+
});
|
|
142
|
+
}
|
|
130
143
|
export declare class BaseCustomerUmktInfoModel extends $tea.Model {
|
|
131
144
|
customerKey?: string;
|
|
132
145
|
queryTemplate?: string;
|
|
@@ -263,6 +276,19 @@ export declare class RuleDetail extends $tea.Model {
|
|
|
263
276
|
[key: string]: any;
|
|
264
277
|
});
|
|
265
278
|
}
|
|
279
|
+
export declare class CommonNotyfyResult extends $tea.Model {
|
|
280
|
+
requestId: string;
|
|
281
|
+
bizResponse: string;
|
|
282
|
+
static names(): {
|
|
283
|
+
[key: string]: string;
|
|
284
|
+
};
|
|
285
|
+
static types(): {
|
|
286
|
+
[key: string]: any;
|
|
287
|
+
};
|
|
288
|
+
constructor(map?: {
|
|
289
|
+
[key: string]: any;
|
|
290
|
+
});
|
|
291
|
+
}
|
|
266
292
|
export declare class SecurityScene extends $tea.Model {
|
|
267
293
|
accessChannel?: string;
|
|
268
294
|
ctuParams?: string;
|
|
@@ -419,6 +445,19 @@ export declare class UpdateCustomerRelationResponseData extends $tea.Model {
|
|
|
419
445
|
[key: string]: any;
|
|
420
446
|
});
|
|
421
447
|
}
|
|
448
|
+
export declare class BackflowEventRecord extends $tea.Model {
|
|
449
|
+
groupCode: string;
|
|
450
|
+
properties: BackflowEventRecordProperty[];
|
|
451
|
+
static names(): {
|
|
452
|
+
[key: string]: string;
|
|
453
|
+
};
|
|
454
|
+
static types(): {
|
|
455
|
+
[key: string]: any;
|
|
456
|
+
};
|
|
457
|
+
constructor(map?: {
|
|
458
|
+
[key: string]: any;
|
|
459
|
+
});
|
|
460
|
+
}
|
|
422
461
|
export declare class RtopCompanyRiskFactor extends $tea.Model {
|
|
423
462
|
name?: string;
|
|
424
463
|
score?: number;
|
|
@@ -697,21 +736,6 @@ export declare class ZhimaQueryResp extends $tea.Model {
|
|
|
697
736
|
[key: string]: any;
|
|
698
737
|
});
|
|
699
738
|
}
|
|
700
|
-
export declare class BusinessDetail extends $tea.Model {
|
|
701
|
-
operatingAddrJson: string;
|
|
702
|
-
ucCode: string;
|
|
703
|
-
registerDate: string;
|
|
704
|
-
addressDetail: string;
|
|
705
|
-
static names(): {
|
|
706
|
-
[key: string]: string;
|
|
707
|
-
};
|
|
708
|
-
static types(): {
|
|
709
|
-
[key: string]: any;
|
|
710
|
-
};
|
|
711
|
-
constructor(map?: {
|
|
712
|
-
[key: string]: any;
|
|
713
|
-
});
|
|
714
|
-
}
|
|
715
739
|
export declare class DefinInnerChannelNotifyResult extends $tea.Model {
|
|
716
740
|
requestId: string;
|
|
717
741
|
bizResponse: string;
|
|
@@ -803,6 +827,22 @@ export declare class StrategyDetails extends $tea.Model {
|
|
|
803
827
|
[key: string]: any;
|
|
804
828
|
});
|
|
805
829
|
}
|
|
830
|
+
export declare class PayMethodLockResult extends $tea.Model {
|
|
831
|
+
signStatus: string;
|
|
832
|
+
accountId: string;
|
|
833
|
+
loginId: string;
|
|
834
|
+
payChannel: string;
|
|
835
|
+
accountName: string;
|
|
836
|
+
static names(): {
|
|
837
|
+
[key: string]: string;
|
|
838
|
+
};
|
|
839
|
+
static types(): {
|
|
840
|
+
[key: string]: any;
|
|
841
|
+
};
|
|
842
|
+
constructor(map?: {
|
|
843
|
+
[key: string]: any;
|
|
844
|
+
});
|
|
845
|
+
}
|
|
806
846
|
export declare class SecurityResultInfos extends $tea.Model {
|
|
807
847
|
decision: string;
|
|
808
848
|
riskScore: number;
|
|
@@ -1107,6 +1147,20 @@ export declare class RtopCompanyOpinionCount extends $tea.Model {
|
|
|
1107
1147
|
[key: string]: any;
|
|
1108
1148
|
});
|
|
1109
1149
|
}
|
|
1150
|
+
export declare class FundChainLockResult extends $tea.Model {
|
|
1151
|
+
name: string;
|
|
1152
|
+
id: string;
|
|
1153
|
+
status: string;
|
|
1154
|
+
static names(): {
|
|
1155
|
+
[key: string]: string;
|
|
1156
|
+
};
|
|
1157
|
+
static types(): {
|
|
1158
|
+
[key: string]: any;
|
|
1159
|
+
};
|
|
1160
|
+
constructor(map?: {
|
|
1161
|
+
[key: string]: any;
|
|
1162
|
+
});
|
|
1163
|
+
}
|
|
1110
1164
|
export declare class RtopRegionalDistribution extends $tea.Model {
|
|
1111
1165
|
count: number;
|
|
1112
1166
|
place: string;
|
|
@@ -2661,6 +2715,7 @@ export declare class QueryDubbridgeAccountStatusRequest extends $tea.Model {
|
|
|
2661
2715
|
productInstanceId?: string;
|
|
2662
2716
|
customNo?: string;
|
|
2663
2717
|
openId?: string;
|
|
2718
|
+
bizType: string;
|
|
2664
2719
|
static names(): {
|
|
2665
2720
|
[key: string]: string;
|
|
2666
2721
|
};
|
|
@@ -2676,6 +2731,8 @@ export declare class QueryDubbridgeAccountStatusResponse extends $tea.Model {
|
|
|
2676
2731
|
resultCode?: string;
|
|
2677
2732
|
resultMsg?: string;
|
|
2678
2733
|
data?: CustomStatus;
|
|
2734
|
+
payMethodLockResult?: PayMethodLockResult;
|
|
2735
|
+
fundChainLockResult?: FundChainLockResult[];
|
|
2679
2736
|
static names(): {
|
|
2680
2737
|
[key: string]: string;
|
|
2681
2738
|
};
|
|
@@ -3196,7 +3253,7 @@ export declare class QueryDubbridgeCustomerCommonagreementsignRequest extends $t
|
|
|
3196
3253
|
productInstanceId?: string;
|
|
3197
3254
|
orderNo: string;
|
|
3198
3255
|
customNo: string;
|
|
3199
|
-
|
|
3256
|
+
fundCode: string;
|
|
3200
3257
|
static names(): {
|
|
3201
3258
|
[key: string]: string;
|
|
3202
3259
|
};
|
|
@@ -3292,6 +3349,96 @@ export declare class UpdateDubbridgeFileResponse extends $tea.Model {
|
|
|
3292
3349
|
[key: string]: any;
|
|
3293
3350
|
});
|
|
3294
3351
|
}
|
|
3352
|
+
export declare class QueryDubbridgeCreditUrlRequest extends $tea.Model {
|
|
3353
|
+
authToken?: string;
|
|
3354
|
+
productInstanceId?: string;
|
|
3355
|
+
static names(): {
|
|
3356
|
+
[key: string]: string;
|
|
3357
|
+
};
|
|
3358
|
+
static types(): {
|
|
3359
|
+
[key: string]: any;
|
|
3360
|
+
};
|
|
3361
|
+
constructor(map?: {
|
|
3362
|
+
[key: string]: any;
|
|
3363
|
+
});
|
|
3364
|
+
}
|
|
3365
|
+
export declare class QueryDubbridgeCreditUrlResponse extends $tea.Model {
|
|
3366
|
+
reqMsgId?: string;
|
|
3367
|
+
resultCode?: string;
|
|
3368
|
+
resultMsg?: string;
|
|
3369
|
+
static names(): {
|
|
3370
|
+
[key: string]: string;
|
|
3371
|
+
};
|
|
3372
|
+
static types(): {
|
|
3373
|
+
[key: string]: any;
|
|
3374
|
+
};
|
|
3375
|
+
constructor(map?: {
|
|
3376
|
+
[key: string]: any;
|
|
3377
|
+
});
|
|
3378
|
+
}
|
|
3379
|
+
export declare class QueryDubbridgeBusinessDetailRequest extends $tea.Model {
|
|
3380
|
+
authToken?: string;
|
|
3381
|
+
productInstanceId?: string;
|
|
3382
|
+
keyword: string;
|
|
3383
|
+
static names(): {
|
|
3384
|
+
[key: string]: string;
|
|
3385
|
+
};
|
|
3386
|
+
static types(): {
|
|
3387
|
+
[key: string]: any;
|
|
3388
|
+
};
|
|
3389
|
+
constructor(map?: {
|
|
3390
|
+
[key: string]: any;
|
|
3391
|
+
});
|
|
3392
|
+
}
|
|
3393
|
+
export declare class QueryDubbridgeBusinessDetailResponse extends $tea.Model {
|
|
3394
|
+
reqMsgId?: string;
|
|
3395
|
+
resultCode?: string;
|
|
3396
|
+
resultMsg?: string;
|
|
3397
|
+
ucCode?: string;
|
|
3398
|
+
registerDate?: string;
|
|
3399
|
+
operatingAddrJson?: string;
|
|
3400
|
+
addressDetail?: string;
|
|
3401
|
+
static names(): {
|
|
3402
|
+
[key: string]: string;
|
|
3403
|
+
};
|
|
3404
|
+
static types(): {
|
|
3405
|
+
[key: string]: any;
|
|
3406
|
+
};
|
|
3407
|
+
constructor(map?: {
|
|
3408
|
+
[key: string]: any;
|
|
3409
|
+
});
|
|
3410
|
+
}
|
|
3411
|
+
export declare class NotifyDubbridgeCallbackRequest extends $tea.Model {
|
|
3412
|
+
authToken?: string;
|
|
3413
|
+
productInstanceId?: string;
|
|
3414
|
+
channelCode: string;
|
|
3415
|
+
bizParam: string;
|
|
3416
|
+
bizType: string;
|
|
3417
|
+
static names(): {
|
|
3418
|
+
[key: string]: string;
|
|
3419
|
+
};
|
|
3420
|
+
static types(): {
|
|
3421
|
+
[key: string]: any;
|
|
3422
|
+
};
|
|
3423
|
+
constructor(map?: {
|
|
3424
|
+
[key: string]: any;
|
|
3425
|
+
});
|
|
3426
|
+
}
|
|
3427
|
+
export declare class NotifyDubbridgeCallbackResponse extends $tea.Model {
|
|
3428
|
+
reqMsgId?: string;
|
|
3429
|
+
resultCode?: string;
|
|
3430
|
+
resultMsg?: string;
|
|
3431
|
+
data?: CommonNotyfyResult;
|
|
3432
|
+
static names(): {
|
|
3433
|
+
[key: string]: string;
|
|
3434
|
+
};
|
|
3435
|
+
static types(): {
|
|
3436
|
+
[key: string]: any;
|
|
3437
|
+
};
|
|
3438
|
+
constructor(map?: {
|
|
3439
|
+
[key: string]: any;
|
|
3440
|
+
});
|
|
3441
|
+
}
|
|
3295
3442
|
export declare class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
|
|
3296
3443
|
authToken?: string;
|
|
3297
3444
|
productInstanceId?: string;
|
|
@@ -5388,6 +5535,136 @@ export declare class CancelUmktDataaccessOfflinetaskResponse extends $tea.Model
|
|
|
5388
5535
|
[key: string]: any;
|
|
5389
5536
|
});
|
|
5390
5537
|
}
|
|
5538
|
+
export declare class QueryUmktRtMarketingRequest extends $tea.Model {
|
|
5539
|
+
authToken?: string;
|
|
5540
|
+
productInstanceId?: string;
|
|
5541
|
+
sceneStrategyId: number;
|
|
5542
|
+
queryTemplate: string;
|
|
5543
|
+
customerKey: string;
|
|
5544
|
+
bizSerialNo: string;
|
|
5545
|
+
static names(): {
|
|
5546
|
+
[key: string]: string;
|
|
5547
|
+
};
|
|
5548
|
+
static types(): {
|
|
5549
|
+
[key: string]: any;
|
|
5550
|
+
};
|
|
5551
|
+
constructor(map?: {
|
|
5552
|
+
[key: string]: any;
|
|
5553
|
+
});
|
|
5554
|
+
}
|
|
5555
|
+
export declare class QueryUmktRtMarketingResponse extends $tea.Model {
|
|
5556
|
+
reqMsgId?: string;
|
|
5557
|
+
resultCode?: string;
|
|
5558
|
+
resultMsg?: string;
|
|
5559
|
+
queryResult?: CustomerUmktInfoModel;
|
|
5560
|
+
static names(): {
|
|
5561
|
+
[key: string]: string;
|
|
5562
|
+
};
|
|
5563
|
+
static types(): {
|
|
5564
|
+
[key: string]: any;
|
|
5565
|
+
};
|
|
5566
|
+
constructor(map?: {
|
|
5567
|
+
[key: string]: any;
|
|
5568
|
+
});
|
|
5569
|
+
}
|
|
5570
|
+
export declare class PushUmktBackflowEventRequest extends $tea.Model {
|
|
5571
|
+
authToken?: string;
|
|
5572
|
+
productInstanceId?: string;
|
|
5573
|
+
eventId: number;
|
|
5574
|
+
eventRecords: BackflowEventRecord[];
|
|
5575
|
+
static names(): {
|
|
5576
|
+
[key: string]: string;
|
|
5577
|
+
};
|
|
5578
|
+
static types(): {
|
|
5579
|
+
[key: string]: any;
|
|
5580
|
+
};
|
|
5581
|
+
constructor(map?: {
|
|
5582
|
+
[key: string]: any;
|
|
5583
|
+
});
|
|
5584
|
+
}
|
|
5585
|
+
export declare class PushUmktBackflowEventResponse extends $tea.Model {
|
|
5586
|
+
reqMsgId?: string;
|
|
5587
|
+
resultCode?: string;
|
|
5588
|
+
resultMsg?: string;
|
|
5589
|
+
static names(): {
|
|
5590
|
+
[key: string]: string;
|
|
5591
|
+
};
|
|
5592
|
+
static types(): {
|
|
5593
|
+
[key: string]: any;
|
|
5594
|
+
};
|
|
5595
|
+
constructor(map?: {
|
|
5596
|
+
[key: string]: any;
|
|
5597
|
+
});
|
|
5598
|
+
}
|
|
5599
|
+
export declare class SendUmktCardsmsBatchRequest extends $tea.Model {
|
|
5600
|
+
authToken?: string;
|
|
5601
|
+
productInstanceId?: string;
|
|
5602
|
+
cpassAk?: string;
|
|
5603
|
+
industryTag: string;
|
|
5604
|
+
cardTemplateCode: string;
|
|
5605
|
+
cardTemplateParamJson: string;
|
|
5606
|
+
phoneNumberJson: string;
|
|
5607
|
+
signNameJson: string;
|
|
5608
|
+
smsUpExtendCodeJson?: string;
|
|
5609
|
+
static names(): {
|
|
5610
|
+
[key: string]: string;
|
|
5611
|
+
};
|
|
5612
|
+
static types(): {
|
|
5613
|
+
[key: string]: any;
|
|
5614
|
+
};
|
|
5615
|
+
constructor(map?: {
|
|
5616
|
+
[key: string]: any;
|
|
5617
|
+
});
|
|
5618
|
+
}
|
|
5619
|
+
export declare class SendUmktCardsmsBatchResponse extends $tea.Model {
|
|
5620
|
+
reqMsgId?: string;
|
|
5621
|
+
resultCode?: string;
|
|
5622
|
+
resultMsg?: string;
|
|
5623
|
+
bizCardId?: string;
|
|
5624
|
+
mediaMobiles?: string;
|
|
5625
|
+
notMediaMobiles?: string;
|
|
5626
|
+
static names(): {
|
|
5627
|
+
[key: string]: string;
|
|
5628
|
+
};
|
|
5629
|
+
static types(): {
|
|
5630
|
+
[key: string]: any;
|
|
5631
|
+
};
|
|
5632
|
+
constructor(map?: {
|
|
5633
|
+
[key: string]: any;
|
|
5634
|
+
});
|
|
5635
|
+
}
|
|
5636
|
+
export declare class QueryUmktCardsmsSupportRequest extends $tea.Model {
|
|
5637
|
+
authToken?: string;
|
|
5638
|
+
productInstanceId?: string;
|
|
5639
|
+
cpassAk?: string;
|
|
5640
|
+
industryTag: string;
|
|
5641
|
+
templateCode: string;
|
|
5642
|
+
mobiles: string;
|
|
5643
|
+
static names(): {
|
|
5644
|
+
[key: string]: string;
|
|
5645
|
+
};
|
|
5646
|
+
static types(): {
|
|
5647
|
+
[key: string]: any;
|
|
5648
|
+
};
|
|
5649
|
+
constructor(map?: {
|
|
5650
|
+
[key: string]: any;
|
|
5651
|
+
});
|
|
5652
|
+
}
|
|
5653
|
+
export declare class QueryUmktCardsmsSupportResponse extends $tea.Model {
|
|
5654
|
+
reqMsgId?: string;
|
|
5655
|
+
resultCode?: string;
|
|
5656
|
+
resultMsg?: string;
|
|
5657
|
+
datas?: string;
|
|
5658
|
+
static names(): {
|
|
5659
|
+
[key: string]: string;
|
|
5660
|
+
};
|
|
5661
|
+
static types(): {
|
|
5662
|
+
[key: string]: any;
|
|
5663
|
+
};
|
|
5664
|
+
constructor(map?: {
|
|
5665
|
+
[key: string]: any;
|
|
5666
|
+
});
|
|
5667
|
+
}
|
|
5391
5668
|
export declare class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
5392
5669
|
authToken?: string;
|
|
5393
5670
|
apiCode: string;
|
|
@@ -6150,6 +6427,42 @@ export default class Client {
|
|
|
6150
6427
|
updateDubbridgeFileEx(request: UpdateDubbridgeFileRequest, headers: {
|
|
6151
6428
|
[key: string]: string;
|
|
6152
6429
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateDubbridgeFileResponse>;
|
|
6430
|
+
/**
|
|
6431
|
+
* Description: 天枢系统获取授信H5地址
|
|
6432
|
+
* Summary: 天枢系统获取授信H5地址
|
|
6433
|
+
*/
|
|
6434
|
+
queryDubbridgeCreditUrl(request: QueryDubbridgeCreditUrlRequest): Promise<QueryDubbridgeCreditUrlResponse>;
|
|
6435
|
+
/**
|
|
6436
|
+
* Description: 天枢系统获取授信H5地址
|
|
6437
|
+
* Summary: 天枢系统获取授信H5地址
|
|
6438
|
+
*/
|
|
6439
|
+
queryDubbridgeCreditUrlEx(request: QueryDubbridgeCreditUrlRequest, headers: {
|
|
6440
|
+
[key: string]: string;
|
|
6441
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeCreditUrlResponse>;
|
|
6442
|
+
/**
|
|
6443
|
+
* Description: 根据关键字从第三方查询企业详情信息
|
|
6444
|
+
* Summary: 天枢系统企业详情信息查询
|
|
6445
|
+
*/
|
|
6446
|
+
queryDubbridgeBusinessDetail(request: QueryDubbridgeBusinessDetailRequest): Promise<QueryDubbridgeBusinessDetailResponse>;
|
|
6447
|
+
/**
|
|
6448
|
+
* Description: 根据关键字从第三方查询企业详情信息
|
|
6449
|
+
* Summary: 天枢系统企业详情信息查询
|
|
6450
|
+
*/
|
|
6451
|
+
queryDubbridgeBusinessDetailEx(request: QueryDubbridgeBusinessDetailRequest, headers: {
|
|
6452
|
+
[key: string]: string;
|
|
6453
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeBusinessDetailResponse>;
|
|
6454
|
+
/**
|
|
6455
|
+
* Description: 天枢回调通用接口
|
|
6456
|
+
* Summary: 天枢回调通用接口
|
|
6457
|
+
*/
|
|
6458
|
+
notifyDubbridgeCallback(request: NotifyDubbridgeCallbackRequest): Promise<NotifyDubbridgeCallbackResponse>;
|
|
6459
|
+
/**
|
|
6460
|
+
* Description: 天枢回调通用接口
|
|
6461
|
+
* Summary: 天枢回调通用接口
|
|
6462
|
+
*/
|
|
6463
|
+
notifyDubbridgeCallbackEx(request: NotifyDubbridgeCallbackRequest, headers: {
|
|
6464
|
+
[key: string]: string;
|
|
6465
|
+
}, runtime: $Util.RuntimeOptions): Promise<NotifyDubbridgeCallbackResponse>;
|
|
6153
6466
|
/**
|
|
6154
6467
|
* Description: 四要素认证首先调用此接口
|
|
6155
6468
|
* Summary: 芝麻四要素接口
|
|
@@ -6908,6 +7221,54 @@ export default class Client {
|
|
|
6908
7221
|
cancelUmktDataaccessOfflinetaskEx(request: CancelUmktDataaccessOfflinetaskRequest, headers: {
|
|
6909
7222
|
[key: string]: string;
|
|
6910
7223
|
}, runtime: $Util.RuntimeOptions): Promise<CancelUmktDataaccessOfflinetaskResponse>;
|
|
7224
|
+
/**
|
|
7225
|
+
* Description: 营销盾实时单一凭证营销接口,服务于近rta的场景
|
|
7226
|
+
* Summary: 营销盾实时单一凭证营销接口
|
|
7227
|
+
*/
|
|
7228
|
+
queryUmktRtMarketing(request: QueryUmktRtMarketingRequest): Promise<QueryUmktRtMarketingResponse>;
|
|
7229
|
+
/**
|
|
7230
|
+
* Description: 营销盾实时单一凭证营销接口,服务于近rta的场景
|
|
7231
|
+
* Summary: 营销盾实时单一凭证营销接口
|
|
7232
|
+
*/
|
|
7233
|
+
queryUmktRtMarketingEx(request: QueryUmktRtMarketingRequest, headers: {
|
|
7234
|
+
[key: string]: string;
|
|
7235
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryUmktRtMarketingResponse>;
|
|
7236
|
+
/**
|
|
7237
|
+
* Description: 营销盾业务回流事件推送
|
|
7238
|
+
* Summary: 营销盾回流事件推送
|
|
7239
|
+
*/
|
|
7240
|
+
pushUmktBackflowEvent(request: PushUmktBackflowEventRequest): Promise<PushUmktBackflowEventResponse>;
|
|
7241
|
+
/**
|
|
7242
|
+
* Description: 营销盾业务回流事件推送
|
|
7243
|
+
* Summary: 营销盾回流事件推送
|
|
7244
|
+
*/
|
|
7245
|
+
pushUmktBackflowEventEx(request: PushUmktBackflowEventRequest, headers: {
|
|
7246
|
+
[key: string]: string;
|
|
7247
|
+
}, runtime: $Util.RuntimeOptions): Promise<PushUmktBackflowEventResponse>;
|
|
7248
|
+
/**
|
|
7249
|
+
* Description: 卡片短信批量发送接口
|
|
7250
|
+
* Summary: 卡片短信批量发送接口
|
|
7251
|
+
*/
|
|
7252
|
+
sendUmktCardsmsBatch(request: SendUmktCardsmsBatchRequest): Promise<SendUmktCardsmsBatchResponse>;
|
|
7253
|
+
/**
|
|
7254
|
+
* Description: 卡片短信批量发送接口
|
|
7255
|
+
* Summary: 卡片短信批量发送接口
|
|
7256
|
+
*/
|
|
7257
|
+
sendUmktCardsmsBatchEx(request: SendUmktCardsmsBatchRequest, headers: {
|
|
7258
|
+
[key: string]: string;
|
|
7259
|
+
}, runtime: $Util.RuntimeOptions): Promise<SendUmktCardsmsBatchResponse>;
|
|
7260
|
+
/**
|
|
7261
|
+
* Description: 卡片短信支持能力查询
|
|
7262
|
+
* Summary: 卡片短信支持能力查询
|
|
7263
|
+
*/
|
|
7264
|
+
queryUmktCardsmsSupport(request: QueryUmktCardsmsSupportRequest): Promise<QueryUmktCardsmsSupportResponse>;
|
|
7265
|
+
/**
|
|
7266
|
+
* Description: 卡片短信支持能力查询
|
|
7267
|
+
* Summary: 卡片短信支持能力查询
|
|
7268
|
+
*/
|
|
7269
|
+
queryUmktCardsmsSupportEx(request: QueryUmktCardsmsSupportRequest, headers: {
|
|
7270
|
+
[key: string]: string;
|
|
7271
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryUmktCardsmsSupportResponse>;
|
|
6911
7272
|
/**
|
|
6912
7273
|
* Description: 创建HTTP PUT提交的文件上传
|
|
6913
7274
|
* Summary: 文件上传创建
|