com.aliyun.dingtalkchengfeng_1_0.models.GetOrgInfoResponseBody 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.dingtalkchengfeng_1_0.models;
import com.aliyun.tea.*;
public class GetOrgInfoResponseBody extends TeaModel {
@NameInMap("content")
public GetOrgInfoResponseBodyContent content;
@NameInMap("requestId")
public String requestId;
public static GetOrgInfoResponseBody build(java.util.Map map) throws Exception {
GetOrgInfoResponseBody self = new GetOrgInfoResponseBody();
return TeaModel.build(map, self);
}
public GetOrgInfoResponseBody setContent(GetOrgInfoResponseBodyContent content) {
this.content = content;
return this;
}
public GetOrgInfoResponseBodyContent getContent() {
return this.content;
}
public GetOrgInfoResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class GetOrgInfoResponseBodyContent extends TeaModel {
/**
* example:
* 123
*/
@NameInMap("deptCode")
public String deptCode;
/**
* example:
* 开发技术部
*/
@NameInMap("deptName")
public String deptName;
/**
* example:
* 10
*/
@NameInMap("deptNum")
public String deptNum;
/**
* example:
* 1
*/
@NameInMap("level")
public String level;
/**
* example:
* /1/123
*/
@NameInMap("organizationCodePath")
public String organizationCodePath;
/**
* example:
* /开发技术部
*/
@NameInMap("organizationPath")
public String organizationPath;
/**
* example:
* 1
*/
@NameInMap("parentDeptCode")
public String parentDeptCode;
/**
* example:
* 开发部
*/
@NameInMap("shortName")
public String shortName;
/**
* example:
* 1678886770065
*/
@NameInMap("startDate")
public String startDate;
/**
* example:
* 1678886770065
*/
@NameInMap("stopDate")
public String stopDate;
public static GetOrgInfoResponseBodyContent build(java.util.Map map) throws Exception {
GetOrgInfoResponseBodyContent self = new GetOrgInfoResponseBodyContent();
return TeaModel.build(map, self);
}
public GetOrgInfoResponseBodyContent setDeptCode(String deptCode) {
this.deptCode = deptCode;
return this;
}
public String getDeptCode() {
return this.deptCode;
}
public GetOrgInfoResponseBodyContent setDeptName(String deptName) {
this.deptName = deptName;
return this;
}
public String getDeptName() {
return this.deptName;
}
public GetOrgInfoResponseBodyContent setDeptNum(String deptNum) {
this.deptNum = deptNum;
return this;
}
public String getDeptNum() {
return this.deptNum;
}
public GetOrgInfoResponseBodyContent setLevel(String level) {
this.level = level;
return this;
}
public String getLevel() {
return this.level;
}
public GetOrgInfoResponseBodyContent setOrganizationCodePath(String organizationCodePath) {
this.organizationCodePath = organizationCodePath;
return this;
}
public String getOrganizationCodePath() {
return this.organizationCodePath;
}
public GetOrgInfoResponseBodyContent setOrganizationPath(String organizationPath) {
this.organizationPath = organizationPath;
return this;
}
public String getOrganizationPath() {
return this.organizationPath;
}
public GetOrgInfoResponseBodyContent setParentDeptCode(String parentDeptCode) {
this.parentDeptCode = parentDeptCode;
return this;
}
public String getParentDeptCode() {
return this.parentDeptCode;
}
public GetOrgInfoResponseBodyContent setShortName(String shortName) {
this.shortName = shortName;
return this;
}
public String getShortName() {
return this.shortName;
}
public GetOrgInfoResponseBodyContent setStartDate(String startDate) {
this.startDate = startDate;
return this;
}
public String getStartDate() {
return this.startDate;
}
public GetOrgInfoResponseBodyContent setStopDate(String stopDate) {
this.stopDate = stopDate;
return this;
}
public String getStopDate() {
return this.stopDate;
}
}
}