com.aliyun.dingtalkindustry_1_0.models.CustomizeContactEmpDeleteRequest 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 CustomizeContactEmpDeleteRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("code")
public String code;
/**
* This parameter is required.
*
* example:
* 65722123
*/
@NameInMap("deptId")
public Long deptId;
/**
* This parameter is required.
*/
@NameInMap("userIdList")
public java.util.List userIdList;
public static CustomizeContactEmpDeleteRequest build(java.util.Map map) throws Exception {
CustomizeContactEmpDeleteRequest self = new CustomizeContactEmpDeleteRequest();
return TeaModel.build(map, self);
}
public CustomizeContactEmpDeleteRequest setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public CustomizeContactEmpDeleteRequest setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public CustomizeContactEmpDeleteRequest setUserIdList(java.util.List userIdList) {
this.userIdList = userIdList;
return this;
}
public java.util.List getUserIdList() {
return this.userIdList;
}
}