All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkrooms_1_0.models.QueryMeetingRoomGroupResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// 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