tencentcloud-sdk-nodejs-intl-en 3.0.1337 → 3.0.1339
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/package.json +1 -1
- package/tencentcloud/billing/v20180709/models.js +92 -25
- package/tencentcloud/ciam/index.js +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/dbbrain/index.js +1 -1
- package/tencentcloud/dts/index.js +1 -1
- package/tencentcloud/hunyuan/v20230901/hunyuan_client.js +28 -2
- package/tencentcloud/hunyuan/v20230901/models.js +222 -42
- package/tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.js +24 -9
- package/tencentcloud/intlpartnersmgt/v20220928/models.js +325 -62
- package/tencentcloud/organization/v20210331/models.js +319 -140
- package/tencentcloud/organization/v20210331/organization_client.js +18 -4
- package/tencentcloud/redis/v20180412/models.js +1145 -1022
- package/tencentcloud/redis/v20180412/redis_client.js +15 -1
- package/tencentcloud/teo/v20220901/models.js +1755 -461
- package/tencentcloud/teo/v20220901/teo_client.js +38 -15
- package/tencentcloud/tke/index.js +1 -1
- package/tencentcloud/vod/index.js +1 -1
- package/tencentcloud/wedata/index.js +1 -1
|
@@ -2258,6 +2258,98 @@ class DescribeBillSummaryByPayModeRequest extends AbstractModel {
|
|
|
2258
2258
|
}
|
|
2259
2259
|
}
|
|
2260
2260
|
|
|
2261
|
+
/**
|
|
2262
|
+
* DescribeCustomerVoucherUsageDetails response structure.
|
|
2263
|
+
* @class
|
|
2264
|
+
*/
|
|
2265
|
+
class DescribeCustomerVoucherUsageDetailsResponse extends AbstractModel {
|
|
2266
|
+
constructor(){
|
|
2267
|
+
super();
|
|
2268
|
+
|
|
2269
|
+
/**
|
|
2270
|
+
* Voucher information details
|
|
2271
|
+
* @type {Array.<UsageDetail> || null}
|
|
2272
|
+
*/
|
|
2273
|
+
this.Data = null;
|
|
2274
|
+
|
|
2275
|
+
/**
|
|
2276
|
+
* Customer UIN
|
|
2277
|
+
* @type {number || null}
|
|
2278
|
+
*/
|
|
2279
|
+
this.CustomerUin = null;
|
|
2280
|
+
|
|
2281
|
+
/**
|
|
2282
|
+
* Voucher ID.
|
|
2283
|
+
* @type {number || null}
|
|
2284
|
+
*/
|
|
2285
|
+
this.VoucherId = null;
|
|
2286
|
+
|
|
2287
|
+
/**
|
|
2288
|
+
* Total voucher amount
|
|
2289
|
+
* @type {number || null}
|
|
2290
|
+
*/
|
|
2291
|
+
this.TotalAmount = null;
|
|
2292
|
+
|
|
2293
|
+
/**
|
|
2294
|
+
* Voucher balance
|
|
2295
|
+
* @type {number || null}
|
|
2296
|
+
*/
|
|
2297
|
+
this.RemainAmount = null;
|
|
2298
|
+
|
|
2299
|
+
/**
|
|
2300
|
+
* Total number of records
|
|
2301
|
+
* @type {number || null}
|
|
2302
|
+
*/
|
|
2303
|
+
this.TotalRecordsCount = null;
|
|
2304
|
+
|
|
2305
|
+
/**
|
|
2306
|
+
* Voucher Usage Month
|
|
2307
|
+
* @type {string || null}
|
|
2308
|
+
*/
|
|
2309
|
+
this.Month = null;
|
|
2310
|
+
|
|
2311
|
+
/**
|
|
2312
|
+
* Number of records in the current month
|
|
2313
|
+
* @type {number || null}
|
|
2314
|
+
*/
|
|
2315
|
+
this.RecordsCountByMonth = null;
|
|
2316
|
+
|
|
2317
|
+
/**
|
|
2318
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2319
|
+
* @type {string || null}
|
|
2320
|
+
*/
|
|
2321
|
+
this.RequestId = null;
|
|
2322
|
+
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2325
|
+
/**
|
|
2326
|
+
* @private
|
|
2327
|
+
*/
|
|
2328
|
+
deserialize(params) {
|
|
2329
|
+
if (!params) {
|
|
2330
|
+
return;
|
|
2331
|
+
}
|
|
2332
|
+
|
|
2333
|
+
if (params.Data) {
|
|
2334
|
+
this.Data = new Array();
|
|
2335
|
+
for (let z in params.Data) {
|
|
2336
|
+
let obj = new UsageDetail();
|
|
2337
|
+
obj.deserialize(params.Data[z]);
|
|
2338
|
+
this.Data.push(obj);
|
|
2339
|
+
}
|
|
2340
|
+
}
|
|
2341
|
+
this.CustomerUin = 'CustomerUin' in params ? params.CustomerUin : null;
|
|
2342
|
+
this.VoucherId = 'VoucherId' in params ? params.VoucherId : null;
|
|
2343
|
+
this.TotalAmount = 'TotalAmount' in params ? params.TotalAmount : null;
|
|
2344
|
+
this.RemainAmount = 'RemainAmount' in params ? params.RemainAmount : null;
|
|
2345
|
+
this.TotalRecordsCount = 'TotalRecordsCount' in params ? params.TotalRecordsCount : null;
|
|
2346
|
+
this.Month = 'Month' in params ? params.Month : null;
|
|
2347
|
+
this.RecordsCountByMonth = 'RecordsCountByMonth' in params ? params.RecordsCountByMonth : null;
|
|
2348
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2349
|
+
|
|
2350
|
+
}
|
|
2351
|
+
}
|
|
2352
|
+
|
|
2261
2353
|
/**
|
|
2262
2354
|
* Invitation link information.
|
|
2263
2355
|
* @class
|
|
@@ -2681,54 +2773,30 @@ class ForceQNResponse extends AbstractModel {
|
|
|
2681
2773
|
}
|
|
2682
2774
|
|
|
2683
2775
|
/**
|
|
2684
|
-
*
|
|
2776
|
+
* DescribeBillDetail response structure.
|
|
2685
2777
|
* @class
|
|
2686
2778
|
*/
|
|
2687
|
-
class
|
|
2779
|
+
class DescribeBillDetailResponse extends AbstractModel {
|
|
2688
2780
|
constructor(){
|
|
2689
2781
|
super();
|
|
2690
2782
|
|
|
2691
2783
|
/**
|
|
2692
|
-
*
|
|
2693
|
-
* @type {
|
|
2784
|
+
* Data details.
|
|
2785
|
+
* @type {Array.<CustomerBillDetailData> || null}
|
|
2694
2786
|
*/
|
|
2695
|
-
this.
|
|
2787
|
+
this.DetailSet = null;
|
|
2696
2788
|
|
|
2697
2789
|
/**
|
|
2698
|
-
*
|
|
2790
|
+
* Total number of entries.
|
|
2699
2791
|
* @type {number || null}
|
|
2700
2792
|
*/
|
|
2701
|
-
this.
|
|
2702
|
-
|
|
2703
|
-
/**
|
|
2704
|
-
* Email.
|
|
2705
|
-
* @type {string || null}
|
|
2706
|
-
*/
|
|
2707
|
-
this.Email = null;
|
|
2708
|
-
|
|
2709
|
-
/**
|
|
2710
|
-
* Mobile number.
|
|
2711
|
-
* @type {string || null}
|
|
2712
|
-
*/
|
|
2713
|
-
this.Mobile = null;
|
|
2714
|
-
|
|
2715
|
-
/**
|
|
2716
|
-
* Name.
|
|
2717
|
-
* @type {string || null}
|
|
2718
|
-
*/
|
|
2719
|
-
this.Name = null;
|
|
2720
|
-
|
|
2721
|
-
/**
|
|
2722
|
-
* Approval status.
|
|
2723
|
-
* @type {string || null}
|
|
2724
|
-
*/
|
|
2725
|
-
this.Status = null;
|
|
2793
|
+
this.Total = null;
|
|
2726
2794
|
|
|
2727
2795
|
/**
|
|
2728
|
-
*
|
|
2796
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2729
2797
|
* @type {string || null}
|
|
2730
2798
|
*/
|
|
2731
|
-
this.
|
|
2799
|
+
this.RequestId = null;
|
|
2732
2800
|
|
|
2733
2801
|
}
|
|
2734
2802
|
|
|
@@ -2739,13 +2807,17 @@ class QueryPendingCustomersItem extends AbstractModel {
|
|
|
2739
2807
|
if (!params) {
|
|
2740
2808
|
return;
|
|
2741
2809
|
}
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
|
|
2810
|
+
|
|
2811
|
+
if (params.DetailSet) {
|
|
2812
|
+
this.DetailSet = new Array();
|
|
2813
|
+
for (let z in params.DetailSet) {
|
|
2814
|
+
let obj = new CustomerBillDetailData();
|
|
2815
|
+
obj.deserialize(params.DetailSet[z]);
|
|
2816
|
+
this.DetailSet.push(obj);
|
|
2817
|
+
}
|
|
2818
|
+
}
|
|
2819
|
+
this.Total = 'Total' in params ? params.Total : null;
|
|
2820
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2749
2821
|
|
|
2750
2822
|
}
|
|
2751
2823
|
}
|
|
@@ -3843,30 +3915,54 @@ class AllocateCreditPoolResponse extends AbstractModel {
|
|
|
3843
3915
|
}
|
|
3844
3916
|
|
|
3845
3917
|
/**
|
|
3846
|
-
*
|
|
3918
|
+
* Pending review sub-customer
|
|
3847
3919
|
* @class
|
|
3848
3920
|
*/
|
|
3849
|
-
class
|
|
3921
|
+
class QueryPendingCustomersItem extends AbstractModel {
|
|
3850
3922
|
constructor(){
|
|
3851
3923
|
super();
|
|
3852
3924
|
|
|
3853
3925
|
/**
|
|
3854
|
-
*
|
|
3855
|
-
* @type {
|
|
3926
|
+
* Application time.
|
|
3927
|
+
* @type {string || null}
|
|
3856
3928
|
*/
|
|
3857
|
-
this.
|
|
3929
|
+
this.ApplyTime = null;
|
|
3858
3930
|
|
|
3859
3931
|
/**
|
|
3860
|
-
*
|
|
3932
|
+
* Sub-Account uin.
|
|
3861
3933
|
* @type {number || null}
|
|
3862
3934
|
*/
|
|
3863
|
-
this.
|
|
3935
|
+
this.ClientUin = null;
|
|
3864
3936
|
|
|
3865
3937
|
/**
|
|
3866
|
-
*
|
|
3938
|
+
* Email.
|
|
3867
3939
|
* @type {string || null}
|
|
3868
3940
|
*/
|
|
3869
|
-
this.
|
|
3941
|
+
this.Email = null;
|
|
3942
|
+
|
|
3943
|
+
/**
|
|
3944
|
+
* Mobile number.
|
|
3945
|
+
* @type {string || null}
|
|
3946
|
+
*/
|
|
3947
|
+
this.Mobile = null;
|
|
3948
|
+
|
|
3949
|
+
/**
|
|
3950
|
+
* Name.
|
|
3951
|
+
* @type {string || null}
|
|
3952
|
+
*/
|
|
3953
|
+
this.Name = null;
|
|
3954
|
+
|
|
3955
|
+
/**
|
|
3956
|
+
* Approval status.
|
|
3957
|
+
* @type {string || null}
|
|
3958
|
+
*/
|
|
3959
|
+
this.Status = null;
|
|
3960
|
+
|
|
3961
|
+
/**
|
|
3962
|
+
* Sub-Customer type.
|
|
3963
|
+
* @type {string || null}
|
|
3964
|
+
*/
|
|
3965
|
+
this.Type = null;
|
|
3870
3966
|
|
|
3871
3967
|
}
|
|
3872
3968
|
|
|
@@ -3877,17 +3973,13 @@ class DescribeBillDetailResponse extends AbstractModel {
|
|
|
3877
3973
|
if (!params) {
|
|
3878
3974
|
return;
|
|
3879
3975
|
}
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
}
|
|
3888
|
-
}
|
|
3889
|
-
this.Total = 'Total' in params ? params.Total : null;
|
|
3890
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3976
|
+
this.ApplyTime = 'ApplyTime' in params ? params.ApplyTime : null;
|
|
3977
|
+
this.ClientUin = 'ClientUin' in params ? params.ClientUin : null;
|
|
3978
|
+
this.Email = 'Email' in params ? params.Email : null;
|
|
3979
|
+
this.Mobile = 'Mobile' in params ? params.Mobile : null;
|
|
3980
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
3981
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
3982
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
3891
3983
|
|
|
3892
3984
|
}
|
|
3893
3985
|
}
|
|
@@ -4103,6 +4195,62 @@ class ApproveSubAgentApplyRequest extends AbstractModel {
|
|
|
4103
4195
|
}
|
|
4104
4196
|
}
|
|
4105
4197
|
|
|
4198
|
+
/**
|
|
4199
|
+
* DescribeCustomerVoucherUsageDetails request structure.
|
|
4200
|
+
* @class
|
|
4201
|
+
*/
|
|
4202
|
+
class DescribeCustomerVoucherUsageDetailsRequest extends AbstractModel {
|
|
4203
|
+
constructor(){
|
|
4204
|
+
super();
|
|
4205
|
+
|
|
4206
|
+
/**
|
|
4207
|
+
* Page number, starting from 1
|
|
4208
|
+
* @type {number || null}
|
|
4209
|
+
*/
|
|
4210
|
+
this.Page = null;
|
|
4211
|
+
|
|
4212
|
+
/**
|
|
4213
|
+
* Number of items per page, range 1-100
|
|
4214
|
+
* @type {number || null}
|
|
4215
|
+
*/
|
|
4216
|
+
this.PageSize = null;
|
|
4217
|
+
|
|
4218
|
+
/**
|
|
4219
|
+
* Customer UIN
|
|
4220
|
+
* @type {number || null}
|
|
4221
|
+
*/
|
|
4222
|
+
this.CustomerUin = null;
|
|
4223
|
+
|
|
4224
|
+
/**
|
|
4225
|
+
* Voucher ID
|
|
4226
|
+
* @type {number || null}
|
|
4227
|
+
*/
|
|
4228
|
+
this.VoucherId = null;
|
|
4229
|
+
|
|
4230
|
+
/**
|
|
4231
|
+
* Voucher Usage Month
|
|
4232
|
+
* @type {string || null}
|
|
4233
|
+
*/
|
|
4234
|
+
this.Month = null;
|
|
4235
|
+
|
|
4236
|
+
}
|
|
4237
|
+
|
|
4238
|
+
/**
|
|
4239
|
+
* @private
|
|
4240
|
+
*/
|
|
4241
|
+
deserialize(params) {
|
|
4242
|
+
if (!params) {
|
|
4243
|
+
return;
|
|
4244
|
+
}
|
|
4245
|
+
this.Page = 'Page' in params ? params.Page : null;
|
|
4246
|
+
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
4247
|
+
this.CustomerUin = 'CustomerUin' in params ? params.CustomerUin : null;
|
|
4248
|
+
this.VoucherId = 'VoucherId' in params ? params.VoucherId : null;
|
|
4249
|
+
this.Month = 'Month' in params ? params.Month : null;
|
|
4250
|
+
|
|
4251
|
+
}
|
|
4252
|
+
}
|
|
4253
|
+
|
|
4106
4254
|
/**
|
|
4107
4255
|
* Payment mode details in the customer bill data totaled by payment mode
|
|
4108
4256
|
* @class
|
|
@@ -5360,6 +5508,118 @@ class ModifyClientRemarkRequest extends AbstractModel {
|
|
|
5360
5508
|
}
|
|
5361
5509
|
}
|
|
5362
5510
|
|
|
5511
|
+
/**
|
|
5512
|
+
* Voucher usage details
|
|
5513
|
+
* @class
|
|
5514
|
+
*/
|
|
5515
|
+
class UsageDetail extends AbstractModel {
|
|
5516
|
+
constructor(){
|
|
5517
|
+
super();
|
|
5518
|
+
|
|
5519
|
+
/**
|
|
5520
|
+
* Voucher log ID
|
|
5521
|
+
* @type {number || null}
|
|
5522
|
+
*/
|
|
5523
|
+
this.Id = null;
|
|
5524
|
+
|
|
5525
|
+
/**
|
|
5526
|
+
* Voucher ID.
|
|
5527
|
+
* @type {string || null}
|
|
5528
|
+
*/
|
|
5529
|
+
this.VoucherId = null;
|
|
5530
|
+
|
|
5531
|
+
/**
|
|
5532
|
+
* Order ID
|
|
5533
|
+
* @type {string || null}
|
|
5534
|
+
*/
|
|
5535
|
+
this.DealName = null;
|
|
5536
|
+
|
|
5537
|
+
/**
|
|
5538
|
+
* Billing ID
|
|
5539
|
+
* @type {string || null}
|
|
5540
|
+
*/
|
|
5541
|
+
this.BillId = null;
|
|
5542
|
+
|
|
5543
|
+
/**
|
|
5544
|
+
* Amount
|
|
5545
|
+
* @type {number || null}
|
|
5546
|
+
*/
|
|
5547
|
+
this.Amount = null;
|
|
5548
|
+
|
|
5549
|
+
/**
|
|
5550
|
+
* Payment mode
|
|
5551
|
+
* @type {string || null}
|
|
5552
|
+
*/
|
|
5553
|
+
this.PayMode = null;
|
|
5554
|
+
|
|
5555
|
+
/**
|
|
5556
|
+
* Order product code
|
|
5557
|
+
* @type {string || null}
|
|
5558
|
+
*/
|
|
5559
|
+
this.ProductCode = null;
|
|
5560
|
+
|
|
5561
|
+
/**
|
|
5562
|
+
* Sub-product code
|
|
5563
|
+
* @type {string || null}
|
|
5564
|
+
*/
|
|
5565
|
+
this.SubProductCode = null;
|
|
5566
|
+
|
|
5567
|
+
/**
|
|
5568
|
+
* Product name of the order
|
|
5569
|
+
* @type {string || null}
|
|
5570
|
+
*/
|
|
5571
|
+
this.ProductCodeName = null;
|
|
5572
|
+
|
|
5573
|
+
/**
|
|
5574
|
+
* Subproduct name of the order
|
|
5575
|
+
* @type {string || null}
|
|
5576
|
+
*/
|
|
5577
|
+
this.SubProductCodeName = null;
|
|
5578
|
+
|
|
5579
|
+
/**
|
|
5580
|
+
* Order payment time
|
|
5581
|
+
* @type {string || null}
|
|
5582
|
+
*/
|
|
5583
|
+
this.PayTime = null;
|
|
5584
|
+
|
|
5585
|
+
/**
|
|
5586
|
+
* Order completion time
|
|
5587
|
+
* @type {string || null}
|
|
5588
|
+
*/
|
|
5589
|
+
this.CompletionTime = null;
|
|
5590
|
+
|
|
5591
|
+
/**
|
|
5592
|
+
* Order owner uin
|
|
5593
|
+
* @type {number || null}
|
|
5594
|
+
*/
|
|
5595
|
+
this.OwnerUin = null;
|
|
5596
|
+
|
|
5597
|
+
}
|
|
5598
|
+
|
|
5599
|
+
/**
|
|
5600
|
+
* @private
|
|
5601
|
+
*/
|
|
5602
|
+
deserialize(params) {
|
|
5603
|
+
if (!params) {
|
|
5604
|
+
return;
|
|
5605
|
+
}
|
|
5606
|
+
this.Id = 'Id' in params ? params.Id : null;
|
|
5607
|
+
this.VoucherId = 'VoucherId' in params ? params.VoucherId : null;
|
|
5608
|
+
this.DealName = 'DealName' in params ? params.DealName : null;
|
|
5609
|
+
this.BillId = 'BillId' in params ? params.BillId : null;
|
|
5610
|
+
this.Amount = 'Amount' in params ? params.Amount : null;
|
|
5611
|
+
this.PayMode = 'PayMode' in params ? params.PayMode : null;
|
|
5612
|
+
this.ProductCode = 'ProductCode' in params ? params.ProductCode : null;
|
|
5613
|
+
this.SubProductCode = 'SubProductCode' in params ? params.SubProductCode : null;
|
|
5614
|
+
this.ProductCodeName = 'ProductCodeName' in params ? params.ProductCodeName : null;
|
|
5615
|
+
this.SubProductCodeName = 'SubProductCodeName' in params ? params.SubProductCodeName : null;
|
|
5616
|
+
this.PayTime = 'PayTime' in params ? params.PayTime : null;
|
|
5617
|
+
this.CompletionTime = 'CompletionTime' in params ? params.CompletionTime : null;
|
|
5618
|
+
this.OwnerUin = 'OwnerUin' in params ? params.OwnerUin : null;
|
|
5619
|
+
|
|
5620
|
+
}
|
|
5621
|
+
}
|
|
5622
|
+
|
|
5363
5623
|
/**
|
|
5364
5624
|
* QueryPendingSubAgentsV2 response structure.
|
|
5365
5625
|
* @class
|
|
@@ -6014,6 +6274,7 @@ module.exports = {
|
|
|
6014
6274
|
DescribeCustomerOwnVoucherListResponse: DescribeCustomerOwnVoucherListResponse,
|
|
6015
6275
|
DescribeBillDownloadUrlRequest: DescribeBillDownloadUrlRequest,
|
|
6016
6276
|
DescribeBillSummaryByPayModeRequest: DescribeBillSummaryByPayModeRequest,
|
|
6277
|
+
DescribeCustomerVoucherUsageDetailsResponse: DescribeCustomerVoucherUsageDetailsResponse,
|
|
6017
6278
|
QueryInvitationInfoData: QueryInvitationInfoData,
|
|
6018
6279
|
QuerySubAgentsDetailV2Request: QuerySubAgentsDetailV2Request,
|
|
6019
6280
|
GetCountryCodesResponse: GetCountryCodesResponse,
|
|
@@ -6023,7 +6284,7 @@ module.exports = {
|
|
|
6023
6284
|
QueryVoucherAmountByUinRequest: QueryVoucherAmountByUinRequest,
|
|
6024
6285
|
GetCountryCodesRequest: GetCountryCodesRequest,
|
|
6025
6286
|
ForceQNResponse: ForceQNResponse,
|
|
6026
|
-
|
|
6287
|
+
DescribeBillDetailResponse: DescribeBillDetailResponse,
|
|
6027
6288
|
QueryDirectCustomersCreditResponse: QueryDirectCustomersCreditResponse,
|
|
6028
6289
|
DescribeBillDownloadUrlResponse: DescribeBillDownloadUrlResponse,
|
|
6029
6290
|
DescribeCustomerVoucherListRequest: DescribeCustomerVoucherListRequest,
|
|
@@ -6044,12 +6305,13 @@ module.exports = {
|
|
|
6044
6305
|
ActionSummaryOverviewItem: ActionSummaryOverviewItem,
|
|
6045
6306
|
QueryPendingClientsV2Response: QueryPendingClientsV2Response,
|
|
6046
6307
|
AllocateCreditPoolResponse: AllocateCreditPoolResponse,
|
|
6047
|
-
|
|
6308
|
+
QueryPendingCustomersItem: QueryPendingCustomersItem,
|
|
6048
6309
|
QueryCreditAllocationHistoryRequest: QueryCreditAllocationHistoryRequest,
|
|
6049
6310
|
DescribeCustomerUinResponse: DescribeCustomerUinResponse,
|
|
6050
6311
|
DescribeCustomerBillDetailByDayResponse: DescribeCustomerBillDetailByDayResponse,
|
|
6051
6312
|
ApproveClientApplyRequest: ApproveClientApplyRequest,
|
|
6052
6313
|
ApproveSubAgentApplyRequest: ApproveSubAgentApplyRequest,
|
|
6314
|
+
DescribeCustomerVoucherUsageDetailsRequest: DescribeCustomerVoucherUsageDetailsRequest,
|
|
6053
6315
|
PayModeSummaryOverviewItem: PayModeSummaryOverviewItem,
|
|
6054
6316
|
QueryCustomersCreditData: QueryCustomersCreditData,
|
|
6055
6317
|
QueryCustomersCreditResponse: QueryCustomersCreditResponse,
|
|
@@ -6077,6 +6339,7 @@ module.exports = {
|
|
|
6077
6339
|
QueryPolicyProductListByCodeResponse: QueryPolicyProductListByCodeResponse,
|
|
6078
6340
|
QueryVoucherListByUinVoucherItem: QueryVoucherListByUinVoucherItem,
|
|
6079
6341
|
ModifyClientRemarkRequest: ModifyClientRemarkRequest,
|
|
6342
|
+
UsageDetail: UsageDetail,
|
|
6080
6343
|
QueryPendingSubAgentsV2Response: QueryPendingSubAgentsV2Response,
|
|
6081
6344
|
DescribeCustomerBillDetailByDayRequest: DescribeCustomerBillDetailByDayRequest,
|
|
6082
6345
|
BillDetailData: BillDetailData,
|