tencentcloud-sdk-nodejs-intl-en 3.0.1077 → 3.0.1078

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-intl-en",
3
- "version": "3.0.1077",
3
+ "version": "3.0.1078",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1077";
1
+ const sdkVersion = "3.0.1078";
2
2
  module.exports = sdkVersion
@@ -24,12 +24,14 @@ const QueryVoucherAmountByUinRequest = models.QueryVoucherAmountByUinRequest;
24
24
  const ForceQNResponse = models.ForceQNResponse;
25
25
  const SendVerifyCodeResponse = models.SendVerifyCodeResponse;
26
26
  const QueryVoucherAmountByUinItem = models.QueryVoucherAmountByUinItem;
27
+ const QueryVoucherListByUinItem = models.QueryVoucherListByUinItem;
27
28
  const QueryCreditAllocationHistoryData = models.QueryCreditAllocationHistoryData;
29
+ const TagInfo = models.TagInfo;
28
30
  const DescribeBillSummaryResponse = models.DescribeBillSummaryResponse;
29
31
  const DescribeBillSummaryByPayModeResponse = models.DescribeBillSummaryByPayModeResponse;
30
32
  const QueryCreditQuotaResponse = models.QueryCreditQuotaResponse;
31
33
  const BusinessInfo = models.BusinessInfo;
32
- const QueryVoucherListByUinItem = models.QueryVoucherListByUinItem;
34
+ const QueryCreditByUinListRequest = models.QueryCreditByUinListRequest;
33
35
  const DescribeBillSummaryByProductResponse = models.DescribeBillSummaryByProductResponse;
34
36
  const QueryPartnerCreditRequest = models.QueryPartnerCreditRequest;
35
37
  const AllocateCustomerCreditRequest = models.AllocateCustomerCreditRequest;
@@ -38,7 +40,7 @@ const DescribeCustomerBillSummaryResponse = models.DescribeCustomerBillSummaryRe
38
40
  const QueryCustomersCreditRequest = models.QueryCustomersCreditRequest;
39
41
  const QueryPolicyProductListByCodeRequest = models.QueryPolicyProductListByCodeRequest;
40
42
  const DescribeBillDetailRequest = models.DescribeBillDetailRequest;
41
- const QueryCreditByUinListRequest = models.QueryCreditByUinListRequest;
43
+ const CreateAndSendClientInvitationMailResponse = models.CreateAndSendClientInvitationMailResponse;
42
44
  const CreateAccountResponse = models.CreateAccountResponse;
43
45
  const QueryAccountVerificationStatusResponse = models.QueryAccountVerificationStatusResponse;
44
46
  const RegionSummaryOverviewItem = models.RegionSummaryOverviewItem;
@@ -50,9 +52,9 @@ const QueryVoucherAmountByUinResponse = models.QueryVoucherAmountByUinResponse;
50
52
  const BusinessSummaryOverviewItem = models.BusinessSummaryOverviewItem;
51
53
  const DescribeCustomerUinData = models.DescribeCustomerUinData;
52
54
  const DescribeCustomerUinResponse = models.DescribeCustomerUinResponse;
53
- const DescribeBillSummaryByRegionRequest = models.DescribeBillSummaryByRegionRequest;
55
+ const DescribeBillDownloadUrlRequest = models.DescribeBillDownloadUrlRequest;
54
56
  const ForceQNRequest = models.ForceQNRequest;
55
- const TagInfo = models.TagInfo;
57
+ const ModifyClientRemarkRequest = models.ModifyClientRemarkRequest;
56
58
  const DescribeCustomerBillDetailRequest = models.DescribeCustomerBillDetailRequest;
57
59
  const DescribeCustomerBillDetailResponse = models.DescribeCustomerBillDetailResponse;
58
60
  const ModifyClientRemarkResponse = models.ModifyClientRemarkResponse;
@@ -78,14 +80,14 @@ const DescribeBillDetailResponse = models.DescribeBillDetailResponse;
78
80
  const QueryVoucherPoolResponse = models.QueryVoucherPoolResponse;
79
81
  const QueryCreditAllocationHistoryRequest = models.QueryCreditAllocationHistoryRequest;
80
82
  const QueryCustomersCreditResponse = models.QueryCustomersCreditResponse;
81
- const DescribeBillDownloadUrlRequest = models.DescribeBillDownloadUrlRequest;
83
+ const DescribeBillSummaryByRegionRequest = models.DescribeBillSummaryByRegionRequest;
82
84
  const DescribeCustomerUinRequest = models.DescribeCustomerUinRequest;
83
85
  const QueryVoucherListByUinResponse = models.QueryVoucherListByUinResponse;
84
86
  const QueryVoucherPoolRequest = models.QueryVoucherPoolRequest;
85
87
  const SummaryDetails = models.SummaryDetails;
86
88
  const DescribeCustomerInfoData = models.DescribeCustomerInfoData;
87
89
  const DescribeBillDownloadUrlResponse = models.DescribeBillDownloadUrlResponse;
88
- const ModifyClientRemarkRequest = models.ModifyClientRemarkRequest;
90
+ const CreateAndSendClientInvitationMailRequest = models.CreateAndSendClientInvitationMailRequest;
89
91
  const PolicyProductList = models.PolicyProductList;
90
92
  const PayModeSummaryOverviewItem = models.PayModeSummaryOverviewItem;
91
93
  const QueryCustomersCreditData = models.QueryCustomersCreditData;
@@ -250,6 +252,22 @@ class IntlpartnersmgtClient extends AbstractClient {
250
252
  this.request("DescribeBillSummaryByPayMode", req, resp, cb);
251
253
  }
252
254
 
255
+ /**
256
+ * This API is used to apply for the allowlist. If needed, please contact your business representative.Directions:
257
+ 1.This API is used to create an invitation link, which you can send to a specified email address.
258
+ 2.Customer need to click the invitation link in the email, fill in and submit the required information.
259
+ 3.You can review the customer's application in customer management after submission.
260
+
261
+ Note:This API is used to manually send the invitation link to the customer if the specified email does not receive it.
262
+ * @param {CreateAndSendClientInvitationMailRequest} req
263
+ * @param {function(string, CreateAndSendClientInvitationMailResponse):void} cb
264
+ * @public
265
+ */
266
+ CreateAndSendClientInvitationMail(req, cb) {
267
+ let resp = new CreateAndSendClientInvitationMailResponse();
268
+ this.request("CreateAndSendClientInvitationMail", req, resp, cb);
269
+ }
270
+
253
271
  /**
254
272
  * This API is used to download billing files and return billing file URLs by customers.
255
273
  * @param {DescribeBillDownloadUrlRequest} req
@@ -336,6 +336,56 @@ class QueryVoucherAmountByUinItem extends AbstractModel {
336
336
  }
337
337
  }
338
338
 
339
+ /**
340
+ * Voucher information of a single customer
341
+ * @class
342
+ */
343
+ class QueryVoucherListByUinItem extends AbstractModel {
344
+ constructor(){
345
+ super();
346
+
347
+ /**
348
+ * Customer UIN
349
+ * @type {number || null}
350
+ */
351
+ this.ClientUin = null;
352
+
353
+ /**
354
+ * The total number of vouchers
355
+ * @type {number || null}
356
+ */
357
+ this.TotalCount = null;
358
+
359
+ /**
360
+ * Voucher details
361
+ * @type {Array.<QueryVoucherListByUinVoucherItem> || null}
362
+ */
363
+ this.Data = null;
364
+
365
+ }
366
+
367
+ /**
368
+ * @private
369
+ */
370
+ deserialize(params) {
371
+ if (!params) {
372
+ return;
373
+ }
374
+ this.ClientUin = 'ClientUin' in params ? params.ClientUin : null;
375
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
376
+
377
+ if (params.Data) {
378
+ this.Data = new Array();
379
+ for (let z in params.Data) {
380
+ let obj = new QueryVoucherListByUinVoucherItem();
381
+ obj.deserialize(params.Data[z]);
382
+ this.Data.push(obj);
383
+ }
384
+ }
385
+
386
+ }
387
+ }
388
+
339
389
  /**
340
390
  * Returned information for querying the customer credit allocation records
341
391
  * @class
@@ -393,6 +443,41 @@ Note: The return value may be null, indicating that no valid data can be obtaine
393
443
  }
394
444
  }
395
445
 
446
+ /**
447
+ * Cost Allocation Tags
448
+ * @class
449
+ */
450
+ class TagInfo extends AbstractModel {
451
+ constructor(){
452
+ super();
453
+
454
+ /**
455
+ * Tag keyNote: This field may return null, indicating that no valid values can be obtained.
456
+ * @type {string || null}
457
+ */
458
+ this.TagKey = null;
459
+
460
+ /**
461
+ * Tag valueNote: This field may return null, indicating that no valid values can be obtained.
462
+ * @type {string || null}
463
+ */
464
+ this.TagValue = null;
465
+
466
+ }
467
+
468
+ /**
469
+ * @private
470
+ */
471
+ deserialize(params) {
472
+ if (!params) {
473
+ return;
474
+ }
475
+ this.TagKey = 'TagKey' in params ? params.TagKey : null;
476
+ this.TagValue = 'TagValue' in params ? params.TagValue : null;
477
+
478
+ }
479
+ }
480
+
396
481
  /**
397
482
  * DescribeBillSummary response structure.
398
483
  * @class
@@ -576,30 +661,18 @@ Note: This field may return null, indicating that no valid values can be obtaine
576
661
  }
577
662
 
578
663
  /**
579
- * Voucher information of a single customer
664
+ * QueryCreditByUinList request structure.
580
665
  * @class
581
666
  */
582
- class QueryVoucherListByUinItem extends AbstractModel {
667
+ class QueryCreditByUinListRequest extends AbstractModel {
583
668
  constructor(){
584
669
  super();
585
670
 
586
671
  /**
587
- * Customer UIN
588
- * @type {number || null}
589
- */
590
- this.ClientUin = null;
591
-
592
- /**
593
- * The total number of vouchers
594
- * @type {number || null}
595
- */
596
- this.TotalCount = null;
597
-
598
- /**
599
- * Voucher details
600
- * @type {Array.<QueryVoucherListByUinVoucherItem> || null}
672
+ * List of user. Array length value: 1-50.
673
+ * @type {Array.<number> || null}
601
674
  */
602
- this.Data = null;
675
+ this.UinList = null;
603
676
 
604
677
  }
605
678
 
@@ -610,17 +683,7 @@ class QueryVoucherListByUinItem extends AbstractModel {
610
683
  if (!params) {
611
684
  return;
612
685
  }
613
- this.ClientUin = 'ClientUin' in params ? params.ClientUin : null;
614
- this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
615
-
616
- if (params.Data) {
617
- this.Data = new Array();
618
- for (let z in params.Data) {
619
- let obj = new QueryVoucherListByUinVoucherItem();
620
- obj.deserialize(params.Data[z]);
621
- this.Data.push(obj);
622
- }
623
- }
686
+ this.UinList = 'UinList' in params ? params.UinList : null;
624
687
 
625
688
  }
626
689
  }
@@ -973,18 +1036,24 @@ class DescribeBillDetailRequest extends AbstractModel {
973
1036
  }
974
1037
 
975
1038
  /**
976
- * QueryCreditByUinList request structure.
1039
+ * CreateAndSendClientInvitationMail response structure.
977
1040
  * @class
978
1041
  */
979
- class QueryCreditByUinListRequest extends AbstractModel {
1042
+ class CreateAndSendClientInvitationMailResponse extends AbstractModel {
980
1043
  constructor(){
981
1044
  super();
982
1045
 
983
1046
  /**
984
- * List of user. Array length value: 1-50.
985
- * @type {Array.<number> || null}
1047
+ * Specifies the invitation link for the customer.
1048
+ * @type {string || null}
986
1049
  */
987
- this.UinList = null;
1050
+ this.InvitationLink = null;
1051
+
1052
+ /**
1053
+ * 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.
1054
+ * @type {string || null}
1055
+ */
1056
+ this.RequestId = null;
988
1057
 
989
1058
  }
990
1059
 
@@ -995,7 +1064,8 @@ class QueryCreditByUinListRequest extends AbstractModel {
995
1064
  if (!params) {
996
1065
  return;
997
1066
  }
998
- this.UinList = 'UinList' in params ? params.UinList : null;
1067
+ this.InvitationLink = 'InvitationLink' in params ? params.InvitationLink : null;
1068
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
999
1069
 
1000
1070
  }
1001
1071
  }
@@ -1710,24 +1780,24 @@ class DescribeCustomerUinResponse extends AbstractModel {
1710
1780
  }
1711
1781
 
1712
1782
  /**
1713
- * DescribeBillSummaryByRegion request structure.
1783
+ * DescribeBillDownloadUrl request structure.
1714
1784
  * @class
1715
1785
  */
1716
- class DescribeBillSummaryByRegionRequest extends AbstractModel {
1786
+ class DescribeBillDownloadUrlRequest extends AbstractModel {
1717
1787
  constructor(){
1718
1788
  super();
1719
1789
 
1720
1790
  /**
1721
- * Bill month in the format of "yyyy-MM"
1791
+ * Bill month in the format of "yyyy-mm"; the earliest month available for query is June, 2022. Current month's billing data may be inaccurate; please download the current month's bill after it is generated at 1:00 on the 5th of the next month.
1722
1792
  * @type {string || null}
1723
1793
  */
1724
- this.BillMonth = null;
1794
+ this.Month = null;
1725
1795
 
1726
1796
  /**
1727
- * Customer UIN
1728
- * @type {number || null}
1797
+ * Type of bill. Valid values: L2 or L3
1798
+ * @type {string || null}
1729
1799
  */
1730
- this.CustomerUin = null;
1800
+ this.FileType = null;
1731
1801
 
1732
1802
  }
1733
1803
 
@@ -1738,8 +1808,8 @@ class DescribeBillSummaryByRegionRequest extends AbstractModel {
1738
1808
  if (!params) {
1739
1809
  return;
1740
1810
  }
1741
- this.BillMonth = 'BillMonth' in params ? params.BillMonth : null;
1742
- this.CustomerUin = 'CustomerUin' in params ? params.CustomerUin : null;
1811
+ this.Month = 'Month' in params ? params.Month : null;
1812
+ this.FileType = 'FileType' in params ? params.FileType : null;
1743
1813
 
1744
1814
  }
1745
1815
  }
@@ -1780,24 +1850,24 @@ class ForceQNRequest extends AbstractModel {
1780
1850
  }
1781
1851
 
1782
1852
  /**
1783
- * Cost Allocation Tags
1853
+ * ModifyClientRemark request structure.
1784
1854
  * @class
1785
1855
  */
1786
- class TagInfo extends AbstractModel {
1856
+ class ModifyClientRemarkRequest extends AbstractModel {
1787
1857
  constructor(){
1788
1858
  super();
1789
1859
 
1790
1860
  /**
1791
- * Tag keyNote: This field may return null, indicating that no valid values can be obtained.
1861
+ * Customer UIN
1792
1862
  * @type {string || null}
1793
1863
  */
1794
- this.TagKey = null;
1864
+ this.ClientUin = null;
1795
1865
 
1796
1866
  /**
1797
- * Tag valueNote: This field may return null, indicating that no valid values can be obtained.
1867
+ * New customer remarks
1798
1868
  * @type {string || null}
1799
1869
  */
1800
- this.TagValue = null;
1870
+ this.Remark = null;
1801
1871
 
1802
1872
  }
1803
1873
 
@@ -1808,8 +1878,8 @@ class TagInfo extends AbstractModel {
1808
1878
  if (!params) {
1809
1879
  return;
1810
1880
  }
1811
- this.TagKey = 'TagKey' in params ? params.TagKey : null;
1812
- this.TagValue = 'TagValue' in params ? params.TagValue : null;
1881
+ this.ClientUin = 'ClientUin' in params ? params.ClientUin : null;
1882
+ this.Remark = 'Remark' in params ? params.Remark : null;
1813
1883
 
1814
1884
  }
1815
1885
  }
@@ -3209,24 +3279,24 @@ Note: This field may return null, indicating that no valid values can be obtaine
3209
3279
  }
3210
3280
 
3211
3281
  /**
3212
- * DescribeBillDownloadUrl request structure.
3282
+ * DescribeBillSummaryByRegion request structure.
3213
3283
  * @class
3214
3284
  */
3215
- class DescribeBillDownloadUrlRequest extends AbstractModel {
3285
+ class DescribeBillSummaryByRegionRequest extends AbstractModel {
3216
3286
  constructor(){
3217
3287
  super();
3218
3288
 
3219
3289
  /**
3220
- * Bill month in the format of "yyyy-mm"; the earliest month available for query is June, 2022. Current month's billing data may be inaccurate; please download the current month's bill after it is generated at 1:00 on the 5th of the next month.
3290
+ * Bill month in the format of "yyyy-MM"
3221
3291
  * @type {string || null}
3222
3292
  */
3223
- this.Month = null;
3293
+ this.BillMonth = null;
3224
3294
 
3225
3295
  /**
3226
- * Type of bill. Valid values: L2 or L3
3227
- * @type {string || null}
3296
+ * Customer UIN
3297
+ * @type {number || null}
3228
3298
  */
3229
- this.FileType = null;
3299
+ this.CustomerUin = null;
3230
3300
 
3231
3301
  }
3232
3302
 
@@ -3237,8 +3307,8 @@ class DescribeBillDownloadUrlRequest extends AbstractModel {
3237
3307
  if (!params) {
3238
3308
  return;
3239
3309
  }
3240
- this.Month = 'Month' in params ? params.Month : null;
3241
- this.FileType = 'FileType' in params ? params.FileType : null;
3310
+ this.BillMonth = 'BillMonth' in params ? params.BillMonth : null;
3311
+ this.CustomerUin = 'CustomerUin' in params ? params.CustomerUin : null;
3242
3312
 
3243
3313
  }
3244
3314
  }
@@ -3549,24 +3619,18 @@ class DescribeBillDownloadUrlResponse extends AbstractModel {
3549
3619
  }
3550
3620
 
3551
3621
  /**
3552
- * ModifyClientRemark request structure.
3622
+ * CreateAndSendClientInvitationMail request structure.
3553
3623
  * @class
3554
3624
  */
3555
- class ModifyClientRemarkRequest extends AbstractModel {
3625
+ class CreateAndSendClientInvitationMailRequest extends AbstractModel {
3556
3626
  constructor(){
3557
3627
  super();
3558
3628
 
3559
3629
  /**
3560
- * Customer UIN
3630
+ * Email address that receives the customer invitation link.
3561
3631
  * @type {string || null}
3562
3632
  */
3563
- this.ClientUin = null;
3564
-
3565
- /**
3566
- * New customer remarks
3567
- * @type {string || null}
3568
- */
3569
- this.Remark = null;
3633
+ this.Email = null;
3570
3634
 
3571
3635
  }
3572
3636
 
@@ -3577,8 +3641,7 @@ class ModifyClientRemarkRequest extends AbstractModel {
3577
3641
  if (!params) {
3578
3642
  return;
3579
3643
  }
3580
- this.ClientUin = 'ClientUin' in params ? params.ClientUin : null;
3581
- this.Remark = 'Remark' in params ? params.Remark : null;
3644
+ this.Email = 'Email' in params ? params.Email : null;
3582
3645
 
3583
3646
  }
3584
3647
  }
@@ -3986,12 +4049,14 @@ module.exports = {
3986
4049
  ForceQNResponse: ForceQNResponse,
3987
4050
  SendVerifyCodeResponse: SendVerifyCodeResponse,
3988
4051
  QueryVoucherAmountByUinItem: QueryVoucherAmountByUinItem,
4052
+ QueryVoucherListByUinItem: QueryVoucherListByUinItem,
3989
4053
  QueryCreditAllocationHistoryData: QueryCreditAllocationHistoryData,
4054
+ TagInfo: TagInfo,
3990
4055
  DescribeBillSummaryResponse: DescribeBillSummaryResponse,
3991
4056
  DescribeBillSummaryByPayModeResponse: DescribeBillSummaryByPayModeResponse,
3992
4057
  QueryCreditQuotaResponse: QueryCreditQuotaResponse,
3993
4058
  BusinessInfo: BusinessInfo,
3994
- QueryVoucherListByUinItem: QueryVoucherListByUinItem,
4059
+ QueryCreditByUinListRequest: QueryCreditByUinListRequest,
3995
4060
  DescribeBillSummaryByProductResponse: DescribeBillSummaryByProductResponse,
3996
4061
  QueryPartnerCreditRequest: QueryPartnerCreditRequest,
3997
4062
  AllocateCustomerCreditRequest: AllocateCustomerCreditRequest,
@@ -4000,7 +4065,7 @@ module.exports = {
4000
4065
  QueryCustomersCreditRequest: QueryCustomersCreditRequest,
4001
4066
  QueryPolicyProductListByCodeRequest: QueryPolicyProductListByCodeRequest,
4002
4067
  DescribeBillDetailRequest: DescribeBillDetailRequest,
4003
- QueryCreditByUinListRequest: QueryCreditByUinListRequest,
4068
+ CreateAndSendClientInvitationMailResponse: CreateAndSendClientInvitationMailResponse,
4004
4069
  CreateAccountResponse: CreateAccountResponse,
4005
4070
  QueryAccountVerificationStatusResponse: QueryAccountVerificationStatusResponse,
4006
4071
  RegionSummaryOverviewItem: RegionSummaryOverviewItem,
@@ -4012,9 +4077,9 @@ module.exports = {
4012
4077
  BusinessSummaryOverviewItem: BusinessSummaryOverviewItem,
4013
4078
  DescribeCustomerUinData: DescribeCustomerUinData,
4014
4079
  DescribeCustomerUinResponse: DescribeCustomerUinResponse,
4015
- DescribeBillSummaryByRegionRequest: DescribeBillSummaryByRegionRequest,
4080
+ DescribeBillDownloadUrlRequest: DescribeBillDownloadUrlRequest,
4016
4081
  ForceQNRequest: ForceQNRequest,
4017
- TagInfo: TagInfo,
4082
+ ModifyClientRemarkRequest: ModifyClientRemarkRequest,
4018
4083
  DescribeCustomerBillDetailRequest: DescribeCustomerBillDetailRequest,
4019
4084
  DescribeCustomerBillDetailResponse: DescribeCustomerBillDetailResponse,
4020
4085
  ModifyClientRemarkResponse: ModifyClientRemarkResponse,
@@ -4040,14 +4105,14 @@ module.exports = {
4040
4105
  QueryVoucherPoolResponse: QueryVoucherPoolResponse,
4041
4106
  QueryCreditAllocationHistoryRequest: QueryCreditAllocationHistoryRequest,
4042
4107
  QueryCustomersCreditResponse: QueryCustomersCreditResponse,
4043
- DescribeBillDownloadUrlRequest: DescribeBillDownloadUrlRequest,
4108
+ DescribeBillSummaryByRegionRequest: DescribeBillSummaryByRegionRequest,
4044
4109
  DescribeCustomerUinRequest: DescribeCustomerUinRequest,
4045
4110
  QueryVoucherListByUinResponse: QueryVoucherListByUinResponse,
4046
4111
  QueryVoucherPoolRequest: QueryVoucherPoolRequest,
4047
4112
  SummaryDetails: SummaryDetails,
4048
4113
  DescribeCustomerInfoData: DescribeCustomerInfoData,
4049
4114
  DescribeBillDownloadUrlResponse: DescribeBillDownloadUrlResponse,
4050
- ModifyClientRemarkRequest: ModifyClientRemarkRequest,
4115
+ CreateAndSendClientInvitationMailRequest: CreateAndSendClientInvitationMailRequest,
4051
4116
  PolicyProductList: PolicyProductList,
4052
4117
  PayModeSummaryOverviewItem: PayModeSummaryOverviewItem,
4053
4118
  QueryCustomersCreditData: QueryCustomersCreditData,
@@ -4093,7 +4093,7 @@ class InviteOrganizationMemberRequest extends AbstractModel {
4093
4093
  this.PolicyType = null;
4094
4094
 
4095
4095
  /**
4096
- * List of member financial permission IDs. Valid values: 1: View bills. 2: View balance. 3: Transfer funds. 4: Consolidate bills. 5: Issue invoice. 6: Inherit discounts. 7: Pay on behalf. 1 and 2 are required by default.
4096
+ * Member Finanace Authorization. Valid values: 1: View Bills. 2: View Balance. 4: Consolidate Bills. 5: Invoice. 6: Inherit Offer. 7: Pay On Behalf. 8: Cost Explorer. 9: Budget Management. 1 and 2 are required.
4097
4097
  * @type {Array.<number> || null}
4098
4098
  */
4099
4099
  this.PermissionIds = null;
@@ -7403,7 +7403,7 @@ class CreateOrganizationMemberRequest extends AbstractModel {
7403
7403
  this.PolicyType = null;
7404
7404
 
7405
7405
  /**
7406
- * List of member financial permission IDs. `7` indicates paying, which is the default value.
7406
+ * Member Finanace Authorization. Valid values: 1: View Bills. 2: View Balance. 4: Consolidate Bills. 5: Invoice. 6: Inherit Offer. 7: Pay On Behalf. 8: Cost Explorer. 9: Budget Management. 1, 2 and 7 are required.
7407
7407
  * @type {Array.<number> || null}
7408
7408
  */
7409
7409
  this.PermissionIds = null;