com.aliyun.dingtalkrooms_1_0.models.QueryMeetingRoomListRequest 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 QueryMeetingRoomListRequest extends TeaModel {
/**
* example:
* 20
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* example:
* 124
*/
@NameInMap("nextToken")
public Long nextToken;
/**
* This parameter is required.
*
* example:
* 2iPOLbpUNMLzB5LuwggiiqiPwiEiE
*/
@NameInMap("unionId")
public String unionId;
public static QueryMeetingRoomListRequest build(java.util.Map map) throws Exception {
QueryMeetingRoomListRequest self = new QueryMeetingRoomListRequest();
return TeaModel.build(map, self);
}
public QueryMeetingRoomListRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public QueryMeetingRoomListRequest setNextToken(Long nextToken) {
this.nextToken = nextToken;
return this;
}
public Long getNextToken() {
return this.nextToken;
}
public QueryMeetingRoomListRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}