@@ -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