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

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

There is a newer version: 2.1.67
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 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy