tencentcloud-sdk-nodejs-intl-en 3.0.933 → 3.0.935

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.933",
3
+ "version": "3.0.935",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.933";
1
+ const sdkVersion = "3.0.935";
2
2
  module.exports = sdkVersion
@@ -2473,6 +2473,12 @@ Example: HKIDCard
2473
2473
  */
2474
2474
  this.Language = null;
2475
2475
 
2476
+ /**
2477
+ * Automatic downgrade mode, with the following parameter values: 1: Downgrade to silent live mode; 2: Disable downgrade mode. The default value is 1.
2478
+ * @type {number || null}
2479
+ */
2480
+ this.AutoDowngrade = null;
2481
+
2476
2482
  }
2477
2483
 
2478
2484
  /**
@@ -2492,6 +2498,7 @@ Example: HKIDCard
2492
2498
  this.IdCardCutReturn = 'IdCardCutReturn' in params ? params.IdCardCutReturn : null;
2493
2499
  this.ThemeColor = 'ThemeColor' in params ? params.ThemeColor : null;
2494
2500
  this.Language = 'Language' in params ? params.Language : null;
2501
+ this.AutoDowngrade = 'AutoDowngrade' in params ? params.AutoDowngrade : null;
2495
2502
 
2496
2503
  }
2497
2504
  }
@@ -52,6 +52,7 @@ const QueryVoucherPoolResponse = models.QueryVoucherPoolResponse;
52
52
  const TagInfo = models.TagInfo;
53
53
  const DescribeCustomerBillDetailRequest = models.DescribeCustomerBillDetailRequest;
54
54
  const DescribeCustomerBillDetailResponse = models.DescribeCustomerBillDetailResponse;
55
+ const ModifyClientRemarkResponse = models.ModifyClientRemarkResponse;
55
56
  const QueryAccountVerificationStatusRequest = models.QueryAccountVerificationStatusRequest;
56
57
  const QueryCreditAllocationHistoryResponse = models.QueryCreditAllocationHistoryResponse;
57
58
  const CreateAccountRequest = models.CreateAccountRequest;
@@ -62,6 +63,7 @@ const DescribeCustomerInfoRequest = models.DescribeCustomerInfoRequest;
62
63
  const QueryCreditQuotaRequest = models.QueryCreditQuotaRequest;
63
64
  const AllocateCustomerCreditResponse = models.AllocateCustomerCreditResponse;
64
65
  const QueryVoucherListByUinVoucherItem = models.QueryVoucherListByUinVoucherItem;
66
+ const ModifyClientRemarkRequest = models.ModifyClientRemarkRequest;
65
67
  const DescribeBillSummaryByProductRequest = models.DescribeBillSummaryByProductRequest;
66
68
  const QueryDirectCustomersCreditData = models.QueryDirectCustomersCreditData;
67
69
  const GetCountryCodesRequest = models.GetCountryCodesRequest;
@@ -93,14 +95,14 @@ class IntlpartnersmgtClient extends AbstractClient {
93
95
  }
94
96
 
95
97
  /**
96
- * This API is used to query the voucher list based on the customer UIN.
97
- * @param {QueryVoucherListByUinRequest} req
98
- * @param {function(string, QueryVoucherListByUinResponse):void} cb
98
+ * This API is used to query the list of customer UINs.
99
+ * @param {DescribeCustomerUinRequest} req
100
+ * @param {function(string, DescribeCustomerUinResponse):void} cb
99
101
  * @public
100
102
  */
101
- QueryVoucherListByUin(req, cb) {
102
- let resp = new QueryVoucherListByUinResponse();
103
- this.request("QueryVoucherListByUin", req, resp, cb);
103
+ DescribeCustomerUin(req, cb) {
104
+ let resp = new DescribeCustomerUinResponse();
105
+ this.request("DescribeCustomerUin", req, resp, cb);
104
106
  }
105
107
 
106
108
  /**
@@ -129,6 +131,17 @@ class IntlpartnersmgtClient extends AbstractClient {
129
131
  this.request("GetCountryCodes", req, resp, cb);
130
132
  }
131
133
 
134
+ /**
135
+ * This API is used to modify customer remarks.
136
+ * @param {ModifyClientRemarkRequest} req
137
+ * @param {function(string, ModifyClientRemarkResponse):void} cb
138
+ * @public
139
+ */
140
+ ModifyClientRemark(req, cb) {
141
+ let resp = new ModifyClientRemarkResponse();
142
+ this.request("ModifyClientRemark", req, resp, cb);
143
+ }
144
+
132
145
  /**
133
146
  * This API is used for a partner to query its own total credit, available credit, and used credit in USD.
134
147
  * @param {QueryPartnerCreditRequest} req
@@ -163,14 +176,14 @@ class IntlpartnersmgtClient extends AbstractClient {
163
176
  }
164
177
 
165
178
  /**
166
- * This API is used to query the list of customer UINs.
167
- * @param {DescribeCustomerUinRequest} req
168
- * @param {function(string, DescribeCustomerUinResponse):void} cb
179
+ * This API is used to query the voucher list based on the customer UIN.
180
+ * @param {QueryVoucherListByUinRequest} req
181
+ * @param {function(string, QueryVoucherListByUinResponse):void} cb
169
182
  * @public
170
183
  */
171
- DescribeCustomerUin(req, cb) {
172
- let resp = new DescribeCustomerUinResponse();
173
- this.request("DescribeCustomerUin", req, resp, cb);
184
+ QueryVoucherListByUin(req, cb) {
185
+ let resp = new QueryVoucherListByUinResponse();
186
+ this.request("QueryVoucherListByUin", req, resp, cb);
174
187
  }
175
188
 
176
189
  /**
@@ -1912,6 +1912,41 @@ Note: This field may return null, indicating that no valid values can be obtaine
1912
1912
  }
1913
1913
  }
1914
1914
 
1915
+ /**
1916
+ * ModifyClientRemark response structure.
1917
+ * @class
1918
+ */
1919
+ class ModifyClientRemarkResponse extends AbstractModel {
1920
+ constructor(){
1921
+ super();
1922
+
1923
+ /**
1924
+ * If successful, returns the new customer remarks
1925
+ * @type {string || null}
1926
+ */
1927
+ this.ClientRemark = null;
1928
+
1929
+ /**
1930
+ * 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.
1931
+ * @type {string || null}
1932
+ */
1933
+ this.RequestId = null;
1934
+
1935
+ }
1936
+
1937
+ /**
1938
+ * @private
1939
+ */
1940
+ deserialize(params) {
1941
+ if (!params) {
1942
+ return;
1943
+ }
1944
+ this.ClientRemark = 'ClientRemark' in params ? params.ClientRemark : null;
1945
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
1946
+
1947
+ }
1948
+ }
1949
+
1915
1950
  /**
1916
1951
  * QueryAccountVerificationStatus request structure.
1917
1952
  * @class
@@ -2351,6 +2386,41 @@ class QueryVoucherListByUinVoucherItem extends AbstractModel {
2351
2386
  }
2352
2387
  }
2353
2388
 
2389
+ /**
2390
+ * ModifyClientRemark request structure.
2391
+ * @class
2392
+ */
2393
+ class ModifyClientRemarkRequest extends AbstractModel {
2394
+ constructor(){
2395
+ super();
2396
+
2397
+ /**
2398
+ * Customer UIN
2399
+ * @type {string || null}
2400
+ */
2401
+ this.ClientUin = null;
2402
+
2403
+ /**
2404
+ * New customer remarks
2405
+ * @type {string || null}
2406
+ */
2407
+ this.Remark = null;
2408
+
2409
+ }
2410
+
2411
+ /**
2412
+ * @private
2413
+ */
2414
+ deserialize(params) {
2415
+ if (!params) {
2416
+ return;
2417
+ }
2418
+ this.ClientUin = 'ClientUin' in params ? params.ClientUin : null;
2419
+ this.Remark = 'Remark' in params ? params.Remark : null;
2420
+
2421
+ }
2422
+ }
2423
+
2354
2424
  /**
2355
2425
  * DescribeBillSummaryByProduct request structure.
2356
2426
  * @class
@@ -3515,6 +3585,7 @@ module.exports = {
3515
3585
  TagInfo: TagInfo,
3516
3586
  DescribeCustomerBillDetailRequest: DescribeCustomerBillDetailRequest,
3517
3587
  DescribeCustomerBillDetailResponse: DescribeCustomerBillDetailResponse,
3588
+ ModifyClientRemarkResponse: ModifyClientRemarkResponse,
3518
3589
  QueryAccountVerificationStatusRequest: QueryAccountVerificationStatusRequest,
3519
3590
  QueryCreditAllocationHistoryResponse: QueryCreditAllocationHistoryResponse,
3520
3591
  CreateAccountRequest: CreateAccountRequest,
@@ -3525,6 +3596,7 @@ module.exports = {
3525
3596
  QueryCreditQuotaRequest: QueryCreditQuotaRequest,
3526
3597
  AllocateCustomerCreditResponse: AllocateCustomerCreditResponse,
3527
3598
  QueryVoucherListByUinVoucherItem: QueryVoucherListByUinVoucherItem,
3599
+ ModifyClientRemarkRequest: ModifyClientRemarkRequest,
3528
3600
  DescribeBillSummaryByProductRequest: DescribeBillSummaryByProductRequest,
3529
3601
  QueryDirectCustomersCreditData: QueryDirectCustomersCreditData,
3530
3602
  GetCountryCodesRequest: GetCountryCodesRequest,
@@ -1,3 +1,3 @@
1
1
  module.exports = {
2
- v20210111: require("./v20210111"), v20190711: require("./v20190711"),
2
+ v20190711: require("./v20190711"), v20210111: require("./v20210111"),
3
3
  };
@@ -1,3 +1,3 @@
1
1
  module.exports = {
2
- v20201221: require("./v20201221"), v20210701: require("./v20210701"),
2
+ v20210701: require("./v20210701"), v20201221: require("./v20201221"),
3
3
  };
@@ -1,3 +1,3 @@
1
1
  module.exports = {
2
- v20220106: require("./v20220106"), v20220901: require("./v20220901"),
2
+ v20220901: require("./v20220901"), v20220106: require("./v20220106"),
3
3
  };