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

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

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


/**
 * Result breakdown by response
 */
public class CallsByResponseBreakdown {
    /**
     * Value for Answered response
     * Required
     * Format: double
     */
    public Double answered;
    /**
     * Value for NotAnswered response
     * Required
     * Format: double
     */
    public Double notAnswered;
    /**
     * Value for Connected response
     * Required
     * Format: double
     */
    public Double connected;
    /**
     * Value for NotConnected response
     * Required
     * Format: double
     */
    public Double notConnected;

    public CallsByResponseBreakdown answered(Double answered) {
        this.answered = answered;
        return this;
    }

    public CallsByResponseBreakdown notAnswered(Double notAnswered) {
        this.notAnswered = notAnswered;
        return this;
    }

    public CallsByResponseBreakdown connected(Double connected) {
        this.connected = connected;
        return this;
    }

    public CallsByResponseBreakdown notConnected(Double notConnected) {
        this.notConnected = notConnected;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy