Skip to content

Commit f88ab61

Browse files
committed
Update API DescribeMultiPrice: add request parameters OrderItems.$.SavingPlanPeriod.
1 parent fae9d01 commit f88ab61

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

wss-20211221/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alicloud/wss20211221",
3-
"version": "1.3.3",
3+
"version": "1.3.4",
44
"description": "",
55
"main": "dist/client.js",
66
"scripts": {

wss-20211221/src/models/DescribeMultiPriceRequest.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ export class DescribeMultiPriceRequestOrderItems extends $dara.Model {
6565
* DurationPackage
6666
*/
6767
resourceType?: string;
68+
savingPlanPeriod?: string;
6869
static names(): { [key: string]: string } {
6970
return {
7071
amount: 'Amount',
@@ -75,6 +76,7 @@ export class DescribeMultiPriceRequestOrderItems extends $dara.Model {
7576
promotionId: 'PromotionId',
7677
resourceIds: 'ResourceIds',
7778
resourceType: 'ResourceType',
79+
savingPlanPeriod: 'SavingPlanPeriod',
7880
};
7981
}
8082

@@ -88,6 +90,7 @@ export class DescribeMultiPriceRequestOrderItems extends $dara.Model {
8890
promotionId: 'string',
8991
resourceIds: { 'type': 'array', 'itemType': 'string' },
9092
resourceType: 'string',
93+
savingPlanPeriod: 'string',
9194
};
9295
}
9396

wss-20211221/src/models/DescribeMultiPriceResponseBody.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export class DescribeMultiPriceResponseBodyPriceInfoPricePriceDetailsModuleDetai
2424
* 10900
2525
*/
2626
originalPrice?: number;
27+
savingPlanDiscountPrice?: number;
2728
/**
2829
* @example
2930
* 292.2
@@ -36,6 +37,7 @@ export class DescribeMultiPriceResponseBodyPriceInfoPricePriceDetailsModuleDetai
3637
moduleName: 'ModuleName',
3738
moduleValue: 'ModuleValue',
3839
originalPrice: 'OriginalPrice',
40+
savingPlanDiscountPrice: 'SavingPlanDiscountPrice',
3941
tradePrice: 'TradePrice',
4042
};
4143
}
@@ -47,6 +49,7 @@ export class DescribeMultiPriceResponseBodyPriceInfoPricePriceDetailsModuleDetai
4749
moduleName: 'string',
4850
moduleValue: 'string',
4951
originalPrice: 'number',
52+
savingPlanDiscountPrice: 'number',
5053
tradePrice: 'number',
5154
};
5255
}
@@ -76,6 +79,7 @@ export class DescribeMultiPriceResponseBodyPriceInfoPricePriceDetailsPriceDetail
7679
* DurationPackage
7780
*/
7881
resourceType?: string;
82+
savingPlanRecommendPrice?: number;
7983
/**
8084
* @example
8185
* 80.00
@@ -86,6 +90,7 @@ export class DescribeMultiPriceResponseBodyPriceInfoPricePriceDetailsPriceDetail
8690
discountPrice: 'DiscountPrice',
8791
originalPrice: 'OriginalPrice',
8892
resourceType: 'ResourceType',
93+
savingPlanRecommendPrice: 'SavingPlanRecommendPrice',
8994
tradePrice: 'TradePrice',
9095
};
9196
}
@@ -95,6 +100,7 @@ export class DescribeMultiPriceResponseBodyPriceInfoPricePriceDetailsPriceDetail
95100
discountPrice: 'number',
96101
originalPrice: 'number',
97102
resourceType: 'string',
103+
savingPlanRecommendPrice: 'number',
98104
tradePrice: 'number',
99105
};
100106
}

0 commit comments

Comments
 (0)