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

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

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


/**
 * Data for calls with breakdown by response (Answered, NotAnswered, Connected, NotConnected)
 */
public class CallsByResponse {
    /**
     * Unit of the result value
     * Required
     * Enum: Percent, Seconds, Instances
     */
    public String valueType;
    /**
     * Required
     */
    public CallsByResponseBreakdown values;

    public CallsByResponse valueType(String valueType) {
        this.valueType = valueType;
        return this;
    }

    public CallsByResponse values(CallsByResponseBreakdown values) {
        this.values = values;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy