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