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

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

package com.ringcentral.definitions;


/**
 * Query parameters for operation rcwHistoryListParticipants
 */
public class RcwHistoryListParticipantsParameters {
    /**
     * The role of the invitee/participant.
     * Enum: Panelist, CoHost, Host, Attendee
     */
    public String[] role;
    /**
     * The original role of the invitee/participant.
     * Enum: Panelist, CoHost, Host, Attendee
     */
    public String[] originalRole;
    /**
     * The number of items per page. If provided value in the request
     * is greater than a maximum, the maximum value is applied
     * Maximum: 1000
     * Minimum: 1
     * Format: int32
     * Example: 100
     * Default: 100
     */
    public Long perPage;
    /**
     * The token indicating the particular page of the result set to be retrieved.
     * If omitted the first page will be returned.
     */
    public String pageToken;

    public RcwHistoryListParticipantsParameters role(String[] role) {
        this.role = role;
        return this;
    }

    public RcwHistoryListParticipantsParameters originalRole(String[] originalRole) {
        this.originalRole = originalRole;
        return this;
    }

    public RcwHistoryListParticipantsParameters perPage(Long perPage) {
        this.perPage = perPage;
        return this;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy