tencentcloud-sdk-nodejs-intl-en 3.0.1096 → 3.0.1098
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tencentcloud/billing/v20180709/billing_client.js +15 -0
- package/tencentcloud/billing/v20180709/models.js +417 -0
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/intlpartnersmgt/v20220928/models.js +39 -18
- package/tencentcloud/ocr/v20181119/models.js +21 -0
- package/tencentcloud/teo/v20220901/models.js +1 -1
package/package.json
CHANGED
|
@@ -25,6 +25,7 @@ const ConditionBusiness = models.ConditionBusiness;
|
|
|
25
25
|
const AnalyseActionTypeDetail = models.AnalyseActionTypeDetail;
|
|
26
26
|
const DescribeCostExplorerSummaryRequest = models.DescribeCostExplorerSummaryRequest;
|
|
27
27
|
const DescribeCostSummaryByProductResponse = models.DescribeCostSummaryByProductResponse;
|
|
28
|
+
const ProductInfo = models.ProductInfo;
|
|
28
29
|
const DeleteAllocationTagResponse = models.DeleteAllocationTagResponse;
|
|
29
30
|
const DescribeBillDetailForOrganizationResponse = models.DescribeBillDetailForOrganizationResponse;
|
|
30
31
|
const BillDetailComponentConfig = models.BillDetailComponentConfig;
|
|
@@ -61,6 +62,8 @@ const ApplicableProducts = models.ApplicableProducts;
|
|
|
61
62
|
const DescribeBillSummaryByProjectRequest = models.DescribeBillSummaryByProjectRequest;
|
|
62
63
|
const BillDetail = models.BillDetail;
|
|
63
64
|
const DescribeBillDetailResponse = models.DescribeBillDetailResponse;
|
|
65
|
+
const Deal = models.Deal;
|
|
66
|
+
const DescribeDealsByCondResponse = models.DescribeDealsByCondResponse;
|
|
64
67
|
const ConditionPayMode = models.ConditionPayMode;
|
|
65
68
|
const DescribeBillSummaryByProjectResponse = models.DescribeBillSummaryByProjectResponse;
|
|
66
69
|
const DescribeBillAdjustInfoRequest = models.DescribeBillAdjustInfoRequest;
|
|
@@ -112,6 +115,7 @@ const DescribeAccountBalanceResponse = models.DescribeAccountBalanceResponse;
|
|
|
112
115
|
const BusinessSummaryOverviewItem = models.BusinessSummaryOverviewItem;
|
|
113
116
|
const UsageRecords = models.UsageRecords;
|
|
114
117
|
const DescribeVoucherInfoRequest = models.DescribeVoucherInfoRequest;
|
|
118
|
+
const DescribeDealsByCondRequest = models.DescribeDealsByCondRequest;
|
|
115
119
|
const DescribeDosageCosDetailByDateResponse = models.DescribeDosageCosDetailByDateResponse;
|
|
116
120
|
const ProjectSummaryOverviewItem = models.ProjectSummaryOverviewItem;
|
|
117
121
|
const DescribeBillSummaryForOrganizationResponse = models.DescribeBillSummaryForOrganizationResponse;
|
|
@@ -402,6 +406,17 @@ Note: The API request may fail due to network instability or other exceptions. I
|
|
|
402
406
|
this.request("DeleteAllocationTag", req, resp, cb);
|
|
403
407
|
}
|
|
404
408
|
|
|
409
|
+
/**
|
|
410
|
+
* Querying orders
|
|
411
|
+
* @param {DescribeDealsByCondRequest} req
|
|
412
|
+
* @param {function(string, DescribeDealsByCondResponse):void} cb
|
|
413
|
+
* @public
|
|
414
|
+
*/
|
|
415
|
+
DescribeDealsByCond(req, cb) {
|
|
416
|
+
let resp = new DescribeDealsByCondResponse();
|
|
417
|
+
this.request("DescribeDealsByCond", req, resp, cb);
|
|
418
|
+
}
|
|
419
|
+
|
|
405
420
|
/**
|
|
406
421
|
* Gets the bill summarized according to product
|
|
407
422
|
* @param {DescribeBillSummaryByProductRequest} req
|
|
@@ -566,6 +566,41 @@ class DescribeCostSummaryByProductResponse extends AbstractModel {
|
|
|
566
566
|
}
|
|
567
567
|
}
|
|
568
568
|
|
|
569
|
+
/**
|
|
570
|
+
* Product details
|
|
571
|
+
* @class
|
|
572
|
+
*/
|
|
573
|
+
class ProductInfo extends AbstractModel {
|
|
574
|
+
constructor(){
|
|
575
|
+
super();
|
|
576
|
+
|
|
577
|
+
/**
|
|
578
|
+
* Product detail name identifier
|
|
579
|
+
* @type {string || null}
|
|
580
|
+
*/
|
|
581
|
+
this.Name = null;
|
|
582
|
+
|
|
583
|
+
/**
|
|
584
|
+
* Product details
|
|
585
|
+
* @type {string || null}
|
|
586
|
+
*/
|
|
587
|
+
this.Value = null;
|
|
588
|
+
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
/**
|
|
592
|
+
* @private
|
|
593
|
+
*/
|
|
594
|
+
deserialize(params) {
|
|
595
|
+
if (!params) {
|
|
596
|
+
return;
|
|
597
|
+
}
|
|
598
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
599
|
+
this.Value = 'Value' in params ? params.Value : null;
|
|
600
|
+
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
|
|
569
604
|
/**
|
|
570
605
|
* DeleteAllocationTag response structure.
|
|
571
606
|
* @class
|
|
@@ -3300,6 +3335,288 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3300
3335
|
}
|
|
3301
3336
|
}
|
|
3302
3337
|
|
|
3338
|
+
/**
|
|
3339
|
+
* Order data object
|
|
3340
|
+
* @class
|
|
3341
|
+
*/
|
|
3342
|
+
class Deal extends AbstractModel {
|
|
3343
|
+
constructor(){
|
|
3344
|
+
super();
|
|
3345
|
+
|
|
3346
|
+
/**
|
|
3347
|
+
* Order ID.
|
|
3348
|
+
* @type {string || null}
|
|
3349
|
+
*/
|
|
3350
|
+
this.OrderId = null;
|
|
3351
|
+
|
|
3352
|
+
/**
|
|
3353
|
+
* The status of the order. 1: unpaid; 2: paid; 3: shipping; 4: shipped; 5: shipment failed; 6: refunded; 7: closed case; 8: order expired; 9: order invalidated; 10: product invalidated; 11: third-party payment refused; 12: payment in process
|
|
3354
|
+
* @type {number || null}
|
|
3355
|
+
*/
|
|
3356
|
+
this.Status = null;
|
|
3357
|
+
|
|
3358
|
+
/**
|
|
3359
|
+
* Payer
|
|
3360
|
+
* @type {string || null}
|
|
3361
|
+
*/
|
|
3362
|
+
this.Payer = null;
|
|
3363
|
+
|
|
3364
|
+
/**
|
|
3365
|
+
* Creation time
|
|
3366
|
+
* @type {string || null}
|
|
3367
|
+
*/
|
|
3368
|
+
this.CreateTime = null;
|
|
3369
|
+
|
|
3370
|
+
/**
|
|
3371
|
+
* Creator
|
|
3372
|
+
* @type {string || null}
|
|
3373
|
+
*/
|
|
3374
|
+
this.Creator = null;
|
|
3375
|
+
|
|
3376
|
+
/**
|
|
3377
|
+
* Actual payment amount (pent)
|
|
3378
|
+
* @type {number || null}
|
|
3379
|
+
*/
|
|
3380
|
+
this.RealTotalCost = null;
|
|
3381
|
+
|
|
3382
|
+
/**
|
|
3383
|
+
* Voucher offset amount (pent)
|
|
3384
|
+
* @type {number || null}
|
|
3385
|
+
*/
|
|
3386
|
+
this.VoucherDecline = null;
|
|
3387
|
+
|
|
3388
|
+
/**
|
|
3389
|
+
* Project ID
|
|
3390
|
+
* @type {number || null}
|
|
3391
|
+
*/
|
|
3392
|
+
this.ProjectId = null;
|
|
3393
|
+
|
|
3394
|
+
/**
|
|
3395
|
+
* Product category ID
|
|
3396
|
+
* @type {number || null}
|
|
3397
|
+
*/
|
|
3398
|
+
this.GoodsCategoryId = null;
|
|
3399
|
+
|
|
3400
|
+
/**
|
|
3401
|
+
* Product details
|
|
3402
|
+
* @type {Array.<ProductInfo> || null}
|
|
3403
|
+
*/
|
|
3404
|
+
this.ProductInfo = null;
|
|
3405
|
+
|
|
3406
|
+
/**
|
|
3407
|
+
* Duration
|
|
3408
|
+
* @type {number || null}
|
|
3409
|
+
*/
|
|
3410
|
+
this.TimeSpan = null;
|
|
3411
|
+
|
|
3412
|
+
/**
|
|
3413
|
+
* Time unit
|
|
3414
|
+
* @type {string || null}
|
|
3415
|
+
*/
|
|
3416
|
+
this.TimeUnit = null;
|
|
3417
|
+
|
|
3418
|
+
/**
|
|
3419
|
+
* Currency unit
|
|
3420
|
+
* @type {string || null}
|
|
3421
|
+
*/
|
|
3422
|
+
this.Currency = null;
|
|
3423
|
+
|
|
3424
|
+
/**
|
|
3425
|
+
* Discount rate
|
|
3426
|
+
* @type {number || null}
|
|
3427
|
+
*/
|
|
3428
|
+
this.Policy = null;
|
|
3429
|
+
|
|
3430
|
+
/**
|
|
3431
|
+
* Unit price (cents)
|
|
3432
|
+
* @type {number || null}
|
|
3433
|
+
*/
|
|
3434
|
+
this.Price = null;
|
|
3435
|
+
|
|
3436
|
+
/**
|
|
3437
|
+
* Original price (cents)
|
|
3438
|
+
* @type {number || null}
|
|
3439
|
+
*/
|
|
3440
|
+
this.TotalCost = null;
|
|
3441
|
+
|
|
3442
|
+
/**
|
|
3443
|
+
* Product code
|
|
3444
|
+
|
|
3445
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3446
|
+
* @type {string || null}
|
|
3447
|
+
*/
|
|
3448
|
+
this.ProductCode = null;
|
|
3449
|
+
|
|
3450
|
+
/**
|
|
3451
|
+
* Subproduct code
|
|
3452
|
+
* @type {string || null}
|
|
3453
|
+
*/
|
|
3454
|
+
this.SubProductCode = null;
|
|
3455
|
+
|
|
3456
|
+
/**
|
|
3457
|
+
* Large order number.
|
|
3458
|
+
* @type {string || null}
|
|
3459
|
+
*/
|
|
3460
|
+
this.BigDealId = null;
|
|
3461
|
+
|
|
3462
|
+
/**
|
|
3463
|
+
* Refund formula
|
|
3464
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3465
|
+
* @type {string || null}
|
|
3466
|
+
*/
|
|
3467
|
+
this.Formula = null;
|
|
3468
|
+
|
|
3469
|
+
/**
|
|
3470
|
+
* Refund involves order information
|
|
3471
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3472
|
+
* @type {string || null}
|
|
3473
|
+
*/
|
|
3474
|
+
this.RefReturnDeals = null;
|
|
3475
|
+
|
|
3476
|
+
/**
|
|
3477
|
+
* Billing mode: `prePay` (prepaid), `postPay` (pay-as-you-go), `riPay` (reserved instance)
|
|
3478
|
+
* @type {string || null}
|
|
3479
|
+
*/
|
|
3480
|
+
this.PayMode = null;
|
|
3481
|
+
|
|
3482
|
+
/**
|
|
3483
|
+
* Transaction type
|
|
3484
|
+
|
|
3485
|
+
`modifyNetworkMode`: Adjusting bandwidth mode
|
|
3486
|
+
`modifyNetworkSize`: Adjusting bandwidth size
|
|
3487
|
+
`refund`: Refund
|
|
3488
|
+
`downgrade`: Downgrade
|
|
3489
|
+
upgrade (upgrade)
|
|
3490
|
+
renew
|
|
3491
|
+
purchase
|
|
3492
|
+
preMoveOut annual and monthly subscription resources
|
|
3493
|
+
preMoveIn annual and monthly subscription resources
|
|
3494
|
+
preToPost prepaid to postpaid
|
|
3495
|
+
postMoveOut move out pay-as-you-go resources
|
|
3496
|
+
postMoveIn move in pay-as-you-go resources
|
|
3497
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3498
|
+
* @type {string || null}
|
|
3499
|
+
*/
|
|
3500
|
+
this.Action = null;
|
|
3501
|
+
|
|
3502
|
+
/**
|
|
3503
|
+
* Product code Chinese name
|
|
3504
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3505
|
+
* @type {string || null}
|
|
3506
|
+
*/
|
|
3507
|
+
this.ProductName = null;
|
|
3508
|
+
|
|
3509
|
+
/**
|
|
3510
|
+
* Subproduct code Chinese name
|
|
3511
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3512
|
+
* @type {string || null}
|
|
3513
|
+
*/
|
|
3514
|
+
this.SubProductName = null;
|
|
3515
|
+
|
|
3516
|
+
/**
|
|
3517
|
+
* The resource ID corresponding to the order. If the query parameter `Limit` exceeds 200, null will be returned.
|
|
3518
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3519
|
+
* @type {Array.<string> || null}
|
|
3520
|
+
*/
|
|
3521
|
+
this.ResourceId = null;
|
|
3522
|
+
|
|
3523
|
+
}
|
|
3524
|
+
|
|
3525
|
+
/**
|
|
3526
|
+
* @private
|
|
3527
|
+
*/
|
|
3528
|
+
deserialize(params) {
|
|
3529
|
+
if (!params) {
|
|
3530
|
+
return;
|
|
3531
|
+
}
|
|
3532
|
+
this.OrderId = 'OrderId' in params ? params.OrderId : null;
|
|
3533
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
3534
|
+
this.Payer = 'Payer' in params ? params.Payer : null;
|
|
3535
|
+
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
3536
|
+
this.Creator = 'Creator' in params ? params.Creator : null;
|
|
3537
|
+
this.RealTotalCost = 'RealTotalCost' in params ? params.RealTotalCost : null;
|
|
3538
|
+
this.VoucherDecline = 'VoucherDecline' in params ? params.VoucherDecline : null;
|
|
3539
|
+
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
3540
|
+
this.GoodsCategoryId = 'GoodsCategoryId' in params ? params.GoodsCategoryId : null;
|
|
3541
|
+
|
|
3542
|
+
if (params.ProductInfo) {
|
|
3543
|
+
this.ProductInfo = new Array();
|
|
3544
|
+
for (let z in params.ProductInfo) {
|
|
3545
|
+
let obj = new ProductInfo();
|
|
3546
|
+
obj.deserialize(params.ProductInfo[z]);
|
|
3547
|
+
this.ProductInfo.push(obj);
|
|
3548
|
+
}
|
|
3549
|
+
}
|
|
3550
|
+
this.TimeSpan = 'TimeSpan' in params ? params.TimeSpan : null;
|
|
3551
|
+
this.TimeUnit = 'TimeUnit' in params ? params.TimeUnit : null;
|
|
3552
|
+
this.Currency = 'Currency' in params ? params.Currency : null;
|
|
3553
|
+
this.Policy = 'Policy' in params ? params.Policy : null;
|
|
3554
|
+
this.Price = 'Price' in params ? params.Price : null;
|
|
3555
|
+
this.TotalCost = 'TotalCost' in params ? params.TotalCost : null;
|
|
3556
|
+
this.ProductCode = 'ProductCode' in params ? params.ProductCode : null;
|
|
3557
|
+
this.SubProductCode = 'SubProductCode' in params ? params.SubProductCode : null;
|
|
3558
|
+
this.BigDealId = 'BigDealId' in params ? params.BigDealId : null;
|
|
3559
|
+
this.Formula = 'Formula' in params ? params.Formula : null;
|
|
3560
|
+
this.RefReturnDeals = 'RefReturnDeals' in params ? params.RefReturnDeals : null;
|
|
3561
|
+
this.PayMode = 'PayMode' in params ? params.PayMode : null;
|
|
3562
|
+
this.Action = 'Action' in params ? params.Action : null;
|
|
3563
|
+
this.ProductName = 'ProductName' in params ? params.ProductName : null;
|
|
3564
|
+
this.SubProductName = 'SubProductName' in params ? params.SubProductName : null;
|
|
3565
|
+
this.ResourceId = 'ResourceId' in params ? params.ResourceId : null;
|
|
3566
|
+
|
|
3567
|
+
}
|
|
3568
|
+
}
|
|
3569
|
+
|
|
3570
|
+
/**
|
|
3571
|
+
* DescribeDealsByCond response structure.
|
|
3572
|
+
* @class
|
|
3573
|
+
*/
|
|
3574
|
+
class DescribeDealsByCondResponse extends AbstractModel {
|
|
3575
|
+
constructor(){
|
|
3576
|
+
super();
|
|
3577
|
+
|
|
3578
|
+
/**
|
|
3579
|
+
* Order list
|
|
3580
|
+
* @type {Array.<Deal> || null}
|
|
3581
|
+
*/
|
|
3582
|
+
this.Deals = null;
|
|
3583
|
+
|
|
3584
|
+
/**
|
|
3585
|
+
* Total number of orders
|
|
3586
|
+
* @type {number || null}
|
|
3587
|
+
*/
|
|
3588
|
+
this.TotalCount = null;
|
|
3589
|
+
|
|
3590
|
+
/**
|
|
3591
|
+
* 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.
|
|
3592
|
+
* @type {string || null}
|
|
3593
|
+
*/
|
|
3594
|
+
this.RequestId = null;
|
|
3595
|
+
|
|
3596
|
+
}
|
|
3597
|
+
|
|
3598
|
+
/**
|
|
3599
|
+
* @private
|
|
3600
|
+
*/
|
|
3601
|
+
deserialize(params) {
|
|
3602
|
+
if (!params) {
|
|
3603
|
+
return;
|
|
3604
|
+
}
|
|
3605
|
+
|
|
3606
|
+
if (params.Deals) {
|
|
3607
|
+
this.Deals = new Array();
|
|
3608
|
+
for (let z in params.Deals) {
|
|
3609
|
+
let obj = new Deal();
|
|
3610
|
+
obj.deserialize(params.Deals[z]);
|
|
3611
|
+
this.Deals.push(obj);
|
|
3612
|
+
}
|
|
3613
|
+
}
|
|
3614
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
3615
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3616
|
+
|
|
3617
|
+
}
|
|
3618
|
+
}
|
|
3619
|
+
|
|
3303
3620
|
/**
|
|
3304
3621
|
* Payment mode filter criteria
|
|
3305
3622
|
* @class
|
|
@@ -7215,6 +7532,102 @@ class DescribeVoucherInfoRequest extends AbstractModel {
|
|
|
7215
7532
|
}
|
|
7216
7533
|
}
|
|
7217
7534
|
|
|
7535
|
+
/**
|
|
7536
|
+
* DescribeDealsByCond request structure.
|
|
7537
|
+
* @class
|
|
7538
|
+
*/
|
|
7539
|
+
class DescribeDealsByCondRequest extends AbstractModel {
|
|
7540
|
+
constructor(){
|
|
7541
|
+
super();
|
|
7542
|
+
|
|
7543
|
+
/**
|
|
7544
|
+
* Start time
|
|
7545
|
+
Example :2016-01-01 00:00:00
|
|
7546
|
+
* @type {string || null}
|
|
7547
|
+
*/
|
|
7548
|
+
this.StartTime = null;
|
|
7549
|
+
|
|
7550
|
+
/**
|
|
7551
|
+
* End time
|
|
7552
|
+
Example:2016-02-01 00:00:00.
|
|
7553
|
+
It is recommended that the span does not exceed 3 months.
|
|
7554
|
+
* @type {string || null}
|
|
7555
|
+
*/
|
|
7556
|
+
this.EndTime = null;
|
|
7557
|
+
|
|
7558
|
+
/**
|
|
7559
|
+
* The number of records per page. The default is 20, and the maximum is 1,000.
|
|
7560
|
+
* @type {number || null}
|
|
7561
|
+
*/
|
|
7562
|
+
this.Limit = null;
|
|
7563
|
+
|
|
7564
|
+
/**
|
|
7565
|
+
* The page number the records start from, starting from 0. The default is 0.
|
|
7566
|
+
* @type {number || null}
|
|
7567
|
+
*/
|
|
7568
|
+
this.Offset = null;
|
|
7569
|
+
|
|
7570
|
+
/**
|
|
7571
|
+
* Order status, default is 4 (successful order)
|
|
7572
|
+
Status of the order
|
|
7573
|
+
1: unpaid
|
|
7574
|
+
2: paid
|
|
7575
|
+
3: shipment in progress
|
|
7576
|
+
4: shipped
|
|
7577
|
+
5`: Shipment Failed
|
|
7578
|
+
6`: Refunded
|
|
7579
|
+
7`: Ticket closed
|
|
7580
|
+
8`: Order expired
|
|
7581
|
+
9`: Order invalid
|
|
7582
|
+
10: product invalidated
|
|
7583
|
+
11: third-party payment refused
|
|
7584
|
+
12: payment in process
|
|
7585
|
+
* @type {number || null}
|
|
7586
|
+
*/
|
|
7587
|
+
this.Status = null;
|
|
7588
|
+
|
|
7589
|
+
/**
|
|
7590
|
+
* Sub-order number
|
|
7591
|
+
Example: 202202021234567
|
|
7592
|
+
* @type {string || null}
|
|
7593
|
+
*/
|
|
7594
|
+
this.OrderId = null;
|
|
7595
|
+
|
|
7596
|
+
/**
|
|
7597
|
+
* Large order number.
|
|
7598
|
+
Example: 202202021234566
|
|
7599
|
+
* @type {string || null}
|
|
7600
|
+
*/
|
|
7601
|
+
this.BigDealId = null;
|
|
7602
|
+
|
|
7603
|
+
/**
|
|
7604
|
+
* Resource ID
|
|
7605
|
+
Example:ins-a2bb34
|
|
7606
|
+
* @type {string || null}
|
|
7607
|
+
*/
|
|
7608
|
+
this.ResourceId = null;
|
|
7609
|
+
|
|
7610
|
+
}
|
|
7611
|
+
|
|
7612
|
+
/**
|
|
7613
|
+
* @private
|
|
7614
|
+
*/
|
|
7615
|
+
deserialize(params) {
|
|
7616
|
+
if (!params) {
|
|
7617
|
+
return;
|
|
7618
|
+
}
|
|
7619
|
+
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
7620
|
+
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
7621
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
7622
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
7623
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
7624
|
+
this.OrderId = 'OrderId' in params ? params.OrderId : null;
|
|
7625
|
+
this.BigDealId = 'BigDealId' in params ? params.BigDealId : null;
|
|
7626
|
+
this.ResourceId = 'ResourceId' in params ? params.ResourceId : null;
|
|
7627
|
+
|
|
7628
|
+
}
|
|
7629
|
+
}
|
|
7630
|
+
|
|
7218
7631
|
/**
|
|
7219
7632
|
* DescribeDosageCosDetailByDate response structure.
|
|
7220
7633
|
* @class
|
|
@@ -8106,6 +8519,7 @@ module.exports = {
|
|
|
8106
8519
|
AnalyseActionTypeDetail: AnalyseActionTypeDetail,
|
|
8107
8520
|
DescribeCostExplorerSummaryRequest: DescribeCostExplorerSummaryRequest,
|
|
8108
8521
|
DescribeCostSummaryByProductResponse: DescribeCostSummaryByProductResponse,
|
|
8522
|
+
ProductInfo: ProductInfo,
|
|
8109
8523
|
DeleteAllocationTagResponse: DeleteAllocationTagResponse,
|
|
8110
8524
|
DescribeBillDetailForOrganizationResponse: DescribeBillDetailForOrganizationResponse,
|
|
8111
8525
|
BillDetailComponentConfig: BillDetailComponentConfig,
|
|
@@ -8142,6 +8556,8 @@ module.exports = {
|
|
|
8142
8556
|
DescribeBillSummaryByProjectRequest: DescribeBillSummaryByProjectRequest,
|
|
8143
8557
|
BillDetail: BillDetail,
|
|
8144
8558
|
DescribeBillDetailResponse: DescribeBillDetailResponse,
|
|
8559
|
+
Deal: Deal,
|
|
8560
|
+
DescribeDealsByCondResponse: DescribeDealsByCondResponse,
|
|
8145
8561
|
ConditionPayMode: ConditionPayMode,
|
|
8146
8562
|
DescribeBillSummaryByProjectResponse: DescribeBillSummaryByProjectResponse,
|
|
8147
8563
|
DescribeBillAdjustInfoRequest: DescribeBillAdjustInfoRequest,
|
|
@@ -8193,6 +8609,7 @@ module.exports = {
|
|
|
8193
8609
|
BusinessSummaryOverviewItem: BusinessSummaryOverviewItem,
|
|
8194
8610
|
UsageRecords: UsageRecords,
|
|
8195
8611
|
DescribeVoucherInfoRequest: DescribeVoucherInfoRequest,
|
|
8612
|
+
DescribeDealsByCondRequest: DescribeDealsByCondRequest,
|
|
8196
8613
|
DescribeDosageCosDetailByDateResponse: DescribeDosageCosDetailByDateResponse,
|
|
8197
8614
|
ProjectSummaryOverviewItem: ProjectSummaryOverviewItem,
|
|
8198
8615
|
DescribeBillSummaryForOrganizationResponse: DescribeBillSummaryForOrganizationResponse,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1098";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -932,35 +932,47 @@ class QueryPolicyProductListByCodeRequest extends AbstractModel {
|
|
|
932
932
|
super();
|
|
933
933
|
|
|
934
934
|
/**
|
|
935
|
-
*
|
|
935
|
+
* Dealer policy code.
|
|
936
936
|
* @type {string || null}
|
|
937
937
|
*/
|
|
938
938
|
this.PolicyCode = null;
|
|
939
939
|
|
|
940
940
|
/**
|
|
941
|
-
* Product code
|
|
941
|
+
* Product level 1 code.
|
|
942
942
|
* @type {string || null}
|
|
943
943
|
*/
|
|
944
944
|
this.ProductCode = null;
|
|
945
945
|
|
|
946
946
|
/**
|
|
947
|
-
* Product name
|
|
947
|
+
* Product level 1 name.
|
|
948
948
|
* @type {string || null}
|
|
949
949
|
*/
|
|
950
950
|
this.ProductName = null;
|
|
951
951
|
|
|
952
952
|
/**
|
|
953
|
-
*
|
|
953
|
+
* Product level 2 code.
|
|
954
954
|
* @type {string || null}
|
|
955
955
|
*/
|
|
956
956
|
this.SubProductCode = null;
|
|
957
957
|
|
|
958
958
|
/**
|
|
959
|
-
*
|
|
959
|
+
* Product level 2 name.
|
|
960
960
|
* @type {string || null}
|
|
961
961
|
*/
|
|
962
962
|
this.SubProductName = null;
|
|
963
963
|
|
|
964
|
+
/**
|
|
965
|
+
* Page parameter: current page number. The minimum value is 1.
|
|
966
|
+
* @type {number || null}
|
|
967
|
+
*/
|
|
968
|
+
this.Page = null;
|
|
969
|
+
|
|
970
|
+
/**
|
|
971
|
+
* Page parameter: Indicates the number of entries per page. Value range: [1, 200], default is 200.
|
|
972
|
+
* @type {number || null}
|
|
973
|
+
*/
|
|
974
|
+
this.PageSize = null;
|
|
975
|
+
|
|
964
976
|
}
|
|
965
977
|
|
|
966
978
|
/**
|
|
@@ -975,6 +987,8 @@ class QueryPolicyProductListByCodeRequest extends AbstractModel {
|
|
|
975
987
|
this.ProductName = 'ProductName' in params ? params.ProductName : null;
|
|
976
988
|
this.SubProductCode = 'SubProductCode' in params ? params.SubProductCode : null;
|
|
977
989
|
this.SubProductName = 'SubProductName' in params ? params.SubProductName : null;
|
|
990
|
+
this.Page = 'Page' in params ? params.Page : null;
|
|
991
|
+
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
978
992
|
|
|
979
993
|
}
|
|
980
994
|
}
|
|
@@ -2606,11 +2620,17 @@ class QueryPolicyProductListByCodeResponse extends AbstractModel {
|
|
|
2606
2620
|
super();
|
|
2607
2621
|
|
|
2608
2622
|
/**
|
|
2609
|
-
*
|
|
2623
|
+
* Dealer policy product list.
|
|
2610
2624
|
* @type {Array.<PolicyProductList> || null}
|
|
2611
2625
|
*/
|
|
2612
2626
|
this.ProductList = null;
|
|
2613
2627
|
|
|
2628
|
+
/**
|
|
2629
|
+
* Total number of data entries
|
|
2630
|
+
* @type {number || null}
|
|
2631
|
+
*/
|
|
2632
|
+
this.Total = null;
|
|
2633
|
+
|
|
2614
2634
|
/**
|
|
2615
2635
|
* 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.
|
|
2616
2636
|
* @type {string || null}
|
|
@@ -2635,6 +2655,7 @@ class QueryPolicyProductListByCodeResponse extends AbstractModel {
|
|
|
2635
2655
|
this.ProductList.push(obj);
|
|
2636
2656
|
}
|
|
2637
2657
|
}
|
|
2658
|
+
this.Total = 'Total' in params ? params.Total : null;
|
|
2638
2659
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2639
2660
|
|
|
2640
2661
|
}
|
|
@@ -3647,7 +3668,7 @@ class CreateAndSendClientInvitationMailRequest extends AbstractModel {
|
|
|
3647
3668
|
}
|
|
3648
3669
|
|
|
3649
3670
|
/**
|
|
3650
|
-
*
|
|
3671
|
+
* Policy product list entity response parameters structure.
|
|
3651
3672
|
* @class
|
|
3652
3673
|
*/
|
|
3653
3674
|
class PolicyProductList extends AbstractModel {
|
|
@@ -3655,67 +3676,67 @@ class PolicyProductList extends AbstractModel {
|
|
|
3655
3676
|
super();
|
|
3656
3677
|
|
|
3657
3678
|
/**
|
|
3658
|
-
*
|
|
3679
|
+
* Dealer policy code.
|
|
3659
3680
|
* @type {string || null}
|
|
3660
3681
|
*/
|
|
3661
3682
|
this.PolicyCode = null;
|
|
3662
3683
|
|
|
3663
3684
|
/**
|
|
3664
|
-
* Product code
|
|
3685
|
+
* Product level 1 code. If the return value is *, any item at this level is included in the policy product range.
|
|
3665
3686
|
* @type {string || null}
|
|
3666
3687
|
*/
|
|
3667
3688
|
this.ProductCode = null;
|
|
3668
3689
|
|
|
3669
3690
|
/**
|
|
3670
|
-
* Product name
|
|
3691
|
+
* Product level 1 name. If the return value is *, any item at this level is included in the policy product range.
|
|
3671
3692
|
* @type {string || null}
|
|
3672
3693
|
*/
|
|
3673
3694
|
this.ProductName = null;
|
|
3674
3695
|
|
|
3675
3696
|
/**
|
|
3676
|
-
*
|
|
3697
|
+
* Product level 2 code. If the return value is *, any item at this level is included in the policy product range.
|
|
3677
3698
|
* @type {string || null}
|
|
3678
3699
|
*/
|
|
3679
3700
|
this.SubProductCode = null;
|
|
3680
3701
|
|
|
3681
3702
|
/**
|
|
3682
|
-
*
|
|
3703
|
+
* Product level 2 name. If the return value is *, any item at this level is included in the policy product range.
|
|
3683
3704
|
* @type {string || null}
|
|
3684
3705
|
*/
|
|
3685
3706
|
this.SubProductName = null;
|
|
3686
3707
|
|
|
3687
3708
|
/**
|
|
3688
|
-
*
|
|
3709
|
+
* Product level 3 code. If the return value is *, any item at this level is included in the policy product range.
|
|
3689
3710
|
* @type {string || null}
|
|
3690
3711
|
*/
|
|
3691
3712
|
this.ComponentTypeCode = null;
|
|
3692
3713
|
|
|
3693
3714
|
/**
|
|
3694
|
-
*
|
|
3715
|
+
* Product level 3 name. If the return value is *, any item at this level is included in the policy product range.
|
|
3695
3716
|
* @type {string || null}
|
|
3696
3717
|
*/
|
|
3697
3718
|
this.ComponentTypeName = null;
|
|
3698
3719
|
|
|
3699
3720
|
/**
|
|
3700
|
-
*
|
|
3721
|
+
* Product level 4 code. If the return value is *, any item at this level is included in the policy product range.
|
|
3701
3722
|
* @type {string || null}
|
|
3702
3723
|
*/
|
|
3703
3724
|
this.ComponentCode = null;
|
|
3704
3725
|
|
|
3705
3726
|
/**
|
|
3706
|
-
*
|
|
3727
|
+
* Product fourth-level name. If the return value is *, any item under this level is included in the policy product scope.
|
|
3707
3728
|
* @type {string || null}
|
|
3708
3729
|
*/
|
|
3709
3730
|
this.ComponentName = null;
|
|
3710
3731
|
|
|
3711
3732
|
/**
|
|
3712
|
-
* Policy effective
|
|
3733
|
+
* Policy effective time.
|
|
3713
3734
|
* @type {string || null}
|
|
3714
3735
|
*/
|
|
3715
3736
|
this.StartDate = null;
|
|
3716
3737
|
|
|
3717
3738
|
/**
|
|
3718
|
-
* Policy expiration
|
|
3739
|
+
* Policy expiration time.
|
|
3719
3740
|
* @type {string || null}
|
|
3720
3741
|
*/
|
|
3721
3742
|
this.EndDate = null;
|
|
@@ -3585,6 +3585,12 @@ class RecognizeThaiIDCardOCRResponse extends AbstractModel {
|
|
|
3585
3585
|
*/
|
|
3586
3586
|
this.Address = null;
|
|
3587
3587
|
|
|
3588
|
+
/**
|
|
3589
|
+
* LaserID in the back of the card.
|
|
3590
|
+
* @type {string || null}
|
|
3591
|
+
*/
|
|
3592
|
+
this.LaserID = null;
|
|
3593
|
+
|
|
3588
3594
|
/**
|
|
3589
3595
|
* Identity photo
|
|
3590
3596
|
* @type {string || null}
|
|
@@ -3639,6 +3645,7 @@ class RecognizeThaiIDCardOCRResponse extends AbstractModel {
|
|
|
3639
3645
|
this.Religion = 'Religion' in params ? params.Religion : null;
|
|
3640
3646
|
this.SerialNumber = 'SerialNumber' in params ? params.SerialNumber : null;
|
|
3641
3647
|
this.Address = 'Address' in params ? params.Address : null;
|
|
3648
|
+
this.LaserID = 'LaserID' in params ? params.LaserID : null;
|
|
3642
3649
|
this.PortraitImage = 'PortraitImage' in params ? params.PortraitImage : null;
|
|
3643
3650
|
this.WarnCardInfos = 'WarnCardInfos' in params ? params.WarnCardInfos : null;
|
|
3644
3651
|
this.AdvancedInfo = 'AdvancedInfo' in params ? params.AdvancedInfo : null;
|
|
@@ -5063,6 +5070,12 @@ Either `ImageUrl` or `ImageBase64` of the image must be provided. If both are pr
|
|
|
5063
5070
|
*/
|
|
5064
5071
|
this.ImageBase64 = null;
|
|
5065
5072
|
|
|
5073
|
+
/**
|
|
5074
|
+
* Base64 value of the image on the back of the card. Supported image formats: PNG, JPG, JPEG. GIF format is not supported yet. Supported image size: The downloaded image does not exceed 7M after Base64 encoding. The image download takes no more than 3 seconds. One of ImageUrl and ImageBase64 of the image must be provided. If both are provided, only ImageUrl will be used.
|
|
5075
|
+
* @type {string || null}
|
|
5076
|
+
*/
|
|
5077
|
+
this.BackImageBase64 = null;
|
|
5078
|
+
|
|
5066
5079
|
/**
|
|
5067
5080
|
* The URL of the image. The image cannot exceed 7 MB after being Base64-encoded. A resolution above 500 x 800 is recommended. PNG, JPG, JPEG, and BMP formats are supported. It is recommended that the card part occupy more than 2/3 area of the image.
|
|
5068
5081
|
We recommend that you store the image in Tencent Cloud for higher download speed and stability.
|
|
@@ -5070,6 +5083,12 @@ We recommend that you store the image in Tencent Cloud for higher download speed
|
|
|
5070
5083
|
*/
|
|
5071
5084
|
this.ImageUrl = null;
|
|
5072
5085
|
|
|
5086
|
+
/**
|
|
5087
|
+
* The URL address of the image on the back of the card. Supported image formats: PNG, JPG, JPEG. GIF format is not supported yet. Supported image size: The downloaded image does not exceed 7M after Base64 encoding. The image download takes no more than 3 seconds. Storing images in Tencent Cloud URLs can ensure higher download speed and stability. It is recommended that images be stored in Tencent Cloud. The URL speed and stability of non-Tencent cloud storage may be affected to a certain extent.
|
|
5088
|
+
* @type {string || null}
|
|
5089
|
+
*/
|
|
5090
|
+
this.BackImageUrl = null;
|
|
5091
|
+
|
|
5073
5092
|
/**
|
|
5074
5093
|
* Whether to crop the profile photo. The default value is `false`, meaning not to return the Base64-encoded value of the profile photo on the Thai identity card.
|
|
5075
5094
|
When this parameter is set to `true`, the Base64-encoded value of the profile photo on the Thai identity card after rotation correction is returned.
|
|
@@ -5087,7 +5106,9 @@ When this parameter is set to `true`, the Base64-encoded value of the profile ph
|
|
|
5087
5106
|
return;
|
|
5088
5107
|
}
|
|
5089
5108
|
this.ImageBase64 = 'ImageBase64' in params ? params.ImageBase64 : null;
|
|
5109
|
+
this.BackImageBase64 = 'BackImageBase64' in params ? params.BackImageBase64 : null;
|
|
5090
5110
|
this.ImageUrl = 'ImageUrl' in params ? params.ImageUrl : null;
|
|
5111
|
+
this.BackImageUrl = 'BackImageUrl' in params ? params.BackImageUrl : null;
|
|
5091
5112
|
this.CropPortrait = 'CropPortrait' in params ? params.CropPortrait : null;
|
|
5092
5113
|
|
|
5093
5114
|
}
|
|
@@ -11056,7 +11056,7 @@ class RuleCondition extends AbstractModel {
|
|
|
11056
11056
|
|
|
11057
11057
|
/**
|
|
11058
11058
|
* Operator. Valid values:
|
|
11059
|
-
<li>`
|
|
11059
|
+
<li>`equal`: Equal</li>
|
|
11060
11060
|
<li>`notEquals`: Does not equal</li>
|
|
11061
11061
|
<li>`exist`: Exists</li>
|
|
11062
11062
|
<li>`notexist`: Does not exist</li>
|