com.aliyun.dingtalkindustry_1_0.models.SupplyAddPartnerManagersRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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;
}
}