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

net.minidev.ovh.api.supply.OvhStatus Maven / Gradle / Ivy

package net.minidev.ovh.api.supply;

/**
 * Request status
 */
public enum OvhStatus {
	error("error"),
	ok("ok"),
	pending("pending");

	final String value;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy