net.minidev.ovh.api.price.email.OvhServiceEnum Maven / Gradle / Ivy
package net.minidev.ovh.api.price.email;
/**
 * Enum of Services
 */
public enum OvhServiceEnum {
	big("big"),
	classic("classic"),
	medium("medium");
	final String value;
	OvhServiceEnum(String s) {
		this.value = s;
	}
	public String toString() {
		return this.value;
	}
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy