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

net.minidev.ovh.api.domain.OvhDomainPopActionEnum Maven / Gradle / Ivy

package net.minidev.ovh.api.domain;

/**
 * Possible values for pop action task
 */
public enum OvhDomainPopActionEnum {
	addAccount("addAccount"),
	changeAccount("changeAccount"),
	changePassword("changePassword"),
	deleteAccount("deleteAccount");

	final String value;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy