![JAR search and dependency download from the Maven repository](/logo.png)
net.minidev.ovh.api.telephony.OvhOvhPabxHuntingLiveCallsStateEnum Maven / Gradle / Ivy
package net.minidev.ovh.api.telephony;
/**
* State of the call
*/
public enum OvhOvhPabxHuntingLiveCallsStateEnum {
Answered("Answered"),
Waiting("Waiting");
final String value;
OvhOvhPabxHuntingLiveCallsStateEnum(String s) {
this.value = s;
}
public String toString() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy