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

com.antgroup.antchain.openapi.ato.models.OrderProductInfo Maven / Gradle / Ivy

There is a newer version: 1.10.16
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ato.models;

import com.aliyun.tea.*;

public class OrderProductInfo extends TeaModel {
    // 商品编码
    @NameInMap("product_id")
    public String productId;

    // 商品名称
    @NameInMap("product_name")
    public String productName;

    // 商品数量
    @NameInMap("product_number")
    public Long productNumber;

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

    public OrderProductInfo setProductId(String productId) {
        this.productId = productId;
        return this;
    }
    public String getProductId() {
        return this.productId;
    }

    public OrderProductInfo setProductName(String productName) {
        this.productName = productName;
        return this;
    }
    public String getProductName() {
        return this.productName;
    }

    public OrderProductInfo setProductNumber(Long productNumber) {
        this.productNumber = productNumber;
        return this;
    }
    public Long getProductNumber() {
        return this.productNumber;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy