All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minidev.ovh.api.price.xdsl.options.OvhIpv4Enum Maven / Gradle / Ivy

The newest version!
package net.minidev.ovh.api.price.xdsl.options;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Enum of Ipv4s
 */
public enum OvhIpv4Enum {
	@JsonProperty("29")
	_29("29");

	final String value;

	OvhIpv4Enum(String s) {
		this.value = s;
	}

	public String toString() {
		return this.value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy