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

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

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


/**
 * Query parameters for operation readAccountPresence
 */
public class ReadAccountPresenceParameters {
    /**
     * Whether to return detailed telephony state
     */
    public Boolean detailedTelephonyState;
    /**
     * Whether to return SIP data
     */
    public Boolean sipData;
    /**
     * Page number for account presence information
     * Format: int32
     */
    public Long page;
    /**
     * Number for account presence information items per page
     * Format: int32
     */
    public Long perPage;

    public ReadAccountPresenceParameters detailedTelephonyState(Boolean detailedTelephonyState) {
        this.detailedTelephonyState = detailedTelephonyState;
        return this;
    }

    public ReadAccountPresenceParameters sipData(Boolean sipData) {
        this.sipData = sipData;
        return this;
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy