
com.ringcentral.definitions.ListBlockedAllowedNumbersParameters Maven / Gradle / Ivy
package com.ringcentral.definitions;
/**
* Query parameters for operation listBlockedAllowedNumbers
*/
public class ListBlockedAllowedNumbersParameters {
/**
* The result set page number (1-indexed) to return
* Maximum: 1000
* Minimum: 1
* Format: int32
* Example: 1
* Default: 1
*/
public Long page;
/**
* 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;
/**
* Status of a phone number
* Default: Blocked
* Enum: Blocked, Allowed
*/
public String status;
public ListBlockedAllowedNumbersParameters page(Long page) {
this.page = page;
return this;
}
public ListBlockedAllowedNumbersParameters perPage(Long perPage) {
this.perPage = perPage;
return this;
}
public ListBlockedAllowedNumbersParameters status(String status) {
this.status = status;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy