com.antgroup.antchain.openapi.ato.models.OrderProductInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-ato Show documentation
Show all versions of openapi-ato Show documentation
Ant Chain ATO SDK for Java
// 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