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

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

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


// Query parameters for operation listRecentChats
public class ListRecentChatsParameters {
    /**
     * Type of chats to be fetched. By default all chat types are returned
     * Enum: Everyone, Group, Personal, Direct, Team
     */
    public String[] type;
    /**
     * Max number of chats to be fetched by one request (Not more than 250).
     * Maximum: 250
     * Default: 30
     */
    public Long recordCount;

    public ListRecentChatsParameters type(String[] type) {
        this.type = type;
        return this;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy