com.aliyun.dingtalkvillage_1_0.models.ListSubDeptIdsResponseBody 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.dingtalkvillage_1_0.models;
import com.aliyun.tea.*;
public class ListSubDeptIdsResponseBody extends TeaModel {
// 下属组织的子部门 ID 列表
@NameInMap("departmentIdList")
public java.util.List departmentIdList;
public static ListSubDeptIdsResponseBody build(java.util.Map map) throws Exception {
ListSubDeptIdsResponseBody self = new ListSubDeptIdsResponseBody();
return TeaModel.build(map, self);
}
public ListSubDeptIdsResponseBody setDepartmentIdList(java.util.List departmentIdList) {
this.departmentIdList = departmentIdList;
return this;
}
public java.util.List getDepartmentIdList() {
return this.departmentIdList;
}
}