tencentcloud-sdk-nodejs-intl-en 3.0.1365 → 3.0.1366
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/common/sdk_version.js +1 -1
- package/tencentcloud/cynosdb/v20190107/models.js +75 -94
- 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 +43 -28
- package/tencentcloud/intlpartnersmgt/v20220928/models.js +410 -139
- package/tencentcloud/ocr/v20181119/models.js +12720 -37
- package/tencentcloud/ocr/v20181119/ocr_client.js +1157 -0
- package/tencentcloud/tdmysql/v20211122/models.js +6027 -896
- package/tencentcloud/tdmysql/v20211122/tdmysql_client.js +376 -111
|
@@ -804,6 +804,46 @@ class DescribeBillSummaryByRegionRequest extends AbstractModel {
|
|
|
804
804
|
}
|
|
805
805
|
}
|
|
806
806
|
|
|
807
|
+
/**
|
|
808
|
+
* DescribeCustomerOwnCostExplorerFilter response structure.
|
|
809
|
+
* @class
|
|
810
|
+
*/
|
|
811
|
+
class DescribeCustomerOwnCostExplorerFilterResponse extends AbstractModel {
|
|
812
|
+
constructor(){
|
|
813
|
+
super();
|
|
814
|
+
|
|
815
|
+
/**
|
|
816
|
+
* <p>Filter information</p>
|
|
817
|
+
* @type {CostAnalyzeFilterDetail || null}
|
|
818
|
+
*/
|
|
819
|
+
this.Data = null;
|
|
820
|
+
|
|
821
|
+
/**
|
|
822
|
+
* 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.
|
|
823
|
+
* @type {string || null}
|
|
824
|
+
*/
|
|
825
|
+
this.RequestId = null;
|
|
826
|
+
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
/**
|
|
830
|
+
* @private
|
|
831
|
+
*/
|
|
832
|
+
deserialize(params) {
|
|
833
|
+
if (!params) {
|
|
834
|
+
return;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
if (params.Data) {
|
|
838
|
+
let obj = new CostAnalyzeFilterDetail();
|
|
839
|
+
obj.deserialize(params.Data)
|
|
840
|
+
this.Data = obj;
|
|
841
|
+
}
|
|
842
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
843
|
+
|
|
844
|
+
}
|
|
845
|
+
}
|
|
846
|
+
|
|
807
847
|
/**
|
|
808
848
|
* DescribeCustomerBillDetail request structure.
|
|
809
849
|
* @class
|
|
@@ -1311,24 +1351,24 @@ class DescribeBillSummaryByProductRequest extends AbstractModel {
|
|
|
1311
1351
|
}
|
|
1312
1352
|
|
|
1313
1353
|
/**
|
|
1314
|
-
*
|
|
1354
|
+
* DescribeBillDownloadUrl request structure.
|
|
1315
1355
|
* @class
|
|
1316
1356
|
*/
|
|
1317
|
-
class
|
|
1357
|
+
class DescribeBillDownloadUrlRequest extends AbstractModel {
|
|
1318
1358
|
constructor(){
|
|
1319
1359
|
super();
|
|
1320
1360
|
|
|
1321
1361
|
/**
|
|
1322
|
-
*
|
|
1362
|
+
* 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
1363
|
* @type {string || null}
|
|
1324
1364
|
*/
|
|
1325
|
-
this.
|
|
1365
|
+
this.Month = null;
|
|
1326
1366
|
|
|
1327
1367
|
/**
|
|
1328
|
-
*
|
|
1368
|
+
* Type of bill. Valid values: L2 or L3
|
|
1329
1369
|
* @type {string || null}
|
|
1330
1370
|
*/
|
|
1331
|
-
this.
|
|
1371
|
+
this.FileType = null;
|
|
1332
1372
|
|
|
1333
1373
|
}
|
|
1334
1374
|
|
|
@@ -1339,8 +1379,8 @@ class ModifyClientRemarkResponse extends AbstractModel {
|
|
|
1339
1379
|
if (!params) {
|
|
1340
1380
|
return;
|
|
1341
1381
|
}
|
|
1342
|
-
this.
|
|
1343
|
-
this.
|
|
1382
|
+
this.Month = 'Month' in params ? params.Month : null;
|
|
1383
|
+
this.FileType = 'FileType' in params ? params.FileType : null;
|
|
1344
1384
|
|
|
1345
1385
|
}
|
|
1346
1386
|
}
|
|
@@ -2067,24 +2107,24 @@ class DescribeCustomerOwnVoucherListResponse extends AbstractModel {
|
|
|
2067
2107
|
}
|
|
2068
2108
|
|
|
2069
2109
|
/**
|
|
2070
|
-
*
|
|
2110
|
+
* ModifyClientRemark response structure.
|
|
2071
2111
|
* @class
|
|
2072
2112
|
*/
|
|
2073
|
-
class
|
|
2113
|
+
class ModifyClientRemarkResponse extends AbstractModel {
|
|
2074
2114
|
constructor(){
|
|
2075
2115
|
super();
|
|
2076
2116
|
|
|
2077
2117
|
/**
|
|
2078
|
-
*
|
|
2118
|
+
* If successful, returns the new customer remarks
|
|
2079
2119
|
* @type {string || null}
|
|
2080
2120
|
*/
|
|
2081
|
-
this.
|
|
2121
|
+
this.ClientRemark = null;
|
|
2082
2122
|
|
|
2083
2123
|
/**
|
|
2084
|
-
*
|
|
2124
|
+
* 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
2125
|
* @type {string || null}
|
|
2086
2126
|
*/
|
|
2087
|
-
this.
|
|
2127
|
+
this.RequestId = null;
|
|
2088
2128
|
|
|
2089
2129
|
}
|
|
2090
2130
|
|
|
@@ -2095,31 +2135,71 @@ class DescribeBillDownloadUrlRequest extends AbstractModel {
|
|
|
2095
2135
|
if (!params) {
|
|
2096
2136
|
return;
|
|
2097
2137
|
}
|
|
2098
|
-
this.
|
|
2099
|
-
this.
|
|
2138
|
+
this.ClientRemark = 'ClientRemark' in params ? params.ClientRemark : null;
|
|
2139
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2100
2140
|
|
|
2101
2141
|
}
|
|
2102
2142
|
}
|
|
2103
2143
|
|
|
2104
2144
|
/**
|
|
2105
|
-
*
|
|
2145
|
+
* Invitation link information.
|
|
2106
2146
|
* @class
|
|
2107
2147
|
*/
|
|
2108
|
-
class
|
|
2148
|
+
class QueryInvitationInfoData extends AbstractModel {
|
|
2109
2149
|
constructor(){
|
|
2110
2150
|
super();
|
|
2111
2151
|
|
|
2112
2152
|
/**
|
|
2113
|
-
*
|
|
2153
|
+
* Invitation link token.
|
|
2114
2154
|
* @type {string || null}
|
|
2115
2155
|
*/
|
|
2116
|
-
this.
|
|
2156
|
+
this.InvitationToken = null;
|
|
2117
2157
|
|
|
2118
2158
|
/**
|
|
2119
|
-
*
|
|
2159
|
+
* Creation time of the invitation link.
|
|
2160
|
+
* @type {string || null}
|
|
2161
|
+
*/
|
|
2162
|
+
this.CreateTime = null;
|
|
2163
|
+
|
|
2164
|
+
/**
|
|
2165
|
+
* Invite link status.
|
|
2166
|
+
1: Unused.
|
|
2167
|
+
2: Used.
|
|
2120
2168
|
* @type {number || null}
|
|
2121
2169
|
*/
|
|
2122
|
-
this.
|
|
2170
|
+
this.Status = null;
|
|
2171
|
+
|
|
2172
|
+
/**
|
|
2173
|
+
* Indicates the usage time of the invitation link.
|
|
2174
|
+
* @type {string || null}
|
|
2175
|
+
*/
|
|
2176
|
+
this.UseTime = null;
|
|
2177
|
+
|
|
2178
|
+
/**
|
|
2179
|
+
* Customer uin.
|
|
2180
|
+
* @type {number || null}
|
|
2181
|
+
*/
|
|
2182
|
+
this.ClientUin = null;
|
|
2183
|
+
|
|
2184
|
+
/**
|
|
2185
|
+
* Customer mailbox.
|
|
2186
|
+
* @type {string || null}
|
|
2187
|
+
*/
|
|
2188
|
+
this.ClientMail = null;
|
|
2189
|
+
|
|
2190
|
+
/**
|
|
2191
|
+
* Customer type.
|
|
2192
|
+
1: Second-Level reseller.
|
|
2193
|
+
2: Sub-Customer.
|
|
2194
|
+
* @type {number || null}
|
|
2195
|
+
*/
|
|
2196
|
+
this.ClientType = null;
|
|
2197
|
+
|
|
2198
|
+
/**
|
|
2199
|
+
* The binding time of the customer.
|
|
2200
|
+
* @type {string || null}
|
|
2201
|
+
*/
|
|
2202
|
+
this.BindTime = null;
|
|
2123
2203
|
|
|
2124
2204
|
}
|
|
2125
2205
|
|
|
@@ -2130,8 +2210,14 @@ class DescribeBillSummaryByPayModeRequest extends AbstractModel {
|
|
|
2130
2210
|
if (!params) {
|
|
2131
2211
|
return;
|
|
2132
2212
|
}
|
|
2133
|
-
this.
|
|
2134
|
-
this.
|
|
2213
|
+
this.InvitationToken = 'InvitationToken' in params ? params.InvitationToken : null;
|
|
2214
|
+
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
2215
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
2216
|
+
this.UseTime = 'UseTime' in params ? params.UseTime : null;
|
|
2217
|
+
this.ClientUin = 'ClientUin' in params ? params.ClientUin : null;
|
|
2218
|
+
this.ClientMail = 'ClientMail' in params ? params.ClientMail : null;
|
|
2219
|
+
this.ClientType = 'ClientType' in params ? params.ClientType : null;
|
|
2220
|
+
this.BindTime = 'BindTime' in params ? params.BindTime : null;
|
|
2135
2221
|
|
|
2136
2222
|
}
|
|
2137
2223
|
}
|
|
@@ -2229,64 +2315,24 @@ class DescribeCustomerVoucherUsageDetailsResponse extends AbstractModel {
|
|
|
2229
2315
|
}
|
|
2230
2316
|
|
|
2231
2317
|
/**
|
|
2232
|
-
*
|
|
2318
|
+
* DescribeBillSummaryByPayMode request structure.
|
|
2233
2319
|
* @class
|
|
2234
2320
|
*/
|
|
2235
|
-
class
|
|
2321
|
+
class DescribeBillSummaryByPayModeRequest extends AbstractModel {
|
|
2236
2322
|
constructor(){
|
|
2237
2323
|
super();
|
|
2238
2324
|
|
|
2239
2325
|
/**
|
|
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.
|
|
2326
|
+
* Bill month in the format of "yyyy-MM"
|
|
2273
2327
|
* @type {string || null}
|
|
2274
2328
|
*/
|
|
2275
|
-
this.
|
|
2329
|
+
this.BillMonth = null;
|
|
2276
2330
|
|
|
2277
2331
|
/**
|
|
2278
|
-
* Customer
|
|
2279
|
-
1: Second-Level reseller.
|
|
2280
|
-
2: Sub-Customer.
|
|
2332
|
+
* Customer UIN
|
|
2281
2333
|
* @type {number || null}
|
|
2282
2334
|
*/
|
|
2283
|
-
this.
|
|
2284
|
-
|
|
2285
|
-
/**
|
|
2286
|
-
* The binding time of the customer.
|
|
2287
|
-
* @type {string || null}
|
|
2288
|
-
*/
|
|
2289
|
-
this.BindTime = null;
|
|
2335
|
+
this.CustomerUin = null;
|
|
2290
2336
|
|
|
2291
2337
|
}
|
|
2292
2338
|
|
|
@@ -2297,14 +2343,8 @@ class QueryInvitationInfoData extends AbstractModel {
|
|
|
2297
2343
|
if (!params) {
|
|
2298
2344
|
return;
|
|
2299
2345
|
}
|
|
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;
|
|
2346
|
+
this.BillMonth = 'BillMonth' in params ? params.BillMonth : null;
|
|
2347
|
+
this.CustomerUin = 'CustomerUin' in params ? params.CustomerUin : null;
|
|
2308
2348
|
|
|
2309
2349
|
}
|
|
2310
2350
|
}
|
|
@@ -2495,6 +2535,154 @@ class AllocateCustomerCreditResponse extends AbstractModel {
|
|
|
2495
2535
|
}
|
|
2496
2536
|
}
|
|
2497
2537
|
|
|
2538
|
+
/**
|
|
2539
|
+
* Advanced filtering for cost analysis
|
|
2540
|
+
* @class
|
|
2541
|
+
*/
|
|
2542
|
+
class CostAnalyzeFilterDetail extends AbstractModel {
|
|
2543
|
+
constructor(){
|
|
2544
|
+
super();
|
|
2545
|
+
|
|
2546
|
+
/**
|
|
2547
|
+
* <p>Product key-value pair.</p>
|
|
2548
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2549
|
+
* @type {Array.<BillQueryFilterMsg> || null}
|
|
2550
|
+
*/
|
|
2551
|
+
this.Business = null;
|
|
2552
|
+
|
|
2553
|
+
/**
|
|
2554
|
+
* <p>Region key-value pair</p>
|
|
2555
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2556
|
+
* @type {Array.<BillQueryFilterMsg> || null}
|
|
2557
|
+
*/
|
|
2558
|
+
this.Region = null;
|
|
2559
|
+
|
|
2560
|
+
/**
|
|
2561
|
+
* <p>Availability zone key-value pair</p>
|
|
2562
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2563
|
+
* @type {Array.<BillQueryFilterMsg> || null}
|
|
2564
|
+
*/
|
|
2565
|
+
this.Zone = null;
|
|
2566
|
+
|
|
2567
|
+
/**
|
|
2568
|
+
* <p>Transaction type key-value pair</p>
|
|
2569
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2570
|
+
* @type {Array.<BillQueryFilterMsg> || null}
|
|
2571
|
+
*/
|
|
2572
|
+
this.ActionType = null;
|
|
2573
|
+
|
|
2574
|
+
/**
|
|
2575
|
+
* <p>Key-value pair of payment mode</p>
|
|
2576
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2577
|
+
* @type {Array.<BillQueryFilterMsg> || null}
|
|
2578
|
+
*/
|
|
2579
|
+
this.PayMode = null;
|
|
2580
|
+
|
|
2581
|
+
/**
|
|
2582
|
+
* <p>Project key-value pair</p>
|
|
2583
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2584
|
+
* @type {Array.<BillQueryFilterMsg> || null}
|
|
2585
|
+
*/
|
|
2586
|
+
this.Project = null;
|
|
2587
|
+
|
|
2588
|
+
/**
|
|
2589
|
+
* <p>Payer uin information</p>
|
|
2590
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2591
|
+
* @type {Array.<BillQueryFilterMsg> || null}
|
|
2592
|
+
*/
|
|
2593
|
+
this.PayerUin = null;
|
|
2594
|
+
|
|
2595
|
+
/**
|
|
2596
|
+
* <p>Sub-account uin information</p>
|
|
2597
|
+
* @type {Array.<BillQueryFilterMsg> || null}
|
|
2598
|
+
*/
|
|
2599
|
+
this.OwnerUin = null;
|
|
2600
|
+
|
|
2601
|
+
}
|
|
2602
|
+
|
|
2603
|
+
/**
|
|
2604
|
+
* @private
|
|
2605
|
+
*/
|
|
2606
|
+
deserialize(params) {
|
|
2607
|
+
if (!params) {
|
|
2608
|
+
return;
|
|
2609
|
+
}
|
|
2610
|
+
|
|
2611
|
+
if (params.Business) {
|
|
2612
|
+
this.Business = new Array();
|
|
2613
|
+
for (let z in params.Business) {
|
|
2614
|
+
let obj = new BillQueryFilterMsg();
|
|
2615
|
+
obj.deserialize(params.Business[z]);
|
|
2616
|
+
this.Business.push(obj);
|
|
2617
|
+
}
|
|
2618
|
+
}
|
|
2619
|
+
|
|
2620
|
+
if (params.Region) {
|
|
2621
|
+
this.Region = new Array();
|
|
2622
|
+
for (let z in params.Region) {
|
|
2623
|
+
let obj = new BillQueryFilterMsg();
|
|
2624
|
+
obj.deserialize(params.Region[z]);
|
|
2625
|
+
this.Region.push(obj);
|
|
2626
|
+
}
|
|
2627
|
+
}
|
|
2628
|
+
|
|
2629
|
+
if (params.Zone) {
|
|
2630
|
+
this.Zone = new Array();
|
|
2631
|
+
for (let z in params.Zone) {
|
|
2632
|
+
let obj = new BillQueryFilterMsg();
|
|
2633
|
+
obj.deserialize(params.Zone[z]);
|
|
2634
|
+
this.Zone.push(obj);
|
|
2635
|
+
}
|
|
2636
|
+
}
|
|
2637
|
+
|
|
2638
|
+
if (params.ActionType) {
|
|
2639
|
+
this.ActionType = new Array();
|
|
2640
|
+
for (let z in params.ActionType) {
|
|
2641
|
+
let obj = new BillQueryFilterMsg();
|
|
2642
|
+
obj.deserialize(params.ActionType[z]);
|
|
2643
|
+
this.ActionType.push(obj);
|
|
2644
|
+
}
|
|
2645
|
+
}
|
|
2646
|
+
|
|
2647
|
+
if (params.PayMode) {
|
|
2648
|
+
this.PayMode = new Array();
|
|
2649
|
+
for (let z in params.PayMode) {
|
|
2650
|
+
let obj = new BillQueryFilterMsg();
|
|
2651
|
+
obj.deserialize(params.PayMode[z]);
|
|
2652
|
+
this.PayMode.push(obj);
|
|
2653
|
+
}
|
|
2654
|
+
}
|
|
2655
|
+
|
|
2656
|
+
if (params.Project) {
|
|
2657
|
+
this.Project = new Array();
|
|
2658
|
+
for (let z in params.Project) {
|
|
2659
|
+
let obj = new BillQueryFilterMsg();
|
|
2660
|
+
obj.deserialize(params.Project[z]);
|
|
2661
|
+
this.Project.push(obj);
|
|
2662
|
+
}
|
|
2663
|
+
}
|
|
2664
|
+
|
|
2665
|
+
if (params.PayerUin) {
|
|
2666
|
+
this.PayerUin = new Array();
|
|
2667
|
+
for (let z in params.PayerUin) {
|
|
2668
|
+
let obj = new BillQueryFilterMsg();
|
|
2669
|
+
obj.deserialize(params.PayerUin[z]);
|
|
2670
|
+
this.PayerUin.push(obj);
|
|
2671
|
+
}
|
|
2672
|
+
}
|
|
2673
|
+
|
|
2674
|
+
if (params.OwnerUin) {
|
|
2675
|
+
this.OwnerUin = new Array();
|
|
2676
|
+
for (let z in params.OwnerUin) {
|
|
2677
|
+
let obj = new BillQueryFilterMsg();
|
|
2678
|
+
obj.deserialize(params.OwnerUin[z]);
|
|
2679
|
+
this.OwnerUin.push(obj);
|
|
2680
|
+
}
|
|
2681
|
+
}
|
|
2682
|
+
|
|
2683
|
+
}
|
|
2684
|
+
}
|
|
2685
|
+
|
|
2498
2686
|
/**
|
|
2499
2687
|
* QueryT1IndirectCustomersDetail response structure.
|
|
2500
2688
|
* @class
|
|
@@ -3131,18 +3319,36 @@ class DescribeBillSummaryResponse extends AbstractModel {
|
|
|
3131
3319
|
}
|
|
3132
3320
|
|
|
3133
3321
|
/**
|
|
3134
|
-
*
|
|
3322
|
+
* DescribeCustomerOwnVoucherUsageDetails request structure.
|
|
3135
3323
|
* @class
|
|
3136
3324
|
*/
|
|
3137
|
-
class
|
|
3325
|
+
class DescribeCustomerOwnVoucherUsageDetailsRequest extends AbstractModel {
|
|
3138
3326
|
constructor(){
|
|
3139
3327
|
super();
|
|
3140
3328
|
|
|
3141
3329
|
/**
|
|
3142
|
-
*
|
|
3143
|
-
* @type {
|
|
3330
|
+
* Page number, starting from 1
|
|
3331
|
+
* @type {number || null}
|
|
3144
3332
|
*/
|
|
3145
|
-
this.
|
|
3333
|
+
this.Page = null;
|
|
3334
|
+
|
|
3335
|
+
/**
|
|
3336
|
+
* Number of items per page, range 1-100
|
|
3337
|
+
* @type {number || null}
|
|
3338
|
+
*/
|
|
3339
|
+
this.PageSize = null;
|
|
3340
|
+
|
|
3341
|
+
/**
|
|
3342
|
+
* Voucher ID
|
|
3343
|
+
* @type {number || null}
|
|
3344
|
+
*/
|
|
3345
|
+
this.VoucherId = null;
|
|
3346
|
+
|
|
3347
|
+
/**
|
|
3348
|
+
* Voucher usage month
|
|
3349
|
+
* @type {string || null}
|
|
3350
|
+
*/
|
|
3351
|
+
this.Month = null;
|
|
3146
3352
|
|
|
3147
3353
|
}
|
|
3148
3354
|
|
|
@@ -3153,7 +3359,10 @@ class QueryInvitationInfoRequest extends AbstractModel {
|
|
|
3153
3359
|
if (!params) {
|
|
3154
3360
|
return;
|
|
3155
3361
|
}
|
|
3156
|
-
this.
|
|
3362
|
+
this.Page = 'Page' in params ? params.Page : null;
|
|
3363
|
+
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
3364
|
+
this.VoucherId = 'VoucherId' in params ? params.VoucherId : null;
|
|
3365
|
+
this.Month = 'Month' in params ? params.Month : null;
|
|
3157
3366
|
|
|
3158
3367
|
}
|
|
3159
3368
|
}
|
|
@@ -3553,55 +3762,6 @@ class DescribeCustomerInfoResponse extends AbstractModel {
|
|
|
3553
3762
|
}
|
|
3554
3763
|
}
|
|
3555
3764
|
|
|
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
3765
|
/**
|
|
3606
3766
|
* QueryVoucherPool response structure.
|
|
3607
3767
|
* @class
|
|
@@ -3693,6 +3853,48 @@ class QueryAccountVerificationStatusRequest extends AbstractModel {
|
|
|
3693
3853
|
}
|
|
3694
3854
|
}
|
|
3695
3855
|
|
|
3856
|
+
/**
|
|
3857
|
+
* DescribeCustomerOwnCostExplorerFilter request structure.
|
|
3858
|
+
* @class
|
|
3859
|
+
*/
|
|
3860
|
+
class DescribeCustomerOwnCostExplorerFilterRequest extends AbstractModel {
|
|
3861
|
+
constructor(){
|
|
3862
|
+
super();
|
|
3863
|
+
|
|
3864
|
+
/**
|
|
3865
|
+
* <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>
|
|
3866
|
+
* @type {string || null}
|
|
3867
|
+
*/
|
|
3868
|
+
this.StartTime = null;
|
|
3869
|
+
|
|
3870
|
+
/**
|
|
3871
|
+
* <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>
|
|
3872
|
+
* @type {string || null}
|
|
3873
|
+
*/
|
|
3874
|
+
this.EndTime = null;
|
|
3875
|
+
|
|
3876
|
+
/**
|
|
3877
|
+
* <p>Date type</p><p>Enumeration value:</p><ul><li>day: By day</li><li>month: Monthly</li></ul>
|
|
3878
|
+
* @type {string || null}
|
|
3879
|
+
*/
|
|
3880
|
+
this.PeriodType = null;
|
|
3881
|
+
|
|
3882
|
+
}
|
|
3883
|
+
|
|
3884
|
+
/**
|
|
3885
|
+
* @private
|
|
3886
|
+
*/
|
|
3887
|
+
deserialize(params) {
|
|
3888
|
+
if (!params) {
|
|
3889
|
+
return;
|
|
3890
|
+
}
|
|
3891
|
+
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
3892
|
+
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
3893
|
+
this.PeriodType = 'PeriodType' in params ? params.PeriodType : null;
|
|
3894
|
+
|
|
3895
|
+
}
|
|
3896
|
+
}
|
|
3897
|
+
|
|
3696
3898
|
/**
|
|
3697
3899
|
* Transaction type details in the customer bill data totaled by payment mode
|
|
3698
3900
|
* @class
|
|
@@ -4448,6 +4650,43 @@ The caller needs to ensure the validity and correctness of the mobile number. A
|
|
|
4448
4650
|
}
|
|
4449
4651
|
}
|
|
4450
4652
|
|
|
4653
|
+
/**
|
|
4654
|
+
* Query condition content kv format for bills
|
|
4655
|
+
* @class
|
|
4656
|
+
*/
|
|
4657
|
+
class BillQueryFilterMsg extends AbstractModel {
|
|
4658
|
+
constructor(){
|
|
4659
|
+
super();
|
|
4660
|
+
|
|
4661
|
+
/**
|
|
4662
|
+
* <p>Query condition key: various codes</p>
|
|
4663
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4664
|
+
* @type {string || null}
|
|
4665
|
+
*/
|
|
4666
|
+
this.Key = null;
|
|
4667
|
+
|
|
4668
|
+
/**
|
|
4669
|
+
* <p>Query condition value: Display name</p>
|
|
4670
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4671
|
+
* @type {string || null}
|
|
4672
|
+
*/
|
|
4673
|
+
this.Value = null;
|
|
4674
|
+
|
|
4675
|
+
}
|
|
4676
|
+
|
|
4677
|
+
/**
|
|
4678
|
+
* @private
|
|
4679
|
+
*/
|
|
4680
|
+
deserialize(params) {
|
|
4681
|
+
if (!params) {
|
|
4682
|
+
return;
|
|
4683
|
+
}
|
|
4684
|
+
this.Key = 'Key' in params ? params.Key : null;
|
|
4685
|
+
this.Value = 'Value' in params ? params.Value : null;
|
|
4686
|
+
|
|
4687
|
+
}
|
|
4688
|
+
}
|
|
4689
|
+
|
|
4451
4690
|
/**
|
|
4452
4691
|
* QueryVoucherListByUin request structure.
|
|
4453
4692
|
* @class
|
|
@@ -5346,6 +5585,34 @@ class TagInfo extends AbstractModel {
|
|
|
5346
5585
|
}
|
|
5347
5586
|
}
|
|
5348
5587
|
|
|
5588
|
+
/**
|
|
5589
|
+
* QueryInvitationInfo request structure.
|
|
5590
|
+
* @class
|
|
5591
|
+
*/
|
|
5592
|
+
class QueryInvitationInfoRequest extends AbstractModel {
|
|
5593
|
+
constructor(){
|
|
5594
|
+
super();
|
|
5595
|
+
|
|
5596
|
+
/**
|
|
5597
|
+
* Invite token. array member quantity value: [1, 100].
|
|
5598
|
+
* @type {Array.<string> || null}
|
|
5599
|
+
*/
|
|
5600
|
+
this.InvitationToken = null;
|
|
5601
|
+
|
|
5602
|
+
}
|
|
5603
|
+
|
|
5604
|
+
/**
|
|
5605
|
+
* @private
|
|
5606
|
+
*/
|
|
5607
|
+
deserialize(params) {
|
|
5608
|
+
if (!params) {
|
|
5609
|
+
return;
|
|
5610
|
+
}
|
|
5611
|
+
this.InvitationToken = 'InvitationToken' in params ? params.InvitationToken : null;
|
|
5612
|
+
|
|
5613
|
+
}
|
|
5614
|
+
}
|
|
5615
|
+
|
|
5349
5616
|
/**
|
|
5350
5617
|
* QueryCreditByUinList response structure.
|
|
5351
5618
|
* @class
|
|
@@ -6382,6 +6649,7 @@ module.exports = {
|
|
|
6382
6649
|
DescribeCustomerUinData: DescribeCustomerUinData,
|
|
6383
6650
|
CountryCodeItem: CountryCodeItem,
|
|
6384
6651
|
DescribeBillSummaryByRegionRequest: DescribeBillSummaryByRegionRequest,
|
|
6652
|
+
DescribeCustomerOwnCostExplorerFilterResponse: DescribeCustomerOwnCostExplorerFilterResponse,
|
|
6385
6653
|
DescribeCustomerBillDetailRequest: DescribeCustomerBillDetailRequest,
|
|
6386
6654
|
QueryPendingSubAgentsV2Request: QueryPendingSubAgentsV2Request,
|
|
6387
6655
|
QueryCreditAllocationHistoryResponse: QueryCreditAllocationHistoryResponse,
|
|
@@ -6392,7 +6660,7 @@ module.exports = {
|
|
|
6392
6660
|
QueryPartnerCreditRequest: QueryPartnerCreditRequest,
|
|
6393
6661
|
GetTradeConfigListRequest: GetTradeConfigListRequest,
|
|
6394
6662
|
DescribeBillSummaryByProductRequest: DescribeBillSummaryByProductRequest,
|
|
6395
|
-
|
|
6663
|
+
DescribeBillDownloadUrlRequest: DescribeBillDownloadUrlRequest,
|
|
6396
6664
|
QueryPartnerCreditResponse: QueryPartnerCreditResponse,
|
|
6397
6665
|
QueryVoucherListByUinResponse: QueryVoucherListByUinResponse,
|
|
6398
6666
|
QueryVoucherPoolRequest: QueryVoucherPoolRequest,
|
|
@@ -6407,14 +6675,15 @@ module.exports = {
|
|
|
6407
6675
|
QueryAccountVerificationStatusResponse: QueryAccountVerificationStatusResponse,
|
|
6408
6676
|
AllocateCustomerCreditRequest: AllocateCustomerCreditRequest,
|
|
6409
6677
|
DescribeCustomerOwnVoucherListResponse: DescribeCustomerOwnVoucherListResponse,
|
|
6410
|
-
|
|
6411
|
-
DescribeBillSummaryByPayModeRequest: DescribeBillSummaryByPayModeRequest,
|
|
6412
|
-
DescribeCustomerVoucherUsageDetailsResponse: DescribeCustomerVoucherUsageDetailsResponse,
|
|
6678
|
+
ModifyClientRemarkResponse: ModifyClientRemarkResponse,
|
|
6413
6679
|
QueryInvitationInfoData: QueryInvitationInfoData,
|
|
6680
|
+
DescribeCustomerVoucherUsageDetailsResponse: DescribeCustomerVoucherUsageDetailsResponse,
|
|
6681
|
+
DescribeBillSummaryByPayModeRequest: DescribeBillSummaryByPayModeRequest,
|
|
6414
6682
|
QuerySubAgentsDetailV2Request: QuerySubAgentsDetailV2Request,
|
|
6415
6683
|
GetCountryCodesResponse: GetCountryCodesResponse,
|
|
6416
6684
|
AllocateCreditPoolRequest: AllocateCreditPoolRequest,
|
|
6417
6685
|
AllocateCustomerCreditResponse: AllocateCustomerCreditResponse,
|
|
6686
|
+
CostAnalyzeFilterDetail: CostAnalyzeFilterDetail,
|
|
6418
6687
|
QueryT1IndirectCustomersDetailResponse: QueryT1IndirectCustomersDetailResponse,
|
|
6419
6688
|
QueryVoucherAmountByUinRequest: QueryVoucherAmountByUinRequest,
|
|
6420
6689
|
GetCountryCodesRequest: GetCountryCodesRequest,
|
|
@@ -6428,16 +6697,16 @@ module.exports = {
|
|
|
6428
6697
|
DescribeRebateDownloadUrlResponse: DescribeRebateDownloadUrlResponse,
|
|
6429
6698
|
QuerySubAgentsDetailV2ResponseData: QuerySubAgentsDetailV2ResponseData,
|
|
6430
6699
|
DescribeBillSummaryResponse: DescribeBillSummaryResponse,
|
|
6431
|
-
|
|
6700
|
+
DescribeCustomerOwnVoucherUsageDetailsRequest: DescribeCustomerOwnVoucherUsageDetailsRequest,
|
|
6432
6701
|
DescribeCustomerVoucherItem: DescribeCustomerVoucherItem,
|
|
6433
6702
|
QueryCustomersCreditRequest: QueryCustomersCreditRequest,
|
|
6434
6703
|
QueryPolicyProductListByCodeRequest: QueryPolicyProductListByCodeRequest,
|
|
6435
6704
|
QueryT1IndirectCustomersDetailResponseData: QueryT1IndirectCustomersDetailResponseData,
|
|
6436
6705
|
DescribeCustomerOwnVoucherItem: DescribeCustomerOwnVoucherItem,
|
|
6437
6706
|
DescribeCustomerInfoResponse: DescribeCustomerInfoResponse,
|
|
6438
|
-
DescribeCustomerOwnVoucherUsageDetailsRequest: DescribeCustomerOwnVoucherUsageDetailsRequest,
|
|
6439
6707
|
QueryVoucherPoolResponse: QueryVoucherPoolResponse,
|
|
6440
6708
|
QueryAccountVerificationStatusRequest: QueryAccountVerificationStatusRequest,
|
|
6709
|
+
DescribeCustomerOwnCostExplorerFilterRequest: DescribeCustomerOwnCostExplorerFilterRequest,
|
|
6441
6710
|
ActionSummaryOverviewItem: ActionSummaryOverviewItem,
|
|
6442
6711
|
QueryPendingClientsV2Response: QueryPendingClientsV2Response,
|
|
6443
6712
|
AllocateCreditPoolResponse: AllocateCreditPoolResponse,
|
|
@@ -6452,6 +6721,7 @@ module.exports = {
|
|
|
6452
6721
|
QueryCustomersCreditData: QueryCustomersCreditData,
|
|
6453
6722
|
QueryCustomersCreditResponse: QueryCustomersCreditResponse,
|
|
6454
6723
|
SendVerifyCodeRequest: SendVerifyCodeRequest,
|
|
6724
|
+
BillQueryFilterMsg: BillQueryFilterMsg,
|
|
6455
6725
|
QueryVoucherListByUinRequest: QueryVoucherListByUinRequest,
|
|
6456
6726
|
QueryVoucherAmountByUinResponse: QueryVoucherAmountByUinResponse,
|
|
6457
6727
|
QueryVoucherAmountByUinItem: QueryVoucherAmountByUinItem,
|
|
@@ -6468,6 +6738,7 @@ module.exports = {
|
|
|
6468
6738
|
ApproveClientApplyResponse: ApproveClientApplyResponse,
|
|
6469
6739
|
CustomerBillDetailData: CustomerBillDetailData,
|
|
6470
6740
|
TagInfo: TagInfo,
|
|
6741
|
+
QueryInvitationInfoRequest: QueryInvitationInfoRequest,
|
|
6471
6742
|
QueryCreditByUinListResponse: QueryCreditByUinListResponse,
|
|
6472
6743
|
BusinessSummaryOverviewItem: BusinessSummaryOverviewItem,
|
|
6473
6744
|
ForceQNRequest: ForceQNRequest,
|