com.aliyun.dingtalkindustry_1_0.models.CustomizeContactDeptInfoResponseBody 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 CustomizeContactDeptInfoResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("content")
public CustomizeContactDeptInfoResponseBodyContent content;
public static CustomizeContactDeptInfoResponseBody build(java.util.Map map) throws Exception {
CustomizeContactDeptInfoResponseBody self = new CustomizeContactDeptInfoResponseBody();
return TeaModel.build(map, self);
}
public CustomizeContactDeptInfoResponseBody setContent(CustomizeContactDeptInfoResponseBodyContent content) {
this.content = content;
return this;
}
public CustomizeContactDeptInfoResponseBodyContent getContent() {
return this.content;
}
public static class CustomizeContactDeptInfoResponseBodyContent extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("code")
public String code;
/**
* This parameter is required.
*/
@NameInMap("id")
public Long id;
/**
* This parameter is required.
*/
@NameInMap("managerIdList")
public java.util.List managerIdList;
/**
* This parameter is required.
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*/
@NameInMap("order")
public Long order;
/**
* This parameter is required.
*/
@NameInMap("parentDeptId")
public Long parentDeptId;
/**
* This parameter is required.
*/
@NameInMap("refId")
public Long refId;
/**
* This parameter is required.
*/
@NameInMap("type")
public Long type;
public static CustomizeContactDeptInfoResponseBodyContent build(java.util.Map map) throws Exception {
CustomizeContactDeptInfoResponseBodyContent self = new CustomizeContactDeptInfoResponseBodyContent();
return TeaModel.build(map, self);
}
public CustomizeContactDeptInfoResponseBodyContent setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public CustomizeContactDeptInfoResponseBodyContent setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public CustomizeContactDeptInfoResponseBodyContent setManagerIdList(java.util.List managerIdList) {
this.managerIdList = managerIdList;
return this;
}
public java.util.List getManagerIdList() {
return this.managerIdList;
}
public CustomizeContactDeptInfoResponseBodyContent setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public CustomizeContactDeptInfoResponseBodyContent setOrder(Long order) {
this.order = order;
return this;
}
public Long getOrder() {
return this.order;
}
public CustomizeContactDeptInfoResponseBodyContent setParentDeptId(Long parentDeptId) {
this.parentDeptId = parentDeptId;
return this;
}
public Long getParentDeptId() {
return this.parentDeptId;
}
public CustomizeContactDeptInfoResponseBodyContent setRefId(Long refId) {
this.refId = refId;
return this;
}
public Long getRefId() {
return this.refId;
}
public CustomizeContactDeptInfoResponseBodyContent setType(Long type) {
this.type = type;
return this;
}
public Long getType() {
return this.type;
}
}
}