com.aliyun.dingtalkindustry_1_0.models.SupplyDeletePartnerManagersRequest 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 SupplyDeletePartnerManagersRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1231
*/
@NameInMap("deptId")
public Long deptId;
/**
* This parameter is required.
*
* example:
* 12131
*/
@NameInMap("interfaceId")
public String interfaceId;
/**
* This parameter is required.
*
* example:
* user
*/
@NameInMap("interfaceType")
public String interfaceType;
public static SupplyDeletePartnerManagersRequest build(java.util.Map map) throws Exception {
SupplyDeletePartnerManagersRequest self = new SupplyDeletePartnerManagersRequest();
return TeaModel.build(map, self);
}
public SupplyDeletePartnerManagersRequest setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public SupplyDeletePartnerManagersRequest setInterfaceId(String interfaceId) {
this.interfaceId = interfaceId;
return this;
}
public String getInterfaceId() {
return this.interfaceId;
}
public SupplyDeletePartnerManagersRequest setInterfaceType(String interfaceType) {
this.interfaceType = interfaceType;
return this;
}
public String getInterfaceType() {
return this.interfaceType;
}
}