tencentcloud-sdk-nodejs-intl-en 3.0.1365 → 3.0.1367
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/as/v20180419/as_client.js +3 -3
- package/tencentcloud/as/v20180419/models.js +1 -1
- package/tencentcloud/ciam/index.js +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/cynosdb/v20190107/models.js +75 -94
- package/tencentcloud/dbbrain/index.js +1 -1
- package/tencentcloud/dlc/v20210125/dlc_client.js +15 -2
- package/tencentcloud/dlc/v20210125/models.js +272 -169
- package/tencentcloud/faceid/v20180301/faceid_client.js +28 -2
- package/tencentcloud/faceid/v20180301/models.js +294 -27
- package/tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.js +86 -54
- package/tencentcloud/intlpartnersmgt/v20220928/models.js +976 -268
- package/tencentcloud/ocr/v20181119/models.js +12720 -37
- package/tencentcloud/ocr/v20181119/ocr_client.js +1157 -0
- package/tencentcloud/organization/index.js +1 -1
- package/tencentcloud/sms/index.js +1 -1
- package/tencentcloud/tdmysql/v20211122/models.js +6027 -896
- package/tencentcloud/tdmysql/v20211122/tdmysql_client.js +376 -111
- package/tencentcloud/tke/index.js +1 -1
- package/tencentcloud/vm/index.js +1 -1
- package/tencentcloud/vod/index.js +1 -1
- package/tencentcloud/wedata/index.js +1 -1
- package/tencentcloud/wedata/v20210820/models.js +2 -2
|
@@ -335,18 +335,18 @@ class DescribeCustomerOwnVoucherListRequest extends AbstractModel {
|
|
|
335
335
|
}
|
|
336
336
|
|
|
337
337
|
/**
|
|
338
|
-
*
|
|
338
|
+
* GetCountryCodes response structure.
|
|
339
339
|
* @class
|
|
340
340
|
*/
|
|
341
|
-
class
|
|
341
|
+
class GetCountryCodesResponse extends AbstractModel {
|
|
342
342
|
constructor(){
|
|
343
343
|
super();
|
|
344
344
|
|
|
345
345
|
/**
|
|
346
|
-
*
|
|
347
|
-
* @type {
|
|
346
|
+
* List of country/region codes
|
|
347
|
+
* @type {Array.<CountryCodeItem> || null}
|
|
348
348
|
*/
|
|
349
|
-
this.
|
|
349
|
+
this.Data = null;
|
|
350
350
|
|
|
351
351
|
/**
|
|
352
352
|
* 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.
|
|
@@ -363,7 +363,15 @@ class DescribeCustomerBillSummaryResponse extends AbstractModel {
|
|
|
363
363
|
if (!params) {
|
|
364
364
|
return;
|
|
365
365
|
}
|
|
366
|
-
|
|
366
|
+
|
|
367
|
+
if (params.Data) {
|
|
368
|
+
this.Data = new Array();
|
|
369
|
+
for (let z in params.Data) {
|
|
370
|
+
let obj = new CountryCodeItem();
|
|
371
|
+
obj.deserialize(params.Data[z]);
|
|
372
|
+
this.Data.push(obj);
|
|
373
|
+
}
|
|
374
|
+
}
|
|
367
375
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
368
376
|
|
|
369
377
|
}
|
|
@@ -804,6 +812,46 @@ class DescribeBillSummaryByRegionRequest extends AbstractModel {
|
|
|
804
812
|
}
|
|
805
813
|
}
|
|
806
814
|
|
|
815
|
+
/**
|
|
816
|
+
* DescribeCustomerOwnCostExplorerFilter response structure.
|
|
817
|
+
* @class
|
|
818
|
+
*/
|
|
819
|
+
class DescribeCustomerOwnCostExplorerFilterResponse extends AbstractModel {
|
|
820
|
+
constructor(){
|
|
821
|
+
super();
|
|
822
|
+
|
|
823
|
+
/**
|
|
824
|
+
* <p>Filter information</p>
|
|
825
|
+
* @type {CostAnalyzeFilterDetail || null}
|
|
826
|
+
*/
|
|
827
|
+
this.Data = null;
|
|
828
|
+
|
|
829
|
+
/**
|
|
830
|
+
* 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.
|
|
831
|
+
* @type {string || null}
|
|
832
|
+
*/
|
|
833
|
+
this.RequestId = null;
|
|
834
|
+
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
/**
|
|
838
|
+
* @private
|
|
839
|
+
*/
|
|
840
|
+
deserialize(params) {
|
|
841
|
+
if (!params) {
|
|
842
|
+
return;
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
if (params.Data) {
|
|
846
|
+
let obj = new CostAnalyzeFilterDetail();
|
|
847
|
+
obj.deserialize(params.Data)
|
|
848
|
+
this.Data = obj;
|
|
849
|
+
}
|
|
850
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
851
|
+
|
|
852
|
+
}
|
|
853
|
+
}
|
|
854
|
+
|
|
807
855
|
/**
|
|
808
856
|
* DescribeCustomerBillDetail request structure.
|
|
809
857
|
* @class
|
|
@@ -1169,6 +1217,185 @@ class QueryDirectCustomersCreditRequest extends AbstractModel {
|
|
|
1169
1217
|
}
|
|
1170
1218
|
}
|
|
1171
1219
|
|
|
1220
|
+
/**
|
|
1221
|
+
* Cost analysis filter input
|
|
1222
|
+
* @class
|
|
1223
|
+
*/
|
|
1224
|
+
class CostAnalyzeFilter extends AbstractModel {
|
|
1225
|
+
constructor(){
|
|
1226
|
+
super();
|
|
1227
|
+
|
|
1228
|
+
/**
|
|
1229
|
+
* <p>Contains product code</p>
|
|
1230
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1231
|
+
* @type {Array.<string> || null}
|
|
1232
|
+
*/
|
|
1233
|
+
this.BusinessIn = null;
|
|
1234
|
+
|
|
1235
|
+
/**
|
|
1236
|
+
* <p>Contains sub-product code</p>
|
|
1237
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1238
|
+
* @type {Array.<string> || null}
|
|
1239
|
+
*/
|
|
1240
|
+
this.ProductIn = null;
|
|
1241
|
+
|
|
1242
|
+
/**
|
|
1243
|
+
* <p>Contains region id</p>
|
|
1244
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1245
|
+
* @type {Array.<string> || null}
|
|
1246
|
+
*/
|
|
1247
|
+
this.RegionIn = null;
|
|
1248
|
+
|
|
1249
|
+
/**
|
|
1250
|
+
* <p>Contains transaction type</p>
|
|
1251
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1252
|
+
* @type {Array.<string> || null}
|
|
1253
|
+
*/
|
|
1254
|
+
this.ActionTypeIn = null;
|
|
1255
|
+
|
|
1256
|
+
/**
|
|
1257
|
+
* <p>Includes payment mode</p>
|
|
1258
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1259
|
+
* @type {Array.<string> || null}
|
|
1260
|
+
*/
|
|
1261
|
+
this.PayModeIn = null;
|
|
1262
|
+
|
|
1263
|
+
/**
|
|
1264
|
+
* <p>Include project name</p>
|
|
1265
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1266
|
+
* @type {Array.<string> || null}
|
|
1267
|
+
*/
|
|
1268
|
+
this.ProjectIn = null;
|
|
1269
|
+
|
|
1270
|
+
/**
|
|
1271
|
+
* <p>Contains payer uin</p>
|
|
1272
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1273
|
+
* @type {Array.<string> || null}
|
|
1274
|
+
*/
|
|
1275
|
+
this.PayerUinIn = null;
|
|
1276
|
+
|
|
1277
|
+
/**
|
|
1278
|
+
* <p>Tag key.</p>
|
|
1279
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1280
|
+
* @type {string || null}
|
|
1281
|
+
*/
|
|
1282
|
+
this.TagKey = null;
|
|
1283
|
+
|
|
1284
|
+
/**
|
|
1285
|
+
* <p>Tag value list</p>
|
|
1286
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1287
|
+
* @type {Array.<string> || null}
|
|
1288
|
+
*/
|
|
1289
|
+
this.TagIn = null;
|
|
1290
|
+
|
|
1291
|
+
/**
|
|
1292
|
+
* <p>Contains availability zones</p>
|
|
1293
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1294
|
+
* @type {Array.<string> || null}
|
|
1295
|
+
*/
|
|
1296
|
+
this.ZoneIn = null;
|
|
1297
|
+
|
|
1298
|
+
/**
|
|
1299
|
+
* <p>Owner uin</p>
|
|
1300
|
+
* @type {Array.<string> || null}
|
|
1301
|
+
*/
|
|
1302
|
+
this.OwnerUinIn = null;
|
|
1303
|
+
|
|
1304
|
+
/**
|
|
1305
|
+
* <p>Component type info</p>
|
|
1306
|
+
* @type {Array.<string> || null}
|
|
1307
|
+
*/
|
|
1308
|
+
this.ComponentIn = null;
|
|
1309
|
+
|
|
1310
|
+
/**
|
|
1311
|
+
* <p>Component name</p>
|
|
1312
|
+
* @type {Array.<string> || null}
|
|
1313
|
+
*/
|
|
1314
|
+
this.ItemIn = null;
|
|
1315
|
+
|
|
1316
|
+
/**
|
|
1317
|
+
* <p>Resource id information</p>
|
|
1318
|
+
* @type {Array.<string> || null}
|
|
1319
|
+
*/
|
|
1320
|
+
this.ResourceIn = null;
|
|
1321
|
+
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
/**
|
|
1325
|
+
* @private
|
|
1326
|
+
*/
|
|
1327
|
+
deserialize(params) {
|
|
1328
|
+
if (!params) {
|
|
1329
|
+
return;
|
|
1330
|
+
}
|
|
1331
|
+
this.BusinessIn = 'BusinessIn' in params ? params.BusinessIn : null;
|
|
1332
|
+
this.ProductIn = 'ProductIn' in params ? params.ProductIn : null;
|
|
1333
|
+
this.RegionIn = 'RegionIn' in params ? params.RegionIn : null;
|
|
1334
|
+
this.ActionTypeIn = 'ActionTypeIn' in params ? params.ActionTypeIn : null;
|
|
1335
|
+
this.PayModeIn = 'PayModeIn' in params ? params.PayModeIn : null;
|
|
1336
|
+
this.ProjectIn = 'ProjectIn' in params ? params.ProjectIn : null;
|
|
1337
|
+
this.PayerUinIn = 'PayerUinIn' in params ? params.PayerUinIn : null;
|
|
1338
|
+
this.TagKey = 'TagKey' in params ? params.TagKey : null;
|
|
1339
|
+
this.TagIn = 'TagIn' in params ? params.TagIn : null;
|
|
1340
|
+
this.ZoneIn = 'ZoneIn' in params ? params.ZoneIn : null;
|
|
1341
|
+
this.OwnerUinIn = 'OwnerUinIn' in params ? params.OwnerUinIn : null;
|
|
1342
|
+
this.ComponentIn = 'ComponentIn' in params ? params.ComponentIn : null;
|
|
1343
|
+
this.ItemIn = 'ItemIn' in params ? params.ItemIn : null;
|
|
1344
|
+
this.ResourceIn = 'ResourceIn' in params ? params.ResourceIn : null;
|
|
1345
|
+
|
|
1346
|
+
}
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
/**
|
|
1350
|
+
* Cost analysis dimension data
|
|
1351
|
+
* @class
|
|
1352
|
+
*/
|
|
1353
|
+
class CostAnalyzeDimensionData extends AbstractModel {
|
|
1354
|
+
constructor(){
|
|
1355
|
+
super();
|
|
1356
|
+
|
|
1357
|
+
/**
|
|
1358
|
+
* <p>Total number of entries by dimension statistics</p>
|
|
1359
|
+
* @type {number || null}
|
|
1360
|
+
*/
|
|
1361
|
+
this.TotalCount = null;
|
|
1362
|
+
|
|
1363
|
+
/**
|
|
1364
|
+
* <p>Sum value</p>
|
|
1365
|
+
* @type {string || null}
|
|
1366
|
+
*/
|
|
1367
|
+
this.SumCost = null;
|
|
1368
|
+
|
|
1369
|
+
/**
|
|
1370
|
+
* <p>Total amount by date dimension</p>
|
|
1371
|
+
* @type {Array.<PeriodItemDetail> || null}
|
|
1372
|
+
*/
|
|
1373
|
+
this.PeriodItemDetail = null;
|
|
1374
|
+
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
/**
|
|
1378
|
+
* @private
|
|
1379
|
+
*/
|
|
1380
|
+
deserialize(params) {
|
|
1381
|
+
if (!params) {
|
|
1382
|
+
return;
|
|
1383
|
+
}
|
|
1384
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
1385
|
+
this.SumCost = 'SumCost' in params ? params.SumCost : null;
|
|
1386
|
+
|
|
1387
|
+
if (params.PeriodItemDetail) {
|
|
1388
|
+
this.PeriodItemDetail = new Array();
|
|
1389
|
+
for (let z in params.PeriodItemDetail) {
|
|
1390
|
+
let obj = new PeriodItemDetail();
|
|
1391
|
+
obj.deserialize(params.PeriodItemDetail[z]);
|
|
1392
|
+
this.PeriodItemDetail.push(obj);
|
|
1393
|
+
}
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
}
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1172
1399
|
/**
|
|
1173
1400
|
* Sub-customer credit balance data
|
|
1174
1401
|
* @class
|
|
@@ -1311,24 +1538,24 @@ class DescribeBillSummaryByProductRequest extends AbstractModel {
|
|
|
1311
1538
|
}
|
|
1312
1539
|
|
|
1313
1540
|
/**
|
|
1314
|
-
*
|
|
1541
|
+
* DescribeBillDownloadUrl request structure.
|
|
1315
1542
|
* @class
|
|
1316
1543
|
*/
|
|
1317
|
-
class
|
|
1544
|
+
class DescribeBillDownloadUrlRequest extends AbstractModel {
|
|
1318
1545
|
constructor(){
|
|
1319
1546
|
super();
|
|
1320
1547
|
|
|
1321
1548
|
/**
|
|
1322
|
-
*
|
|
1549
|
+
* The month to which the bill belongs, formatted as 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.
|
|
1323
1550
|
* @type {string || null}
|
|
1324
1551
|
*/
|
|
1325
|
-
this.
|
|
1552
|
+
this.Month = null;
|
|
1326
1553
|
|
|
1327
1554
|
/**
|
|
1328
|
-
*
|
|
1555
|
+
* Type of bill. Valid values: L2 or L3
|
|
1329
1556
|
* @type {string || null}
|
|
1330
1557
|
*/
|
|
1331
|
-
this.
|
|
1558
|
+
this.FileType = null;
|
|
1332
1559
|
|
|
1333
1560
|
}
|
|
1334
1561
|
|
|
@@ -1339,8 +1566,8 @@ class ModifyClientRemarkResponse extends AbstractModel {
|
|
|
1339
1566
|
if (!params) {
|
|
1340
1567
|
return;
|
|
1341
1568
|
}
|
|
1342
|
-
this.
|
|
1343
|
-
this.
|
|
1569
|
+
this.Month = 'Month' in params ? params.Month : null;
|
|
1570
|
+
this.FileType = 'FileType' in params ? params.FileType : null;
|
|
1344
1571
|
|
|
1345
1572
|
}
|
|
1346
1573
|
}
|
|
@@ -1825,6 +2052,76 @@ class QueryPendingSubAgentsV2ResponseData extends AbstractModel {
|
|
|
1825
2052
|
}
|
|
1826
2053
|
}
|
|
1827
2054
|
|
|
2055
|
+
/**
|
|
2056
|
+
* Pending review sub-customer
|
|
2057
|
+
* @class
|
|
2058
|
+
*/
|
|
2059
|
+
class QueryPendingCustomersItem extends AbstractModel {
|
|
2060
|
+
constructor(){
|
|
2061
|
+
super();
|
|
2062
|
+
|
|
2063
|
+
/**
|
|
2064
|
+
* Application time.
|
|
2065
|
+
* @type {string || null}
|
|
2066
|
+
*/
|
|
2067
|
+
this.ApplyTime = null;
|
|
2068
|
+
|
|
2069
|
+
/**
|
|
2070
|
+
* Sub-Account uin.
|
|
2071
|
+
* @type {number || null}
|
|
2072
|
+
*/
|
|
2073
|
+
this.ClientUin = null;
|
|
2074
|
+
|
|
2075
|
+
/**
|
|
2076
|
+
* Email.
|
|
2077
|
+
* @type {string || null}
|
|
2078
|
+
*/
|
|
2079
|
+
this.Email = null;
|
|
2080
|
+
|
|
2081
|
+
/**
|
|
2082
|
+
* Mobile number.
|
|
2083
|
+
* @type {string || null}
|
|
2084
|
+
*/
|
|
2085
|
+
this.Mobile = null;
|
|
2086
|
+
|
|
2087
|
+
/**
|
|
2088
|
+
* Name.
|
|
2089
|
+
* @type {string || null}
|
|
2090
|
+
*/
|
|
2091
|
+
this.Name = null;
|
|
2092
|
+
|
|
2093
|
+
/**
|
|
2094
|
+
* Approval status.
|
|
2095
|
+
* @type {string || null}
|
|
2096
|
+
*/
|
|
2097
|
+
this.Status = null;
|
|
2098
|
+
|
|
2099
|
+
/**
|
|
2100
|
+
* Sub-Customer type.
|
|
2101
|
+
* @type {string || null}
|
|
2102
|
+
*/
|
|
2103
|
+
this.Type = null;
|
|
2104
|
+
|
|
2105
|
+
}
|
|
2106
|
+
|
|
2107
|
+
/**
|
|
2108
|
+
* @private
|
|
2109
|
+
*/
|
|
2110
|
+
deserialize(params) {
|
|
2111
|
+
if (!params) {
|
|
2112
|
+
return;
|
|
2113
|
+
}
|
|
2114
|
+
this.ApplyTime = 'ApplyTime' in params ? params.ApplyTime : null;
|
|
2115
|
+
this.ClientUin = 'ClientUin' in params ? params.ClientUin : null;
|
|
2116
|
+
this.Email = 'Email' in params ? params.Email : null;
|
|
2117
|
+
this.Mobile = 'Mobile' in params ? params.Mobile : null;
|
|
2118
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
2119
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
2120
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
2121
|
+
|
|
2122
|
+
}
|
|
2123
|
+
}
|
|
2124
|
+
|
|
1828
2125
|
/**
|
|
1829
2126
|
* ApproveSubAgentApply response structure.
|
|
1830
2127
|
* @class
|
|
@@ -2067,24 +2364,36 @@ class DescribeCustomerOwnVoucherListResponse extends AbstractModel {
|
|
|
2067
2364
|
}
|
|
2068
2365
|
|
|
2069
2366
|
/**
|
|
2070
|
-
*
|
|
2367
|
+
* DescribeCustomerOwnCostExplorerSummary response structure.
|
|
2071
2368
|
* @class
|
|
2072
2369
|
*/
|
|
2073
|
-
class
|
|
2370
|
+
class DescribeCustomerOwnCostExplorerSummaryResponse extends AbstractModel {
|
|
2074
2371
|
constructor(){
|
|
2075
2372
|
super();
|
|
2076
2373
|
|
|
2077
2374
|
/**
|
|
2078
|
-
*
|
|
2375
|
+
* <p>Classification dimension</p>
|
|
2079
2376
|
* @type {string || null}
|
|
2080
2377
|
*/
|
|
2081
|
-
this.
|
|
2378
|
+
this.DimensionName = null;
|
|
2082
2379
|
|
|
2083
2380
|
/**
|
|
2084
|
-
*
|
|
2381
|
+
* <p>Details</p>
|
|
2382
|
+
* @type {Array.<DimensionPeriodData> || null}
|
|
2383
|
+
*/
|
|
2384
|
+
this.Detail = null;
|
|
2385
|
+
|
|
2386
|
+
/**
|
|
2387
|
+
* <p>Classification dimension statistics</p>
|
|
2388
|
+
* @type {CostAnalyzeDimensionData || null}
|
|
2389
|
+
*/
|
|
2390
|
+
this.TotalDetail = null;
|
|
2391
|
+
|
|
2392
|
+
/**
|
|
2393
|
+
* 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.
|
|
2085
2394
|
* @type {string || null}
|
|
2086
2395
|
*/
|
|
2087
|
-
this.
|
|
2396
|
+
this.RequestId = null;
|
|
2088
2397
|
|
|
2089
2398
|
}
|
|
2090
2399
|
|
|
@@ -2095,31 +2404,121 @@ class DescribeBillDownloadUrlRequest extends AbstractModel {
|
|
|
2095
2404
|
if (!params) {
|
|
2096
2405
|
return;
|
|
2097
2406
|
}
|
|
2098
|
-
this.
|
|
2099
|
-
|
|
2407
|
+
this.DimensionName = 'DimensionName' in params ? params.DimensionName : null;
|
|
2408
|
+
|
|
2409
|
+
if (params.Detail) {
|
|
2410
|
+
this.Detail = new Array();
|
|
2411
|
+
for (let z in params.Detail) {
|
|
2412
|
+
let obj = new DimensionPeriodData();
|
|
2413
|
+
obj.deserialize(params.Detail[z]);
|
|
2414
|
+
this.Detail.push(obj);
|
|
2415
|
+
}
|
|
2416
|
+
}
|
|
2417
|
+
|
|
2418
|
+
if (params.TotalDetail) {
|
|
2419
|
+
let obj = new CostAnalyzeDimensionData();
|
|
2420
|
+
obj.deserialize(params.TotalDetail)
|
|
2421
|
+
this.TotalDetail = obj;
|
|
2422
|
+
}
|
|
2423
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2100
2424
|
|
|
2101
2425
|
}
|
|
2102
2426
|
}
|
|
2103
2427
|
|
|
2104
2428
|
/**
|
|
2105
|
-
*
|
|
2429
|
+
* ModifyClientRemark response structure.
|
|
2106
2430
|
* @class
|
|
2107
2431
|
*/
|
|
2108
|
-
class
|
|
2432
|
+
class ModifyClientRemarkResponse extends AbstractModel {
|
|
2109
2433
|
constructor(){
|
|
2110
2434
|
super();
|
|
2111
2435
|
|
|
2112
2436
|
/**
|
|
2113
|
-
*
|
|
2437
|
+
* If successful, returns the new customer remarks
|
|
2114
2438
|
* @type {string || null}
|
|
2115
2439
|
*/
|
|
2116
|
-
this.
|
|
2440
|
+
this.ClientRemark = null;
|
|
2117
2441
|
|
|
2118
2442
|
/**
|
|
2119
|
-
*
|
|
2443
|
+
* 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.
|
|
2444
|
+
* @type {string || null}
|
|
2445
|
+
*/
|
|
2446
|
+
this.RequestId = null;
|
|
2447
|
+
|
|
2448
|
+
}
|
|
2449
|
+
|
|
2450
|
+
/**
|
|
2451
|
+
* @private
|
|
2452
|
+
*/
|
|
2453
|
+
deserialize(params) {
|
|
2454
|
+
if (!params) {
|
|
2455
|
+
return;
|
|
2456
|
+
}
|
|
2457
|
+
this.ClientRemark = 'ClientRemark' in params ? params.ClientRemark : null;
|
|
2458
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2459
|
+
|
|
2460
|
+
}
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2463
|
+
/**
|
|
2464
|
+
* Invitation link information.
|
|
2465
|
+
* @class
|
|
2466
|
+
*/
|
|
2467
|
+
class QueryInvitationInfoData extends AbstractModel {
|
|
2468
|
+
constructor(){
|
|
2469
|
+
super();
|
|
2470
|
+
|
|
2471
|
+
/**
|
|
2472
|
+
* Invitation link token.
|
|
2473
|
+
* @type {string || null}
|
|
2474
|
+
*/
|
|
2475
|
+
this.InvitationToken = null;
|
|
2476
|
+
|
|
2477
|
+
/**
|
|
2478
|
+
* Creation time of the invitation link.
|
|
2479
|
+
* @type {string || null}
|
|
2480
|
+
*/
|
|
2481
|
+
this.CreateTime = null;
|
|
2482
|
+
|
|
2483
|
+
/**
|
|
2484
|
+
* Invite link status.
|
|
2485
|
+
1: Unused.
|
|
2486
|
+
2: Used.
|
|
2120
2487
|
* @type {number || null}
|
|
2121
2488
|
*/
|
|
2122
|
-
this.
|
|
2489
|
+
this.Status = null;
|
|
2490
|
+
|
|
2491
|
+
/**
|
|
2492
|
+
* Indicates the usage time of the invitation link.
|
|
2493
|
+
* @type {string || null}
|
|
2494
|
+
*/
|
|
2495
|
+
this.UseTime = null;
|
|
2496
|
+
|
|
2497
|
+
/**
|
|
2498
|
+
* Customer uin.
|
|
2499
|
+
* @type {number || null}
|
|
2500
|
+
*/
|
|
2501
|
+
this.ClientUin = null;
|
|
2502
|
+
|
|
2503
|
+
/**
|
|
2504
|
+
* Customer mailbox.
|
|
2505
|
+
* @type {string || null}
|
|
2506
|
+
*/
|
|
2507
|
+
this.ClientMail = null;
|
|
2508
|
+
|
|
2509
|
+
/**
|
|
2510
|
+
* Customer type.
|
|
2511
|
+
1: Second-Level reseller.
|
|
2512
|
+
2: Sub-Customer.
|
|
2513
|
+
* @type {number || null}
|
|
2514
|
+
*/
|
|
2515
|
+
this.ClientType = null;
|
|
2516
|
+
|
|
2517
|
+
/**
|
|
2518
|
+
* The binding time of the customer.
|
|
2519
|
+
* @type {string || null}
|
|
2520
|
+
*/
|
|
2521
|
+
this.BindTime = null;
|
|
2123
2522
|
|
|
2124
2523
|
}
|
|
2125
2524
|
|
|
@@ -2130,8 +2529,14 @@ class DescribeBillSummaryByPayModeRequest extends AbstractModel {
|
|
|
2130
2529
|
if (!params) {
|
|
2131
2530
|
return;
|
|
2132
2531
|
}
|
|
2133
|
-
this.
|
|
2134
|
-
this.
|
|
2532
|
+
this.InvitationToken = 'InvitationToken' in params ? params.InvitationToken : null;
|
|
2533
|
+
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
2534
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
2535
|
+
this.UseTime = 'UseTime' in params ? params.UseTime : null;
|
|
2536
|
+
this.ClientUin = 'ClientUin' in params ? params.ClientUin : null;
|
|
2537
|
+
this.ClientMail = 'ClientMail' in params ? params.ClientMail : null;
|
|
2538
|
+
this.ClientType = 'ClientType' in params ? params.ClientType : null;
|
|
2539
|
+
this.BindTime = 'BindTime' in params ? params.BindTime : null;
|
|
2135
2540
|
|
|
2136
2541
|
}
|
|
2137
2542
|
}
|
|
@@ -2229,64 +2634,24 @@ class DescribeCustomerVoucherUsageDetailsResponse extends AbstractModel {
|
|
|
2229
2634
|
}
|
|
2230
2635
|
|
|
2231
2636
|
/**
|
|
2232
|
-
*
|
|
2637
|
+
* DescribeBillSummaryByPayMode request structure.
|
|
2233
2638
|
* @class
|
|
2234
2639
|
*/
|
|
2235
|
-
class
|
|
2640
|
+
class DescribeBillSummaryByPayModeRequest extends AbstractModel {
|
|
2236
2641
|
constructor(){
|
|
2237
2642
|
super();
|
|
2238
2643
|
|
|
2239
2644
|
/**
|
|
2240
|
-
*
|
|
2241
|
-
* @type {string || null}
|
|
2242
|
-
*/
|
|
2243
|
-
this.InvitationToken = null;
|
|
2244
|
-
|
|
2245
|
-
/**
|
|
2246
|
-
* Creation time of the invitation link.
|
|
2247
|
-
* @type {string || null}
|
|
2248
|
-
*/
|
|
2249
|
-
this.CreateTime = null;
|
|
2250
|
-
|
|
2251
|
-
/**
|
|
2252
|
-
* Invite link status.
|
|
2253
|
-
1: Unused.
|
|
2254
|
-
2: Used.
|
|
2255
|
-
* @type {number || null}
|
|
2256
|
-
*/
|
|
2257
|
-
this.Status = null;
|
|
2258
|
-
|
|
2259
|
-
/**
|
|
2260
|
-
* Indicates the usage time of the invitation link.
|
|
2261
|
-
* @type {string || null}
|
|
2262
|
-
*/
|
|
2263
|
-
this.UseTime = null;
|
|
2264
|
-
|
|
2265
|
-
/**
|
|
2266
|
-
* Customer uin.
|
|
2267
|
-
* @type {number || null}
|
|
2268
|
-
*/
|
|
2269
|
-
this.ClientUin = null;
|
|
2270
|
-
|
|
2271
|
-
/**
|
|
2272
|
-
* Customer mailbox.
|
|
2645
|
+
* Bill month in the format of "yyyy-MM"
|
|
2273
2646
|
* @type {string || null}
|
|
2274
2647
|
*/
|
|
2275
|
-
this.
|
|
2648
|
+
this.BillMonth = null;
|
|
2276
2649
|
|
|
2277
2650
|
/**
|
|
2278
|
-
* Customer
|
|
2279
|
-
1: Second-Level reseller.
|
|
2280
|
-
2: Sub-Customer.
|
|
2651
|
+
* Customer UIN
|
|
2281
2652
|
* @type {number || null}
|
|
2282
2653
|
*/
|
|
2283
|
-
this.
|
|
2284
|
-
|
|
2285
|
-
/**
|
|
2286
|
-
* The binding time of the customer.
|
|
2287
|
-
* @type {string || null}
|
|
2288
|
-
*/
|
|
2289
|
-
this.BindTime = null;
|
|
2654
|
+
this.CustomerUin = null;
|
|
2290
2655
|
|
|
2291
2656
|
}
|
|
2292
2657
|
|
|
@@ -2297,14 +2662,8 @@ class QueryInvitationInfoData extends AbstractModel {
|
|
|
2297
2662
|
if (!params) {
|
|
2298
2663
|
return;
|
|
2299
2664
|
}
|
|
2300
|
-
this.
|
|
2301
|
-
this.
|
|
2302
|
-
this.Status = 'Status' in params ? params.Status : null;
|
|
2303
|
-
this.UseTime = 'UseTime' in params ? params.UseTime : null;
|
|
2304
|
-
this.ClientUin = 'ClientUin' in params ? params.ClientUin : null;
|
|
2305
|
-
this.ClientMail = 'ClientMail' in params ? params.ClientMail : null;
|
|
2306
|
-
this.ClientType = 'ClientType' in params ? params.ClientType : null;
|
|
2307
|
-
this.BindTime = 'BindTime' in params ? params.BindTime : null;
|
|
2665
|
+
this.BillMonth = 'BillMonth' in params ? params.BillMonth : null;
|
|
2666
|
+
this.CustomerUin = 'CustomerUin' in params ? params.CustomerUin : null;
|
|
2308
2667
|
|
|
2309
2668
|
}
|
|
2310
2669
|
}
|
|
@@ -2376,18 +2735,18 @@ acs: ascending.
|
|
|
2376
2735
|
}
|
|
2377
2736
|
|
|
2378
2737
|
/**
|
|
2379
|
-
*
|
|
2738
|
+
* DescribeCustomerBillSummary response structure.
|
|
2380
2739
|
* @class
|
|
2381
2740
|
*/
|
|
2382
|
-
class
|
|
2741
|
+
class DescribeCustomerBillSummaryResponse extends AbstractModel {
|
|
2383
2742
|
constructor(){
|
|
2384
2743
|
super();
|
|
2385
2744
|
|
|
2386
2745
|
/**
|
|
2387
|
-
*
|
|
2388
|
-
* @type {
|
|
2746
|
+
* Total amount
|
|
2747
|
+
* @type {number || null}
|
|
2389
2748
|
*/
|
|
2390
|
-
this.
|
|
2749
|
+
this.TotalCost = null;
|
|
2391
2750
|
|
|
2392
2751
|
/**
|
|
2393
2752
|
* 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.
|
|
@@ -2404,15 +2763,7 @@ class GetCountryCodesResponse extends AbstractModel {
|
|
|
2404
2763
|
if (!params) {
|
|
2405
2764
|
return;
|
|
2406
2765
|
}
|
|
2407
|
-
|
|
2408
|
-
if (params.Data) {
|
|
2409
|
-
this.Data = new Array();
|
|
2410
|
-
for (let z in params.Data) {
|
|
2411
|
-
let obj = new CountryCodeItem();
|
|
2412
|
-
obj.deserialize(params.Data[z]);
|
|
2413
|
-
this.Data.push(obj);
|
|
2414
|
-
}
|
|
2415
|
-
}
|
|
2766
|
+
this.TotalCost = 'TotalCost' in params ? params.TotalCost : null;
|
|
2416
2767
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2417
2768
|
|
|
2418
2769
|
}
|
|
@@ -2495,6 +2846,154 @@ class AllocateCustomerCreditResponse extends AbstractModel {
|
|
|
2495
2846
|
}
|
|
2496
2847
|
}
|
|
2497
2848
|
|
|
2849
|
+
/**
|
|
2850
|
+
* Advanced filtering for cost analysis
|
|
2851
|
+
* @class
|
|
2852
|
+
*/
|
|
2853
|
+
class CostAnalyzeFilterDetail extends AbstractModel {
|
|
2854
|
+
constructor(){
|
|
2855
|
+
super();
|
|
2856
|
+
|
|
2857
|
+
/**
|
|
2858
|
+
* <p>Product key-value pair.</p>
|
|
2859
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2860
|
+
* @type {Array.<BillQueryFilterMsg> || null}
|
|
2861
|
+
*/
|
|
2862
|
+
this.Business = null;
|
|
2863
|
+
|
|
2864
|
+
/**
|
|
2865
|
+
* <p>Region key-value pair</p>
|
|
2866
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2867
|
+
* @type {Array.<BillQueryFilterMsg> || null}
|
|
2868
|
+
*/
|
|
2869
|
+
this.Region = null;
|
|
2870
|
+
|
|
2871
|
+
/**
|
|
2872
|
+
* <p>Availability zone key-value pair</p>
|
|
2873
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2874
|
+
* @type {Array.<BillQueryFilterMsg> || null}
|
|
2875
|
+
*/
|
|
2876
|
+
this.Zone = null;
|
|
2877
|
+
|
|
2878
|
+
/**
|
|
2879
|
+
* <p>Transaction type key-value pair</p>
|
|
2880
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2881
|
+
* @type {Array.<BillQueryFilterMsg> || null}
|
|
2882
|
+
*/
|
|
2883
|
+
this.ActionType = null;
|
|
2884
|
+
|
|
2885
|
+
/**
|
|
2886
|
+
* <p>Key-value pair of payment mode</p>
|
|
2887
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2888
|
+
* @type {Array.<BillQueryFilterMsg> || null}
|
|
2889
|
+
*/
|
|
2890
|
+
this.PayMode = null;
|
|
2891
|
+
|
|
2892
|
+
/**
|
|
2893
|
+
* <p>Project key-value pair</p>
|
|
2894
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2895
|
+
* @type {Array.<BillQueryFilterMsg> || null}
|
|
2896
|
+
*/
|
|
2897
|
+
this.Project = null;
|
|
2898
|
+
|
|
2899
|
+
/**
|
|
2900
|
+
* <p>Payer uin information</p>
|
|
2901
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2902
|
+
* @type {Array.<BillQueryFilterMsg> || null}
|
|
2903
|
+
*/
|
|
2904
|
+
this.PayerUin = null;
|
|
2905
|
+
|
|
2906
|
+
/**
|
|
2907
|
+
* <p>Sub-account uin information</p>
|
|
2908
|
+
* @type {Array.<BillQueryFilterMsg> || null}
|
|
2909
|
+
*/
|
|
2910
|
+
this.OwnerUin = null;
|
|
2911
|
+
|
|
2912
|
+
}
|
|
2913
|
+
|
|
2914
|
+
/**
|
|
2915
|
+
* @private
|
|
2916
|
+
*/
|
|
2917
|
+
deserialize(params) {
|
|
2918
|
+
if (!params) {
|
|
2919
|
+
return;
|
|
2920
|
+
}
|
|
2921
|
+
|
|
2922
|
+
if (params.Business) {
|
|
2923
|
+
this.Business = new Array();
|
|
2924
|
+
for (let z in params.Business) {
|
|
2925
|
+
let obj = new BillQueryFilterMsg();
|
|
2926
|
+
obj.deserialize(params.Business[z]);
|
|
2927
|
+
this.Business.push(obj);
|
|
2928
|
+
}
|
|
2929
|
+
}
|
|
2930
|
+
|
|
2931
|
+
if (params.Region) {
|
|
2932
|
+
this.Region = new Array();
|
|
2933
|
+
for (let z in params.Region) {
|
|
2934
|
+
let obj = new BillQueryFilterMsg();
|
|
2935
|
+
obj.deserialize(params.Region[z]);
|
|
2936
|
+
this.Region.push(obj);
|
|
2937
|
+
}
|
|
2938
|
+
}
|
|
2939
|
+
|
|
2940
|
+
if (params.Zone) {
|
|
2941
|
+
this.Zone = new Array();
|
|
2942
|
+
for (let z in params.Zone) {
|
|
2943
|
+
let obj = new BillQueryFilterMsg();
|
|
2944
|
+
obj.deserialize(params.Zone[z]);
|
|
2945
|
+
this.Zone.push(obj);
|
|
2946
|
+
}
|
|
2947
|
+
}
|
|
2948
|
+
|
|
2949
|
+
if (params.ActionType) {
|
|
2950
|
+
this.ActionType = new Array();
|
|
2951
|
+
for (let z in params.ActionType) {
|
|
2952
|
+
let obj = new BillQueryFilterMsg();
|
|
2953
|
+
obj.deserialize(params.ActionType[z]);
|
|
2954
|
+
this.ActionType.push(obj);
|
|
2955
|
+
}
|
|
2956
|
+
}
|
|
2957
|
+
|
|
2958
|
+
if (params.PayMode) {
|
|
2959
|
+
this.PayMode = new Array();
|
|
2960
|
+
for (let z in params.PayMode) {
|
|
2961
|
+
let obj = new BillQueryFilterMsg();
|
|
2962
|
+
obj.deserialize(params.PayMode[z]);
|
|
2963
|
+
this.PayMode.push(obj);
|
|
2964
|
+
}
|
|
2965
|
+
}
|
|
2966
|
+
|
|
2967
|
+
if (params.Project) {
|
|
2968
|
+
this.Project = new Array();
|
|
2969
|
+
for (let z in params.Project) {
|
|
2970
|
+
let obj = new BillQueryFilterMsg();
|
|
2971
|
+
obj.deserialize(params.Project[z]);
|
|
2972
|
+
this.Project.push(obj);
|
|
2973
|
+
}
|
|
2974
|
+
}
|
|
2975
|
+
|
|
2976
|
+
if (params.PayerUin) {
|
|
2977
|
+
this.PayerUin = new Array();
|
|
2978
|
+
for (let z in params.PayerUin) {
|
|
2979
|
+
let obj = new BillQueryFilterMsg();
|
|
2980
|
+
obj.deserialize(params.PayerUin[z]);
|
|
2981
|
+
this.PayerUin.push(obj);
|
|
2982
|
+
}
|
|
2983
|
+
}
|
|
2984
|
+
|
|
2985
|
+
if (params.OwnerUin) {
|
|
2986
|
+
this.OwnerUin = new Array();
|
|
2987
|
+
for (let z in params.OwnerUin) {
|
|
2988
|
+
let obj = new BillQueryFilterMsg();
|
|
2989
|
+
obj.deserialize(params.OwnerUin[z]);
|
|
2990
|
+
this.OwnerUin.push(obj);
|
|
2991
|
+
}
|
|
2992
|
+
}
|
|
2993
|
+
|
|
2994
|
+
}
|
|
2995
|
+
}
|
|
2996
|
+
|
|
2498
2997
|
/**
|
|
2499
2998
|
* QueryT1IndirectCustomersDetail response structure.
|
|
2500
2999
|
* @class
|
|
@@ -2701,24 +3200,24 @@ class DescribeBillDetailResponse extends AbstractModel {
|
|
|
2701
3200
|
}
|
|
2702
3201
|
|
|
2703
3202
|
/**
|
|
2704
|
-
*
|
|
3203
|
+
* DescribeCustomerUin request structure.
|
|
2705
3204
|
* @class
|
|
2706
3205
|
*/
|
|
2707
|
-
class
|
|
3206
|
+
class DescribeCustomerUinRequest extends AbstractModel {
|
|
2708
3207
|
constructor(){
|
|
2709
3208
|
super();
|
|
2710
3209
|
|
|
2711
3210
|
/**
|
|
2712
|
-
*
|
|
2713
|
-
* @type {
|
|
3211
|
+
* Page number
|
|
3212
|
+
* @type {number || null}
|
|
2714
3213
|
*/
|
|
2715
|
-
this.
|
|
3214
|
+
this.Page = null;
|
|
2716
3215
|
|
|
2717
3216
|
/**
|
|
2718
|
-
*
|
|
2719
|
-
* @type {
|
|
3217
|
+
* Number of data entries per page
|
|
3218
|
+
* @type {number || null}
|
|
2720
3219
|
*/
|
|
2721
|
-
this.
|
|
3220
|
+
this.PageSize = null;
|
|
2722
3221
|
|
|
2723
3222
|
}
|
|
2724
3223
|
|
|
@@ -2729,16 +3228,8 @@ class QueryDirectCustomersCreditResponse extends AbstractModel {
|
|
|
2729
3228
|
if (!params) {
|
|
2730
3229
|
return;
|
|
2731
3230
|
}
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
this.Data = new Array();
|
|
2735
|
-
for (let z in params.Data) {
|
|
2736
|
-
let obj = new QueryDirectCustomersCreditData();
|
|
2737
|
-
obj.deserialize(params.Data[z]);
|
|
2738
|
-
this.Data.push(obj);
|
|
2739
|
-
}
|
|
2740
|
-
}
|
|
2741
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3231
|
+
this.Page = 'Page' in params ? params.Page : null;
|
|
3232
|
+
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
2742
3233
|
|
|
2743
3234
|
}
|
|
2744
3235
|
}
|
|
@@ -2862,41 +3353,6 @@ class DescribeCustomerVoucherListRequest extends AbstractModel {
|
|
|
2862
3353
|
}
|
|
2863
3354
|
}
|
|
2864
3355
|
|
|
2865
|
-
/**
|
|
2866
|
-
* DescribeCustomerUin request structure.
|
|
2867
|
-
* @class
|
|
2868
|
-
*/
|
|
2869
|
-
class DescribeCustomerUinRequest extends AbstractModel {
|
|
2870
|
-
constructor(){
|
|
2871
|
-
super();
|
|
2872
|
-
|
|
2873
|
-
/**
|
|
2874
|
-
* Page number
|
|
2875
|
-
* @type {number || null}
|
|
2876
|
-
*/
|
|
2877
|
-
this.Page = null;
|
|
2878
|
-
|
|
2879
|
-
/**
|
|
2880
|
-
* Number of data entries per page
|
|
2881
|
-
* @type {number || null}
|
|
2882
|
-
*/
|
|
2883
|
-
this.PageSize = null;
|
|
2884
|
-
|
|
2885
|
-
}
|
|
2886
|
-
|
|
2887
|
-
/**
|
|
2888
|
-
* @private
|
|
2889
|
-
*/
|
|
2890
|
-
deserialize(params) {
|
|
2891
|
-
if (!params) {
|
|
2892
|
-
return;
|
|
2893
|
-
}
|
|
2894
|
-
this.Page = 'Page' in params ? params.Page : null;
|
|
2895
|
-
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
2896
|
-
|
|
2897
|
-
}
|
|
2898
|
-
}
|
|
2899
|
-
|
|
2900
3356
|
/**
|
|
2901
3357
|
* Primary Industry Information
|
|
2902
3358
|
* @class
|
|
@@ -2989,6 +3445,49 @@ class DescribeRebateDownloadUrlResponse extends AbstractModel {
|
|
|
2989
3445
|
}
|
|
2990
3446
|
}
|
|
2991
3447
|
|
|
3448
|
+
/**
|
|
3449
|
+
* QueryDirectCustomersCredit response structure.
|
|
3450
|
+
* @class
|
|
3451
|
+
*/
|
|
3452
|
+
class QueryDirectCustomersCreditResponse extends AbstractModel {
|
|
3453
|
+
constructor(){
|
|
3454
|
+
super();
|
|
3455
|
+
|
|
3456
|
+
/**
|
|
3457
|
+
* Direct customer information list
|
|
3458
|
+
* @type {Array.<QueryDirectCustomersCreditData> || null}
|
|
3459
|
+
*/
|
|
3460
|
+
this.Data = null;
|
|
3461
|
+
|
|
3462
|
+
/**
|
|
3463
|
+
* 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.
|
|
3464
|
+
* @type {string || null}
|
|
3465
|
+
*/
|
|
3466
|
+
this.RequestId = null;
|
|
3467
|
+
|
|
3468
|
+
}
|
|
3469
|
+
|
|
3470
|
+
/**
|
|
3471
|
+
* @private
|
|
3472
|
+
*/
|
|
3473
|
+
deserialize(params) {
|
|
3474
|
+
if (!params) {
|
|
3475
|
+
return;
|
|
3476
|
+
}
|
|
3477
|
+
|
|
3478
|
+
if (params.Data) {
|
|
3479
|
+
this.Data = new Array();
|
|
3480
|
+
for (let z in params.Data) {
|
|
3481
|
+
let obj = new QueryDirectCustomersCreditData();
|
|
3482
|
+
obj.deserialize(params.Data[z]);
|
|
3483
|
+
this.Data.push(obj);
|
|
3484
|
+
}
|
|
3485
|
+
}
|
|
3486
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3487
|
+
|
|
3488
|
+
}
|
|
3489
|
+
}
|
|
3490
|
+
|
|
2992
3491
|
/**
|
|
2993
3492
|
* Second-Level reseller information.
|
|
2994
3493
|
* @class
|
|
@@ -3131,18 +3630,36 @@ class DescribeBillSummaryResponse extends AbstractModel {
|
|
|
3131
3630
|
}
|
|
3132
3631
|
|
|
3133
3632
|
/**
|
|
3134
|
-
*
|
|
3633
|
+
* DescribeCustomerOwnVoucherUsageDetails request structure.
|
|
3135
3634
|
* @class
|
|
3136
3635
|
*/
|
|
3137
|
-
class
|
|
3636
|
+
class DescribeCustomerOwnVoucherUsageDetailsRequest extends AbstractModel {
|
|
3138
3637
|
constructor(){
|
|
3139
3638
|
super();
|
|
3140
3639
|
|
|
3141
3640
|
/**
|
|
3142
|
-
*
|
|
3143
|
-
* @type {
|
|
3641
|
+
* Page number, starting from 1
|
|
3642
|
+
* @type {number || null}
|
|
3144
3643
|
*/
|
|
3145
|
-
this.
|
|
3644
|
+
this.Page = null;
|
|
3645
|
+
|
|
3646
|
+
/**
|
|
3647
|
+
* Number of items per page, range 1-100
|
|
3648
|
+
* @type {number || null}
|
|
3649
|
+
*/
|
|
3650
|
+
this.PageSize = null;
|
|
3651
|
+
|
|
3652
|
+
/**
|
|
3653
|
+
* Voucher ID
|
|
3654
|
+
* @type {number || null}
|
|
3655
|
+
*/
|
|
3656
|
+
this.VoucherId = null;
|
|
3657
|
+
|
|
3658
|
+
/**
|
|
3659
|
+
* Voucher usage month
|
|
3660
|
+
* @type {string || null}
|
|
3661
|
+
*/
|
|
3662
|
+
this.Month = null;
|
|
3146
3663
|
|
|
3147
3664
|
}
|
|
3148
3665
|
|
|
@@ -3153,7 +3670,10 @@ class QueryInvitationInfoRequest extends AbstractModel {
|
|
|
3153
3670
|
if (!params) {
|
|
3154
3671
|
return;
|
|
3155
3672
|
}
|
|
3156
|
-
this.
|
|
3673
|
+
this.Page = 'Page' in params ? params.Page : null;
|
|
3674
|
+
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
3675
|
+
this.VoucherId = 'VoucherId' in params ? params.VoucherId : null;
|
|
3676
|
+
this.Month = 'Month' in params ? params.Month : null;
|
|
3157
3677
|
|
|
3158
3678
|
}
|
|
3159
3679
|
}
|
|
@@ -3399,16 +3919,102 @@ class QueryT1IndirectCustomersDetailResponseData extends AbstractModel {
|
|
|
3399
3919
|
this.ClientUin = null;
|
|
3400
3920
|
|
|
3401
3921
|
/**
|
|
3402
|
-
* Customer name.
|
|
3922
|
+
* Customer name.
|
|
3923
|
+
* @type {string || null}
|
|
3924
|
+
*/
|
|
3925
|
+
this.ClientName = null;
|
|
3926
|
+
|
|
3927
|
+
/**
|
|
3928
|
+
* The time when a sub-customer binds a second-level reseller, time zone: UTC+08:00.
|
|
3929
|
+
* @type {string || null}
|
|
3930
|
+
*/
|
|
3931
|
+
this.ClientBindTime = null;
|
|
3932
|
+
|
|
3933
|
+
}
|
|
3934
|
+
|
|
3935
|
+
/**
|
|
3936
|
+
* @private
|
|
3937
|
+
*/
|
|
3938
|
+
deserialize(params) {
|
|
3939
|
+
if (!params) {
|
|
3940
|
+
return;
|
|
3941
|
+
}
|
|
3942
|
+
this.ClientUin = 'ClientUin' in params ? params.ClientUin : null;
|
|
3943
|
+
this.ClientName = 'ClientName' in params ? params.ClientName : null;
|
|
3944
|
+
this.ClientBindTime = 'ClientBindTime' in params ? params.ClientBindTime : null;
|
|
3945
|
+
|
|
3946
|
+
}
|
|
3947
|
+
}
|
|
3948
|
+
|
|
3949
|
+
/**
|
|
3950
|
+
* DescribeCustomerOwnCostExplorerSummary request structure.
|
|
3951
|
+
* @class
|
|
3952
|
+
*/
|
|
3953
|
+
class DescribeCustomerOwnCostExplorerSummaryRequest extends AbstractModel {
|
|
3954
|
+
constructor(){
|
|
3955
|
+
super();
|
|
3956
|
+
|
|
3957
|
+
/**
|
|
3958
|
+
* <p>Classification dimension</p><p>Enumeration value:</p><ul><li>Default: Default dimension</li><li>Business: Product</li><li>Product: Subproduct</li><li>Region: Region</li><li>Zone: Availability zone</li><li>ActionType: Transaction type</li><li>PayMode: Payment mode</li><li>Project: Project</li><li>PayerUin: Payer uin</li><li>OwnerUin: Owner uin</li><li>Tag: Tag</li></ul>
|
|
3959
|
+
* @type {string || null}
|
|
3960
|
+
*/
|
|
3961
|
+
this.Dimension = null;
|
|
3962
|
+
|
|
3963
|
+
/**
|
|
3964
|
+
* <p>Fee type</p><p>Enumeration value:</p><ul><li>originalCost: Original Cost</li><li>totalCost: Total Cost</li></ul>
|
|
3965
|
+
* @type {string || null}
|
|
3966
|
+
*/
|
|
3967
|
+
this.FeeType = null;
|
|
3968
|
+
|
|
3969
|
+
/**
|
|
3970
|
+
* <p>Billing mode</p><p>Enumeration value:</p><ul><li>1: Billing statement</li></ul>
|
|
3971
|
+
* @type {number || null}
|
|
3972
|
+
*/
|
|
3973
|
+
this.BillType = null;
|
|
3974
|
+
|
|
3975
|
+
/**
|
|
3976
|
+
* <p>Start time</p><p>Parameter format: YYYY-MM-DD hh:mm:ss, for example 2006-01-02 00:00:00</p><p>Input limit: When PeriodType is month, the time range is 6 calendar months; when PeriodType is day, the time range is 2 calendar months;</p>
|
|
3977
|
+
* @type {string || null}
|
|
3978
|
+
*/
|
|
3979
|
+
this.StartTime = null;
|
|
3980
|
+
|
|
3981
|
+
/**
|
|
3982
|
+
* <p>End time</p><p>Parameter format: YYYY-MM-DD hh:mm:ss, for example 2006-01-02 00:00:00</p><p>Input limit: When PeriodType is month, the time range is 6 calendar months. When PeriodType is day, the time range is 2 calendar months.</p>
|
|
3983
|
+
* @type {string || null}
|
|
3984
|
+
*/
|
|
3985
|
+
this.EndTime = null;
|
|
3986
|
+
|
|
3987
|
+
/**
|
|
3988
|
+
* <p>Time type</p><p>Enumeration value:</p><ul><li>day: By day</li><li>month: By month</li></ul>
|
|
3989
|
+
* @type {string || null}
|
|
3990
|
+
*/
|
|
3991
|
+
this.PeriodType = null;
|
|
3992
|
+
|
|
3993
|
+
/**
|
|
3994
|
+
* <p>Page number</p><p>Value range: [1, 10000]</p>
|
|
3995
|
+
* @type {number || null}
|
|
3996
|
+
*/
|
|
3997
|
+
this.Page = null;
|
|
3998
|
+
|
|
3999
|
+
/**
|
|
4000
|
+
* <p>Page size</p><p>Value range: [1, 200]</p>
|
|
4001
|
+
* @type {number || null}
|
|
4002
|
+
*/
|
|
4003
|
+
this.PageSize = null;
|
|
4004
|
+
|
|
4005
|
+
/**
|
|
4006
|
+
* <p>Tag key of the statistical dimension. When Dimension is Tag, TagKey is required.</p>
|
|
3403
4007
|
* @type {string || null}
|
|
3404
4008
|
*/
|
|
3405
|
-
this.
|
|
4009
|
+
this.TagKey = null;
|
|
3406
4010
|
|
|
3407
4011
|
/**
|
|
3408
|
-
*
|
|
3409
|
-
|
|
4012
|
+
* Filter
|
|
4013
|
+
|
|
4014
|
+
You can pass the data returned by [DescribeCustomerOwnCostExplorerFilter](https://www.tencentcloud.com/document/product/1085/80125) as a parameter to filter the data.
|
|
4015
|
+
* @type {CostAnalyzeFilter || null}
|
|
3410
4016
|
*/
|
|
3411
|
-
this.
|
|
4017
|
+
this.Filter = null;
|
|
3412
4018
|
|
|
3413
4019
|
}
|
|
3414
4020
|
|
|
@@ -3419,9 +4025,21 @@ class QueryT1IndirectCustomersDetailResponseData extends AbstractModel {
|
|
|
3419
4025
|
if (!params) {
|
|
3420
4026
|
return;
|
|
3421
4027
|
}
|
|
3422
|
-
this.
|
|
3423
|
-
this.
|
|
3424
|
-
this.
|
|
4028
|
+
this.Dimension = 'Dimension' in params ? params.Dimension : null;
|
|
4029
|
+
this.FeeType = 'FeeType' in params ? params.FeeType : null;
|
|
4030
|
+
this.BillType = 'BillType' in params ? params.BillType : null;
|
|
4031
|
+
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
4032
|
+
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
4033
|
+
this.PeriodType = 'PeriodType' in params ? params.PeriodType : null;
|
|
4034
|
+
this.Page = 'Page' in params ? params.Page : null;
|
|
4035
|
+
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
4036
|
+
this.TagKey = 'TagKey' in params ? params.TagKey : null;
|
|
4037
|
+
|
|
4038
|
+
if (params.Filter) {
|
|
4039
|
+
let obj = new CostAnalyzeFilter();
|
|
4040
|
+
obj.deserialize(params.Filter)
|
|
4041
|
+
this.Filter = obj;
|
|
4042
|
+
}
|
|
3425
4043
|
|
|
3426
4044
|
}
|
|
3427
4045
|
}
|
|
@@ -3553,55 +4171,6 @@ class DescribeCustomerInfoResponse extends AbstractModel {
|
|
|
3553
4171
|
}
|
|
3554
4172
|
}
|
|
3555
4173
|
|
|
3556
|
-
/**
|
|
3557
|
-
* DescribeCustomerOwnVoucherUsageDetails request structure.
|
|
3558
|
-
* @class
|
|
3559
|
-
*/
|
|
3560
|
-
class DescribeCustomerOwnVoucherUsageDetailsRequest extends AbstractModel {
|
|
3561
|
-
constructor(){
|
|
3562
|
-
super();
|
|
3563
|
-
|
|
3564
|
-
/**
|
|
3565
|
-
* Page number, starting from 1
|
|
3566
|
-
* @type {number || null}
|
|
3567
|
-
*/
|
|
3568
|
-
this.Page = null;
|
|
3569
|
-
|
|
3570
|
-
/**
|
|
3571
|
-
* Number of items per page, range 1-100
|
|
3572
|
-
* @type {number || null}
|
|
3573
|
-
*/
|
|
3574
|
-
this.PageSize = null;
|
|
3575
|
-
|
|
3576
|
-
/**
|
|
3577
|
-
* Voucher ID
|
|
3578
|
-
* @type {number || null}
|
|
3579
|
-
*/
|
|
3580
|
-
this.VoucherId = null;
|
|
3581
|
-
|
|
3582
|
-
/**
|
|
3583
|
-
* Voucher usage month
|
|
3584
|
-
* @type {string || null}
|
|
3585
|
-
*/
|
|
3586
|
-
this.Month = null;
|
|
3587
|
-
|
|
3588
|
-
}
|
|
3589
|
-
|
|
3590
|
-
/**
|
|
3591
|
-
* @private
|
|
3592
|
-
*/
|
|
3593
|
-
deserialize(params) {
|
|
3594
|
-
if (!params) {
|
|
3595
|
-
return;
|
|
3596
|
-
}
|
|
3597
|
-
this.Page = 'Page' in params ? params.Page : null;
|
|
3598
|
-
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
3599
|
-
this.VoucherId = 'VoucherId' in params ? params.VoucherId : null;
|
|
3600
|
-
this.Month = 'Month' in params ? params.Month : null;
|
|
3601
|
-
|
|
3602
|
-
}
|
|
3603
|
-
}
|
|
3604
|
-
|
|
3605
4174
|
/**
|
|
3606
4175
|
* QueryVoucherPool response structure.
|
|
3607
4176
|
* @class
|
|
@@ -3693,6 +4262,48 @@ class QueryAccountVerificationStatusRequest extends AbstractModel {
|
|
|
3693
4262
|
}
|
|
3694
4263
|
}
|
|
3695
4264
|
|
|
4265
|
+
/**
|
|
4266
|
+
* DescribeCustomerOwnCostExplorerFilter request structure.
|
|
4267
|
+
* @class
|
|
4268
|
+
*/
|
|
4269
|
+
class DescribeCustomerOwnCostExplorerFilterRequest extends AbstractModel {
|
|
4270
|
+
constructor(){
|
|
4271
|
+
super();
|
|
4272
|
+
|
|
4273
|
+
/**
|
|
4274
|
+
* <p>Start time</p><p>Parameter format: YYYY-MM-DD hh:mm:ss, for example 2006-01-02 00:00:00</p><p>Input limit: When PeriodType is month, the time range is 6 calendar months. When PeriodType is day, the time range is 2 calendar months;</p>
|
|
4275
|
+
* @type {string || null}
|
|
4276
|
+
*/
|
|
4277
|
+
this.StartTime = null;
|
|
4278
|
+
|
|
4279
|
+
/**
|
|
4280
|
+
* <p>End time</p><p>Parameter format: YYYY-MM-DD hh:mm:ss, for example 2006-01-02 00:00:00</p><p>Input limit: When PeriodType is month, the time range is 6 calendar months. When PeriodType is day, the time range is 2 calendar months.</p>
|
|
4281
|
+
* @type {string || null}
|
|
4282
|
+
*/
|
|
4283
|
+
this.EndTime = null;
|
|
4284
|
+
|
|
4285
|
+
/**
|
|
4286
|
+
* <p>Date type</p><p>Enumeration value:</p><ul><li>day: By day</li><li>month: Monthly</li></ul>
|
|
4287
|
+
* @type {string || null}
|
|
4288
|
+
*/
|
|
4289
|
+
this.PeriodType = null;
|
|
4290
|
+
|
|
4291
|
+
}
|
|
4292
|
+
|
|
4293
|
+
/**
|
|
4294
|
+
* @private
|
|
4295
|
+
*/
|
|
4296
|
+
deserialize(params) {
|
|
4297
|
+
if (!params) {
|
|
4298
|
+
return;
|
|
4299
|
+
}
|
|
4300
|
+
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
4301
|
+
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
4302
|
+
this.PeriodType = 'PeriodType' in params ? params.PeriodType : null;
|
|
4303
|
+
|
|
4304
|
+
}
|
|
4305
|
+
}
|
|
4306
|
+
|
|
3696
4307
|
/**
|
|
3697
4308
|
* Transaction type details in the customer bill data totaled by payment mode
|
|
3698
4309
|
* @class
|
|
@@ -3842,54 +4453,24 @@ class AllocateCreditPoolResponse extends AbstractModel {
|
|
|
3842
4453
|
}
|
|
3843
4454
|
|
|
3844
4455
|
/**
|
|
3845
|
-
*
|
|
4456
|
+
* Cost cycle entry info
|
|
3846
4457
|
* @class
|
|
3847
4458
|
*/
|
|
3848
|
-
class
|
|
4459
|
+
class PeriodItemDetail extends AbstractModel {
|
|
3849
4460
|
constructor(){
|
|
3850
4461
|
super();
|
|
3851
4462
|
|
|
3852
4463
|
/**
|
|
3853
|
-
*
|
|
3854
|
-
* @type {string || null}
|
|
3855
|
-
*/
|
|
3856
|
-
this.ApplyTime = null;
|
|
3857
|
-
|
|
3858
|
-
/**
|
|
3859
|
-
* Sub-Account uin.
|
|
3860
|
-
* @type {number || null}
|
|
3861
|
-
*/
|
|
3862
|
-
this.ClientUin = null;
|
|
3863
|
-
|
|
3864
|
-
/**
|
|
3865
|
-
* Email.
|
|
3866
|
-
* @type {string || null}
|
|
3867
|
-
*/
|
|
3868
|
-
this.Email = null;
|
|
3869
|
-
|
|
3870
|
-
/**
|
|
3871
|
-
* Mobile number.
|
|
3872
|
-
* @type {string || null}
|
|
3873
|
-
*/
|
|
3874
|
-
this.Mobile = null;
|
|
3875
|
-
|
|
3876
|
-
/**
|
|
3877
|
-
* Name.
|
|
3878
|
-
* @type {string || null}
|
|
3879
|
-
*/
|
|
3880
|
-
this.Name = null;
|
|
3881
|
-
|
|
3882
|
-
/**
|
|
3883
|
-
* Approval status.
|
|
4464
|
+
* <p>Date</p>
|
|
3884
4465
|
* @type {string || null}
|
|
3885
4466
|
*/
|
|
3886
|
-
this.
|
|
4467
|
+
this.Period = null;
|
|
3887
4468
|
|
|
3888
4469
|
/**
|
|
3889
|
-
*
|
|
4470
|
+
* <p>Fee</p>
|
|
3890
4471
|
* @type {string || null}
|
|
3891
4472
|
*/
|
|
3892
|
-
this.
|
|
4473
|
+
this.Cost = null;
|
|
3893
4474
|
|
|
3894
4475
|
}
|
|
3895
4476
|
|
|
@@ -3900,13 +4481,8 @@ class QueryPendingCustomersItem extends AbstractModel {
|
|
|
3900
4481
|
if (!params) {
|
|
3901
4482
|
return;
|
|
3902
4483
|
}
|
|
3903
|
-
this.
|
|
3904
|
-
this.
|
|
3905
|
-
this.Email = 'Email' in params ? params.Email : null;
|
|
3906
|
-
this.Mobile = 'Mobile' in params ? params.Mobile : null;
|
|
3907
|
-
this.Name = 'Name' in params ? params.Name : null;
|
|
3908
|
-
this.Status = 'Status' in params ? params.Status : null;
|
|
3909
|
-
this.Type = 'Type' in params ? params.Type : null;
|
|
4484
|
+
this.Period = 'Period' in params ? params.Period : null;
|
|
4485
|
+
this.Cost = 'Cost' in params ? params.Cost : null;
|
|
3910
4486
|
|
|
3911
4487
|
}
|
|
3912
4488
|
}
|
|
@@ -4448,6 +5024,43 @@ The caller needs to ensure the validity and correctness of the mobile number. A
|
|
|
4448
5024
|
}
|
|
4449
5025
|
}
|
|
4450
5026
|
|
|
5027
|
+
/**
|
|
5028
|
+
* Query condition content kv format for bills
|
|
5029
|
+
* @class
|
|
5030
|
+
*/
|
|
5031
|
+
class BillQueryFilterMsg extends AbstractModel {
|
|
5032
|
+
constructor(){
|
|
5033
|
+
super();
|
|
5034
|
+
|
|
5035
|
+
/**
|
|
5036
|
+
* <p>Query condition key: various codes</p>
|
|
5037
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5038
|
+
* @type {string || null}
|
|
5039
|
+
*/
|
|
5040
|
+
this.Key = null;
|
|
5041
|
+
|
|
5042
|
+
/**
|
|
5043
|
+
* <p>Query condition value: Display name</p>
|
|
5044
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5045
|
+
* @type {string || null}
|
|
5046
|
+
*/
|
|
5047
|
+
this.Value = null;
|
|
5048
|
+
|
|
5049
|
+
}
|
|
5050
|
+
|
|
5051
|
+
/**
|
|
5052
|
+
* @private
|
|
5053
|
+
*/
|
|
5054
|
+
deserialize(params) {
|
|
5055
|
+
if (!params) {
|
|
5056
|
+
return;
|
|
5057
|
+
}
|
|
5058
|
+
this.Key = 'Key' in params ? params.Key : null;
|
|
5059
|
+
this.Value = 'Value' in params ? params.Value : null;
|
|
5060
|
+
|
|
5061
|
+
}
|
|
5062
|
+
}
|
|
5063
|
+
|
|
4451
5064
|
/**
|
|
4452
5065
|
* QueryVoucherListByUin request structure.
|
|
4453
5066
|
* @class
|
|
@@ -5346,6 +5959,34 @@ class TagInfo extends AbstractModel {
|
|
|
5346
5959
|
}
|
|
5347
5960
|
}
|
|
5348
5961
|
|
|
5962
|
+
/**
|
|
5963
|
+
* QueryInvitationInfo request structure.
|
|
5964
|
+
* @class
|
|
5965
|
+
*/
|
|
5966
|
+
class QueryInvitationInfoRequest extends AbstractModel {
|
|
5967
|
+
constructor(){
|
|
5968
|
+
super();
|
|
5969
|
+
|
|
5970
|
+
/**
|
|
5971
|
+
* Invite token. array member quantity value: [1, 100].
|
|
5972
|
+
* @type {Array.<string> || null}
|
|
5973
|
+
*/
|
|
5974
|
+
this.InvitationToken = null;
|
|
5975
|
+
|
|
5976
|
+
}
|
|
5977
|
+
|
|
5978
|
+
/**
|
|
5979
|
+
* @private
|
|
5980
|
+
*/
|
|
5981
|
+
deserialize(params) {
|
|
5982
|
+
if (!params) {
|
|
5983
|
+
return;
|
|
5984
|
+
}
|
|
5985
|
+
this.InvitationToken = 'InvitationToken' in params ? params.InvitationToken : null;
|
|
5986
|
+
|
|
5987
|
+
}
|
|
5988
|
+
}
|
|
5989
|
+
|
|
5349
5990
|
/**
|
|
5350
5991
|
* QueryCreditByUinList response structure.
|
|
5351
5992
|
* @class
|
|
@@ -6302,6 +6943,63 @@ Note: this field takes effect only in the scenario of inviting a second-level re
|
|
|
6302
6943
|
}
|
|
6303
6944
|
}
|
|
6304
6945
|
|
|
6946
|
+
/**
|
|
6947
|
+
* Cost dimension periodic data
|
|
6948
|
+
* @class
|
|
6949
|
+
*/
|
|
6950
|
+
class DimensionPeriodData extends AbstractModel {
|
|
6951
|
+
constructor(){
|
|
6952
|
+
super();
|
|
6953
|
+
|
|
6954
|
+
/**
|
|
6955
|
+
* <p>Function name by dimensional classification</p>
|
|
6956
|
+
* @type {string || null}
|
|
6957
|
+
*/
|
|
6958
|
+
this.Name = null;
|
|
6959
|
+
|
|
6960
|
+
/**
|
|
6961
|
+
* <p>code corresponding to the function name after dimensional classification</p>
|
|
6962
|
+
* @type {string || null}
|
|
6963
|
+
*/
|
|
6964
|
+
this.Code = null;
|
|
6965
|
+
|
|
6966
|
+
/**
|
|
6967
|
+
* <p>Sum value of the current group</p>
|
|
6968
|
+
* @type {string || null}
|
|
6969
|
+
*/
|
|
6970
|
+
this.SumCost = null;
|
|
6971
|
+
|
|
6972
|
+
/**
|
|
6973
|
+
* <p>Amount statistics by date grouping</p>
|
|
6974
|
+
* @type {Array.<PeriodItemDetail> || null}
|
|
6975
|
+
*/
|
|
6976
|
+
this.ItemDetail = null;
|
|
6977
|
+
|
|
6978
|
+
}
|
|
6979
|
+
|
|
6980
|
+
/**
|
|
6981
|
+
* @private
|
|
6982
|
+
*/
|
|
6983
|
+
deserialize(params) {
|
|
6984
|
+
if (!params) {
|
|
6985
|
+
return;
|
|
6986
|
+
}
|
|
6987
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
6988
|
+
this.Code = 'Code' in params ? params.Code : null;
|
|
6989
|
+
this.SumCost = 'SumCost' in params ? params.SumCost : null;
|
|
6990
|
+
|
|
6991
|
+
if (params.ItemDetail) {
|
|
6992
|
+
this.ItemDetail = new Array();
|
|
6993
|
+
for (let z in params.ItemDetail) {
|
|
6994
|
+
let obj = new PeriodItemDetail();
|
|
6995
|
+
obj.deserialize(params.ItemDetail[z]);
|
|
6996
|
+
this.ItemDetail.push(obj);
|
|
6997
|
+
}
|
|
6998
|
+
}
|
|
6999
|
+
|
|
7000
|
+
}
|
|
7001
|
+
}
|
|
7002
|
+
|
|
6305
7003
|
/**
|
|
6306
7004
|
* DescribeRebateDownloadUrl request structure.
|
|
6307
7005
|
* @class
|
|
@@ -6371,7 +7069,7 @@ module.exports = {
|
|
|
6371
7069
|
DescribeCustomerVoucherListResponse: DescribeCustomerVoucherListResponse,
|
|
6372
7070
|
QueryDirectCustomersCreditData: QueryDirectCustomersCreditData,
|
|
6373
7071
|
DescribeCustomerOwnVoucherListRequest: DescribeCustomerOwnVoucherListRequest,
|
|
6374
|
-
|
|
7072
|
+
GetCountryCodesResponse: GetCountryCodesResponse,
|
|
6375
7073
|
TradeTwoNode: TradeTwoNode,
|
|
6376
7074
|
QueryT1IndirectCustomersDetailRequest: QueryT1IndirectCustomersDetailRequest,
|
|
6377
7075
|
CreateAndSendClientInvitationMailResponse: CreateAndSendClientInvitationMailResponse,
|
|
@@ -6382,17 +7080,20 @@ module.exports = {
|
|
|
6382
7080
|
DescribeCustomerUinData: DescribeCustomerUinData,
|
|
6383
7081
|
CountryCodeItem: CountryCodeItem,
|
|
6384
7082
|
DescribeBillSummaryByRegionRequest: DescribeBillSummaryByRegionRequest,
|
|
7083
|
+
DescribeCustomerOwnCostExplorerFilterResponse: DescribeCustomerOwnCostExplorerFilterResponse,
|
|
6385
7084
|
DescribeCustomerBillDetailRequest: DescribeCustomerBillDetailRequest,
|
|
6386
7085
|
QueryPendingSubAgentsV2Request: QueryPendingSubAgentsV2Request,
|
|
6387
7086
|
QueryCreditAllocationHistoryResponse: QueryCreditAllocationHistoryResponse,
|
|
6388
7087
|
CreateAccountRequest: CreateAccountRequest,
|
|
6389
7088
|
DescribeBillSummaryRequest: DescribeBillSummaryRequest,
|
|
6390
7089
|
QueryDirectCustomersCreditRequest: QueryDirectCustomersCreditRequest,
|
|
7090
|
+
CostAnalyzeFilter: CostAnalyzeFilter,
|
|
7091
|
+
CostAnalyzeDimensionData: CostAnalyzeDimensionData,
|
|
6391
7092
|
QueryCustomerBillingQuotaData: QueryCustomerBillingQuotaData,
|
|
6392
7093
|
QueryPartnerCreditRequest: QueryPartnerCreditRequest,
|
|
6393
7094
|
GetTradeConfigListRequest: GetTradeConfigListRequest,
|
|
6394
7095
|
DescribeBillSummaryByProductRequest: DescribeBillSummaryByProductRequest,
|
|
6395
|
-
|
|
7096
|
+
DescribeBillDownloadUrlRequest: DescribeBillDownloadUrlRequest,
|
|
6396
7097
|
QueryPartnerCreditResponse: QueryPartnerCreditResponse,
|
|
6397
7098
|
QueryVoucherListByUinResponse: QueryVoucherListByUinResponse,
|
|
6398
7099
|
QueryVoucherPoolRequest: QueryVoucherPoolRequest,
|
|
@@ -6401,47 +7102,51 @@ module.exports = {
|
|
|
6401
7102
|
QueryCustomerBillingQuotaResponse: QueryCustomerBillingQuotaResponse,
|
|
6402
7103
|
DescribeCustomerBillSummaryRequest: DescribeCustomerBillSummaryRequest,
|
|
6403
7104
|
QueryPendingSubAgentsV2ResponseData: QueryPendingSubAgentsV2ResponseData,
|
|
7105
|
+
QueryPendingCustomersItem: QueryPendingCustomersItem,
|
|
6404
7106
|
ApproveSubAgentApplyResponse: ApproveSubAgentApplyResponse,
|
|
6405
7107
|
QueryInvitationInfoResponse: QueryInvitationInfoResponse,
|
|
6406
7108
|
DescribeBillSummaryByPayModeResponse: DescribeBillSummaryByPayModeResponse,
|
|
6407
7109
|
QueryAccountVerificationStatusResponse: QueryAccountVerificationStatusResponse,
|
|
6408
7110
|
AllocateCustomerCreditRequest: AllocateCustomerCreditRequest,
|
|
6409
7111
|
DescribeCustomerOwnVoucherListResponse: DescribeCustomerOwnVoucherListResponse,
|
|
6410
|
-
|
|
6411
|
-
|
|
6412
|
-
DescribeCustomerVoucherUsageDetailsResponse: DescribeCustomerVoucherUsageDetailsResponse,
|
|
7112
|
+
DescribeCustomerOwnCostExplorerSummaryResponse: DescribeCustomerOwnCostExplorerSummaryResponse,
|
|
7113
|
+
ModifyClientRemarkResponse: ModifyClientRemarkResponse,
|
|
6413
7114
|
QueryInvitationInfoData: QueryInvitationInfoData,
|
|
7115
|
+
DescribeCustomerVoucherUsageDetailsResponse: DescribeCustomerVoucherUsageDetailsResponse,
|
|
7116
|
+
DescribeBillSummaryByPayModeRequest: DescribeBillSummaryByPayModeRequest,
|
|
6414
7117
|
QuerySubAgentsDetailV2Request: QuerySubAgentsDetailV2Request,
|
|
6415
|
-
|
|
7118
|
+
DescribeCustomerBillSummaryResponse: DescribeCustomerBillSummaryResponse,
|
|
6416
7119
|
AllocateCreditPoolRequest: AllocateCreditPoolRequest,
|
|
6417
7120
|
AllocateCustomerCreditResponse: AllocateCustomerCreditResponse,
|
|
7121
|
+
CostAnalyzeFilterDetail: CostAnalyzeFilterDetail,
|
|
6418
7122
|
QueryT1IndirectCustomersDetailResponse: QueryT1IndirectCustomersDetailResponse,
|
|
6419
7123
|
QueryVoucherAmountByUinRequest: QueryVoucherAmountByUinRequest,
|
|
6420
7124
|
GetCountryCodesRequest: GetCountryCodesRequest,
|
|
6421
7125
|
ForceQNResponse: ForceQNResponse,
|
|
6422
7126
|
DescribeBillDetailResponse: DescribeBillDetailResponse,
|
|
6423
|
-
|
|
7127
|
+
DescribeCustomerUinRequest: DescribeCustomerUinRequest,
|
|
6424
7128
|
DescribeBillDownloadUrlResponse: DescribeBillDownloadUrlResponse,
|
|
6425
7129
|
DescribeCustomerVoucherListRequest: DescribeCustomerVoucherListRequest,
|
|
6426
|
-
DescribeCustomerUinRequest: DescribeCustomerUinRequest,
|
|
6427
7130
|
TradeOneNode: TradeOneNode,
|
|
6428
7131
|
DescribeRebateDownloadUrlResponse: DescribeRebateDownloadUrlResponse,
|
|
7132
|
+
QueryDirectCustomersCreditResponse: QueryDirectCustomersCreditResponse,
|
|
6429
7133
|
QuerySubAgentsDetailV2ResponseData: QuerySubAgentsDetailV2ResponseData,
|
|
6430
7134
|
DescribeBillSummaryResponse: DescribeBillSummaryResponse,
|
|
6431
|
-
|
|
7135
|
+
DescribeCustomerOwnVoucherUsageDetailsRequest: DescribeCustomerOwnVoucherUsageDetailsRequest,
|
|
6432
7136
|
DescribeCustomerVoucherItem: DescribeCustomerVoucherItem,
|
|
6433
7137
|
QueryCustomersCreditRequest: QueryCustomersCreditRequest,
|
|
6434
7138
|
QueryPolicyProductListByCodeRequest: QueryPolicyProductListByCodeRequest,
|
|
6435
7139
|
QueryT1IndirectCustomersDetailResponseData: QueryT1IndirectCustomersDetailResponseData,
|
|
7140
|
+
DescribeCustomerOwnCostExplorerSummaryRequest: DescribeCustomerOwnCostExplorerSummaryRequest,
|
|
6436
7141
|
DescribeCustomerOwnVoucherItem: DescribeCustomerOwnVoucherItem,
|
|
6437
7142
|
DescribeCustomerInfoResponse: DescribeCustomerInfoResponse,
|
|
6438
|
-
DescribeCustomerOwnVoucherUsageDetailsRequest: DescribeCustomerOwnVoucherUsageDetailsRequest,
|
|
6439
7143
|
QueryVoucherPoolResponse: QueryVoucherPoolResponse,
|
|
6440
7144
|
QueryAccountVerificationStatusRequest: QueryAccountVerificationStatusRequest,
|
|
7145
|
+
DescribeCustomerOwnCostExplorerFilterRequest: DescribeCustomerOwnCostExplorerFilterRequest,
|
|
6441
7146
|
ActionSummaryOverviewItem: ActionSummaryOverviewItem,
|
|
6442
7147
|
QueryPendingClientsV2Response: QueryPendingClientsV2Response,
|
|
6443
7148
|
AllocateCreditPoolResponse: AllocateCreditPoolResponse,
|
|
6444
|
-
|
|
7149
|
+
PeriodItemDetail: PeriodItemDetail,
|
|
6445
7150
|
QueryCreditAllocationHistoryRequest: QueryCreditAllocationHistoryRequest,
|
|
6446
7151
|
DescribeCustomerUinResponse: DescribeCustomerUinResponse,
|
|
6447
7152
|
DescribeCustomerBillDetailByDayResponse: DescribeCustomerBillDetailByDayResponse,
|
|
@@ -6452,6 +7157,7 @@ module.exports = {
|
|
|
6452
7157
|
QueryCustomersCreditData: QueryCustomersCreditData,
|
|
6453
7158
|
QueryCustomersCreditResponse: QueryCustomersCreditResponse,
|
|
6454
7159
|
SendVerifyCodeRequest: SendVerifyCodeRequest,
|
|
7160
|
+
BillQueryFilterMsg: BillQueryFilterMsg,
|
|
6455
7161
|
QueryVoucherListByUinRequest: QueryVoucherListByUinRequest,
|
|
6456
7162
|
QueryVoucherAmountByUinResponse: QueryVoucherAmountByUinResponse,
|
|
6457
7163
|
QueryVoucherAmountByUinItem: QueryVoucherAmountByUinItem,
|
|
@@ -6468,6 +7174,7 @@ module.exports = {
|
|
|
6468
7174
|
ApproveClientApplyResponse: ApproveClientApplyResponse,
|
|
6469
7175
|
CustomerBillDetailData: CustomerBillDetailData,
|
|
6470
7176
|
TagInfo: TagInfo,
|
|
7177
|
+
QueryInvitationInfoRequest: QueryInvitationInfoRequest,
|
|
6471
7178
|
QueryCreditByUinListResponse: QueryCreditByUinListResponse,
|
|
6472
7179
|
BusinessSummaryOverviewItem: BusinessSummaryOverviewItem,
|
|
6473
7180
|
ForceQNRequest: ForceQNRequest,
|
|
@@ -6482,6 +7189,7 @@ module.exports = {
|
|
|
6482
7189
|
QueryCustomerBillingQuotaRequest: QueryCustomerBillingQuotaRequest,
|
|
6483
7190
|
DescribeCustomerInfoData: DescribeCustomerInfoData,
|
|
6484
7191
|
CreateAndSendClientInvitationMailRequest: CreateAndSendClientInvitationMailRequest,
|
|
7192
|
+
DimensionPeriodData: DimensionPeriodData,
|
|
6485
7193
|
DescribeRebateDownloadUrlRequest: DescribeRebateDownloadUrlRequest,
|
|
6486
7194
|
SendVerifyCodeResponse: SendVerifyCodeResponse,
|
|
6487
7195
|
|