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

com.antgroup.antchain.openapi.twc.models.ApplySupplierOrderProductInput Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class ApplySupplierOrderProductInput extends TeaModel {
    // 采购商品id
    @NameInMap("product_id")
    @Validation(required = true)
    public String productId;

    // 采购商品数量
    @NameInMap("product_num")
    @Validation(required = true)
    public Long productNum;

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

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

    public ApplySupplierOrderProductInput setProductNum(Long productNum) {
        this.productNum = productNum;
        return this;
    }
    public Long getProductNum() {
        return this.productNum;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy