net.minidev.ovh.api.telephony.OvhRealtimeEventProtocol Maven / Gradle / Ivy
The newest version!
package net.minidev.ovh.api.telephony;
/**
* The event protocol
*/
public enum OvhRealtimeEventProtocol {
mgcp("mgcp"),
sip("sip");
final String value;
OvhRealtimeEventProtocol(String s) {
this.value = s;
}
public String toString() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy