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

com.ringcentral.definitions.ReadGlipPostsParameters Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package com.ringcentral.definitions;


/**
 * Query parameters for operation readGlipPosts
 */
public class ReadGlipPostsParameters {
    /**
     * Max number of posts to be fetched by one request (not more than 250)
     * Maximum: 250
     * Default: 30
     */
    public Long recordCount;
    /**
     * Pagination token.
     */
    public String pageToken;

    public ReadGlipPostsParameters recordCount(Long recordCount) {
        this.recordCount = recordCount;
        return this;
    }

    public ReadGlipPostsParameters pageToken(String pageToken) {
        this.pageToken = pageToken;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy