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

com.aliyun.dingtalkindustry_1_0.models.SupplyChainUpdateDeptInfoRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class SupplyChainUpdateDeptInfoRequest extends TeaModel {
    /**
     * example:
     * 

名称

*/ @NameInMap("name") public String name; /** * example: *

123

*/ @NameInMap("partnerNumber") public String partnerNumber; @NameInMap("partnerTypeList") public java.util.List partnerTypeList; /** * example: *

1231

*/ @NameInMap("superId") public Long superId; /** *

This parameter is required.

* * example: *

576488112

*/ @NameInMap("supplyDeptId") public Long supplyDeptId; public static SupplyChainUpdateDeptInfoRequest build(java.util.Map map) throws Exception { SupplyChainUpdateDeptInfoRequest self = new SupplyChainUpdateDeptInfoRequest(); return TeaModel.build(map, self); } public SupplyChainUpdateDeptInfoRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public SupplyChainUpdateDeptInfoRequest setPartnerNumber(String partnerNumber) { this.partnerNumber = partnerNumber; return this; } public String getPartnerNumber() { return this.partnerNumber; } public SupplyChainUpdateDeptInfoRequest setPartnerTypeList(java.util.List partnerTypeList) { this.partnerTypeList = partnerTypeList; return this; } public java.util.List getPartnerTypeList() { return this.partnerTypeList; } public SupplyChainUpdateDeptInfoRequest setSuperId(Long superId) { this.superId = superId; return this; } public Long getSuperId() { return this.superId; } public SupplyChainUpdateDeptInfoRequest setSupplyDeptId(Long supplyDeptId) { this.supplyDeptId = supplyDeptId; return this; } public Long getSupplyDeptId() { return this.supplyDeptId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy