net.minidev.ovh.api.service.OvhStateEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ovh-java-sdk-veeamveeamEnterprise Show documentation
Show all versions of ovh-java-sdk-veeamveeamEnterprise Show documentation
OVH SDK for veeamveeamEnterprise
package net.minidev.ovh.api.service;
/**
*
*/
public enum OvhStateEnum {
expired("expired"),
inCreation("inCreation"),
ok("ok"),
pendingDebt("pendingDebt"),
unPaid("unPaid");
final String value;
OvhStateEnum(String s) {
this.value = s;
}
public String toString() {
return this.value;
}
}