All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.pds20220301.models.QueryOrderPriceResponseBody Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.pds20220301.models;

import com.aliyun.tea.*;

public class QueryOrderPriceResponseBody extends TeaModel {
    @NameInMap("discount_price")
    public Double discountPrice;

    @NameInMap("original_price")
    public Double originalPrice;

    @NameInMap("trade_price")
    public Double tradePrice;

    public static QueryOrderPriceResponseBody build(java.util.Map map) throws Exception {
        QueryOrderPriceResponseBody self = new QueryOrderPriceResponseBody();
        return TeaModel.build(map, self);
    }

    public QueryOrderPriceResponseBody setDiscountPrice(Double discountPrice) {
        this.discountPrice = discountPrice;
        return this;
    }
    public Double getDiscountPrice() {
        return this.discountPrice;
    }

    public QueryOrderPriceResponseBody setOriginalPrice(Double originalPrice) {
        this.originalPrice = originalPrice;
        return this;
    }
    public Double getOriginalPrice() {
        return this.originalPrice;
    }

    public QueryOrderPriceResponseBody setTradePrice(Double tradePrice) {
        this.tradePrice = tradePrice;
        return this;
    }
    public Double getTradePrice() {
        return this.tradePrice;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy