![JAR search and dependency download from the Maven repository](/logo.png)
com.ringcentral.definitions.AllCalls Maven / Gradle / Ivy
package com.ringcentral.definitions;
/**
* Data for all calls
*/
public class AllCalls {
/**
* Unit of the result value
* Required
* Enum: Percent, Seconds, Instances
*/
public String valueType;
/**
* Value for all calls
* Required
* Format: double
*/
public Double values;
public AllCalls valueType(String valueType) {
this.valueType = valueType;
return this;
}
public AllCalls values(Double values) {
this.values = values;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy