net.minidev.ovh.api.price.xdsl.options.OvhLineEnum Maven / Gradle / Ivy
package net.minidev.ovh.api.price.xdsl.options;
/**
 * Enum of Lines
 */
public enum OvhLineEnum {
	creation("creation"),
	partialToTotal("partialToTotal");
	final String value;
	OvhLineEnum(String s) {
		this.value = s;
	}
	public String toString() {
		return this.value;
	}
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy