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

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

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


/**
 * Query parameters for operation listDepartmentMembers
 */
public class ListDepartmentMembersParameters {
    /**
     * Indicates a page number to retrieve. Only positive number values
     * are accepted
     * Format: int32
     * Default: 1
     */
    public Long page;
    /**
     * Indicates a page size (number of items)
     * Format: int32
     * Default: 100
     */
    public Long perPage;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy