![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkrooms_1_0.models.QueryMeetingRoomGroupResponseBody 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.dingtalkrooms_1_0.models;
import com.aliyun.tea.*;
public class QueryMeetingRoomGroupResponseBody extends TeaModel {
/**
* example:
* 172
*/
@NameInMap("groupId")
public Long groupId;
/**
* example:
* 测试分组
*/
@NameInMap("groupName")
public String groupName;
/**
* example:
* 0
*/
@NameInMap("parentId")
public Long parentId;
public static QueryMeetingRoomGroupResponseBody build(java.util.Map map) throws Exception {
QueryMeetingRoomGroupResponseBody self = new QueryMeetingRoomGroupResponseBody();
return TeaModel.build(map, self);
}
public QueryMeetingRoomGroupResponseBody setGroupId(Long groupId) {
this.groupId = groupId;
return this;
}
public Long getGroupId() {
return this.groupId;
}
public QueryMeetingRoomGroupResponseBody setGroupName(String groupName) {
this.groupName = groupName;
return this;
}
public String getGroupName() {
return this.groupName;
}
public QueryMeetingRoomGroupResponseBody setParentId(Long parentId) {
this.parentId = parentId;
return this;
}
public Long getParentId() {
return this.parentId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy