com.aliyun.dingtalkindustry_1_0.models.CustomizeContactEmpAddRequest 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 CustomizeContactEmpAddRequest 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 CustomizeContactEmpAddRequest build(java.util.Map map) throws Exception {
CustomizeContactEmpAddRequest self = new CustomizeContactEmpAddRequest();
return TeaModel.build(map, self);
}
public CustomizeContactEmpAddRequest setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public CustomizeContactEmpAddRequest setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public CustomizeContactEmpAddRequest setUserIdList(java.util.List userIdList) {
this.userIdList = userIdList;
return this;
}
public java.util.List getUserIdList() {
return this.userIdList;
}
}