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

com.aliyun.dingtalkindustry_1_0.models.SupplyAddPartnerManagersRequest 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 SupplyAddPartnerManagersRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

56781213

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

This parameter is required.

*/ @NameInMap("interfaceId") public String interfaceId; /** *

This parameter is required.

*/ @NameInMap("interfaceType") public String interfaceType; public static SupplyAddPartnerManagersRequest build(java.util.Map map) throws Exception { SupplyAddPartnerManagersRequest self = new SupplyAddPartnerManagersRequest(); return TeaModel.build(map, self); } public SupplyAddPartnerManagersRequest setDeptId(Long deptId) { this.deptId = deptId; return this; } public Long getDeptId() { return this.deptId; } public SupplyAddPartnerManagersRequest setInterfaceId(String interfaceId) { this.interfaceId = interfaceId; return this; } public String getInterfaceId() { return this.interfaceId; } public SupplyAddPartnerManagersRequest setInterfaceType(String interfaceType) { this.interfaceType = interfaceType; return this; } public String getInterfaceType() { return this.interfaceType; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy