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
                
             The newest version!
        
        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;
	}
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy