Skip to content

Commit d2c024a

Browse files
committed
Update API DescribeMultiPrice: add request parameters OrderItems.$.SavingPlanPeriod.
1 parent 6c35348 commit d2c024a

File tree

5 files changed

+22
-4
lines changed

5 files changed

+22
-4
lines changed

wss-20211221/ChangeLog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2025-11-17 Version: 1.3.4
2+
- Update API DescribeMultiPrice: add request parameters OrderItems.$.SavingPlanPeriod.
3+
- Update API DescribeMultiPrice: add response parameters Body.PriceInfo.Price.PriceDetails.$.ModuleDetails.$.SavingPlanDiscountPrice.
4+
- Update API DescribeMultiPrice: add response parameters Body.PriceInfo.Price.PriceDetails.$.PriceDetail.SavingPlanRecommendPrice.
5+
6+
17
2025-08-08 Version: 1.3.3
28
- Update API DescribePackageDeductions: add response parameters Body.Deductions.$.GroupResourceType.
39

wss-20211221/core/Models/DescribeMultiPriceRequest.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ public class DescribeMultiPriceRequestOrderItemsComponents : TeaModel {
8383
[Validation(Required=false)]
8484
public string ResourceType { get; set; }
8585

86+
[NameInMap("SavingPlanPeriod")]
87+
[Validation(Required=false)]
88+
public string SavingPlanPeriod { get; set; }
89+
8690
}
8791

8892
/// <summary>

wss-20211221/core/Models/DescribeMultiPriceResponseBody.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ public class DescribeMultiPriceResponseBodyPriceInfoPricePriceDetailsModuleDetai
8585
[Validation(Required=false)]
8686
public float? OriginalPrice { get; set; }
8787

88+
[NameInMap("SavingPlanDiscountPrice")]
89+
[Validation(Required=false)]
90+
public float? SavingPlanDiscountPrice { get; set; }
91+
8892
/// <summary>
8993
/// <b>Example:</b>
9094
/// <para>292.2</para>
@@ -131,6 +135,10 @@ public class DescribeMultiPriceResponseBodyPriceInfoPricePriceDetailsPriceDetail
131135
[Validation(Required=false)]
132136
public string ResourceType { get; set; }
133137

138+
[NameInMap("SavingPlanRecommendPrice")]
139+
[Validation(Required=false)]
140+
public float? SavingPlanRecommendPrice { get; set; }
141+
134142
/// <summary>
135143
/// <b>Example:</b>
136144
/// <para>80.00</para>

wss-20211221/core/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
[assembly: ComVisible(false)]
2121

2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
23-
[assembly: Guid("70056800-747a-11f0-9c56-138b3ee2d320")]
23+
[assembly: Guid("ca6161d0-c3d7-11f0-b358-6b84e1267106")]
2424

2525
// Version information for an assembly consists of the following four values:
2626
//
@@ -29,5 +29,5 @@
2929
// Build Number
3030
// Revision
3131
//
32-
[assembly: AssemblyVersion("1.3.2.0")]
33-
[assembly: AssemblyFileVersion("1.3.2.0")]
32+
[assembly: AssemblyVersion("1.3.3.0")]
33+
[assembly: AssemblyFileVersion("1.3.4.0")]

wss-20211221/core/wss.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
88
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
99
<AssemblyName>AlibabaCloud.SDK.Wss20211221</AssemblyName>
10-
<Version>1.3.3</Version>
10+
<Version>1.3.4</Version>
1111
<LangVersion>5</LangVersion>
1212
<Authors>Alibaba Cloud</Authors>
1313
<Description>Alibaba Cloud wss (20211221) SDK Library for .NET</Description>

0 commit comments

Comments
 (0)