net.minidev.ovh.api.service.OvhTerminationReasonEnum 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;
/**
 * All reasons you can provide for a service termination
 */
public enum OvhTerminationReasonEnum {
	FEATURES_DONT_SUIT_ME("FEATURES_DONT_SUIT_ME"),
	LACK_OF_PERFORMANCES("LACK_OF_PERFORMANCES"),
	MIGRATED_TO_ANOTHER_OVH_PRODUCT("MIGRATED_TO_ANOTHER_OVH_PRODUCT"),
	MIGRATED_TO_COMPETITOR("MIGRATED_TO_COMPETITOR"),
	NOT_NEEDED_ANYMORE("NOT_NEEDED_ANYMORE"),
	NOT_RELIABLE("NOT_RELIABLE"),
	NO_ANSWER("NO_ANSWER"),
	OTHER("OTHER"),
	TOO_EXPENSIVE("TOO_EXPENSIVE"),
	TOO_HARD_TO_USE("TOO_HARD_TO_USE"),
	UNSATIFIED_BY_CUSTOMER_SUPPORT("UNSATIFIED_BY_CUSTOMER_SUPPORT");
	final String value;
	OvhTerminationReasonEnum(String s) {
		this.value = s;
	}
	public String toString() {
		return this.value;
	}
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy