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