net.minidev.ovh.api.telephony.OvhVoicemailGreetingEnum Maven / Gradle / Ivy
 The newest version!
        
        package net.minidev.ovh.api.telephony;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
 * Greeting type
 */
public enum OvhVoicemailGreetingEnum {
	@JsonProperty("default")
	_default("default"),
	full("full"),
	@JsonProperty("short")
	_short("short");
	final String value;
	OvhVoicemailGreetingEnum(String s) {
		this.value = s;
	}
	public String toString() {
		return this.value;
	}
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy