![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkrooms_1_0.models.QueryMeetingRoomControlPanelListRequest 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 QueryMeetingRoomControlPanelListRequest extends TeaModel {
/**
* example:
* 10
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* example:
* 0
*/
@NameInMap("nextToken")
public Long nextToken;
/**
* example:
* 2iPOLxxxxx
*/
@NameInMap("roomId")
public String roomId;
/**
* example:
* 2iPOLbpUNMLzB5LuwggiiqiPwiEiE
*/
@NameInMap("unionId")
public String unionId;
public static QueryMeetingRoomControlPanelListRequest build(java.util.Map map) throws Exception {
QueryMeetingRoomControlPanelListRequest self = new QueryMeetingRoomControlPanelListRequest();
return TeaModel.build(map, self);
}
public QueryMeetingRoomControlPanelListRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public QueryMeetingRoomControlPanelListRequest setNextToken(Long nextToken) {
this.nextToken = nextToken;
return this;
}
public Long getNextToken() {
return this.nextToken;
}
public QueryMeetingRoomControlPanelListRequest setRoomId(String roomId) {
this.roomId = roomId;
return this;
}
public String getRoomId() {
return this.roomId;
}
public QueryMeetingRoomControlPanelListRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy