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

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

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


/**
 * Query parameters for operation analyticsCallsAggregationFetch
 */
public class AnalyticsCallsAggregationFetchParameters {
    /**
     * The current page number (positive numbers only)
     * Minimum: 1
     * Format: int32
     */
    public Long page;
    /**
     * Number of records displayed on a page (positive numbers only, max value of 200)
     * Maximum: 200
     * Minimum: 1
     * Format: int32
     */
    public Long perPage;

    public AnalyticsCallsAggregationFetchParameters page(Long page) {
        this.page = page;
        return this;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy