![JAR search and dependency download from the Maven repository](/logo.png)
com.ringcentral.definitions.ListPagingGroupDevicesParameters Maven / Gradle / Ivy
package com.ringcentral.definitions;
/**
* Query parameters for operation listPagingGroupDevices
*/
public class ListPagingGroupDevicesParameters {
/**
* 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 ListPagingGroupDevicesParameters page(Long page) {
this.page = page;
return this;
}
public ListPagingGroupDevicesParameters perPage(Long perPage) {
this.perPage = perPage;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy