Skip to content

Commit b143ef0

Browse files
committed
Generated java-async 2021-12-21 for wss.
1 parent c20a4bd commit b143ef0

File tree

4 files changed

+68
-3
lines changed

4 files changed

+68
-3
lines changed

wss-20211221/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-11-17 Version: 1.0.9
2+
- Generated java-async 2021-12-21 for wss.
3+
14
2025-08-08 Version: 1.0.8
25
- Generated java-async 2021-12-21 for wss.
36

wss-20211221/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>alibabacloud-wss20211221</artifactId>
6-
<version>1.0.8</version>
6+
<version>1.0.9</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-wss20211221</name>
99
<description>Alibaba Cloud wss (20211221) Async SDK for Java
@@ -104,12 +104,11 @@
104104
<plugin>
105105
<groupId>org.sonatype.central</groupId>
106106
<artifactId>central-publishing-maven-plugin</artifactId>
107-
<version>0.8.0</version>
107+
<version>0.9.0</version>
108108
<extensions>true</extensions>
109109
<configuration>
110110
<publishingServerId>central</publishingServerId>
111111
<autoPublish>true</autoPublish>
112-
<waitUntil>published</waitUntil>
113112
</configuration>
114113
</plugin>
115114
</plugins>

wss-20211221/src/main/java/com/aliyun/sdk/service/wss20211221/models/DescribeMultiPriceRequest.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,9 @@ public static class OrderItems extends TeaModel {
249249
@com.aliyun.core.annotation.NameInMap("ResourceType")
250250
private String resourceType;
251251

252+
@com.aliyun.core.annotation.NameInMap("SavingPlanPeriod")
253+
private String savingPlanPeriod;
254+
252255
private OrderItems(Builder builder) {
253256
this.amount = builder.amount;
254257
this.components = builder.components;
@@ -258,6 +261,7 @@ private OrderItems(Builder builder) {
258261
this.promotionId = builder.promotionId;
259262
this.resourceIds = builder.resourceIds;
260263
this.resourceType = builder.resourceType;
264+
this.savingPlanPeriod = builder.savingPlanPeriod;
261265
}
262266

263267
public static Builder builder() {
@@ -324,6 +328,13 @@ public String getResourceType() {
324328
return this.resourceType;
325329
}
326330

331+
/**
332+
* @return savingPlanPeriod
333+
*/
334+
public String getSavingPlanPeriod() {
335+
return this.savingPlanPeriod;
336+
}
337+
327338
public static final class Builder {
328339
private Integer amount;
329340
private java.util.List<Components> components;
@@ -333,6 +344,7 @@ public static final class Builder {
333344
private String promotionId;
334345
private java.util.List<String> resourceIds;
335346
private String resourceType;
347+
private String savingPlanPeriod;
336348

337349
private Builder() {
338350
}
@@ -346,6 +358,7 @@ private Builder(OrderItems model) {
346358
this.promotionId = model.promotionId;
347359
this.resourceIds = model.resourceIds;
348360
this.resourceType = model.resourceType;
361+
this.savingPlanPeriod = model.savingPlanPeriod;
349362
}
350363

351364
/**
@@ -412,6 +425,14 @@ public Builder resourceType(String resourceType) {
412425
return this;
413426
}
414427

428+
/**
429+
* SavingPlanPeriod.
430+
*/
431+
public Builder savingPlanPeriod(String savingPlanPeriod) {
432+
this.savingPlanPeriod = savingPlanPeriod;
433+
return this;
434+
}
435+
415436
public OrderItems build() {
416437
return new OrderItems(this);
417438
}

wss-20211221/src/main/java/com/aliyun/sdk/service/wss20211221/models/DescribeMultiPriceResponseBody.java

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@ public static class ModuleDetails extends TeaModel {
110110
@com.aliyun.core.annotation.NameInMap("OriginalPrice")
111111
private Float originalPrice;
112112

113+
@com.aliyun.core.annotation.NameInMap("SavingPlanDiscountPrice")
114+
private Float savingPlanDiscountPrice;
115+
113116
@com.aliyun.core.annotation.NameInMap("TradePrice")
114117
private Float tradePrice;
115118

@@ -119,6 +122,7 @@ private ModuleDetails(Builder builder) {
119122
this.moduleName = builder.moduleName;
120123
this.moduleValue = builder.moduleValue;
121124
this.originalPrice = builder.originalPrice;
125+
this.savingPlanDiscountPrice = builder.savingPlanDiscountPrice;
122126
this.tradePrice = builder.tradePrice;
123127
}
124128

@@ -165,6 +169,13 @@ public Float getOriginalPrice() {
165169
return this.originalPrice;
166170
}
167171

172+
/**
173+
* @return savingPlanDiscountPrice
174+
*/
175+
public Float getSavingPlanDiscountPrice() {
176+
return this.savingPlanDiscountPrice;
177+
}
178+
168179
/**
169180
* @return tradePrice
170181
*/
@@ -178,6 +189,7 @@ public static final class Builder {
178189
private String moduleName;
179190
private String moduleValue;
180191
private Float originalPrice;
192+
private Float savingPlanDiscountPrice;
181193
private Float tradePrice;
182194

183195
private Builder() {
@@ -189,6 +201,7 @@ private Builder(ModuleDetails model) {
189201
this.moduleName = model.moduleName;
190202
this.moduleValue = model.moduleValue;
191203
this.originalPrice = model.originalPrice;
204+
this.savingPlanDiscountPrice = model.savingPlanDiscountPrice;
192205
this.tradePrice = model.tradePrice;
193206
}
194207

@@ -232,6 +245,14 @@ public Builder originalPrice(Float originalPrice) {
232245
return this;
233246
}
234247

248+
/**
249+
* SavingPlanDiscountPrice.
250+
*/
251+
public Builder savingPlanDiscountPrice(Float savingPlanDiscountPrice) {
252+
this.savingPlanDiscountPrice = savingPlanDiscountPrice;
253+
return this;
254+
}
255+
235256
/**
236257
* TradePrice.
237258
*/
@@ -263,13 +284,17 @@ public static class PriceDetail extends TeaModel {
263284
@com.aliyun.core.annotation.NameInMap("ResourceType")
264285
private String resourceType;
265286

287+
@com.aliyun.core.annotation.NameInMap("SavingPlanRecommendPrice")
288+
private Float savingPlanRecommendPrice;
289+
266290
@com.aliyun.core.annotation.NameInMap("TradePrice")
267291
private Float tradePrice;
268292

269293
private PriceDetail(Builder builder) {
270294
this.discountPrice = builder.discountPrice;
271295
this.originalPrice = builder.originalPrice;
272296
this.resourceType = builder.resourceType;
297+
this.savingPlanRecommendPrice = builder.savingPlanRecommendPrice;
273298
this.tradePrice = builder.tradePrice;
274299
}
275300

@@ -302,6 +327,13 @@ public String getResourceType() {
302327
return this.resourceType;
303328
}
304329

330+
/**
331+
* @return savingPlanRecommendPrice
332+
*/
333+
public Float getSavingPlanRecommendPrice() {
334+
return this.savingPlanRecommendPrice;
335+
}
336+
305337
/**
306338
* @return tradePrice
307339
*/
@@ -313,6 +345,7 @@ public static final class Builder {
313345
private Float discountPrice;
314346
private Float originalPrice;
315347
private String resourceType;
348+
private Float savingPlanRecommendPrice;
316349
private Float tradePrice;
317350

318351
private Builder() {
@@ -322,6 +355,7 @@ private Builder(PriceDetail model) {
322355
this.discountPrice = model.discountPrice;
323356
this.originalPrice = model.originalPrice;
324357
this.resourceType = model.resourceType;
358+
this.savingPlanRecommendPrice = model.savingPlanRecommendPrice;
325359
this.tradePrice = model.tradePrice;
326360
}
327361

@@ -349,6 +383,14 @@ public Builder resourceType(String resourceType) {
349383
return this;
350384
}
351385

386+
/**
387+
* SavingPlanRecommendPrice.
388+
*/
389+
public Builder savingPlanRecommendPrice(Float savingPlanRecommendPrice) {
390+
this.savingPlanRecommendPrice = savingPlanRecommendPrice;
391+
return this;
392+
}
393+
352394
/**
353395
* TradePrice.
354396
*/

0 commit comments

Comments
 (0)