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

net.minidev.ovh.api.saas.csp2.OvhSupportedServiceEnum Maven / Gradle / Ivy

There is a newer version: 1.0.17
Show newest version
package net.minidev.ovh.api.saas.csp2;

/**
 * Supported services of Office365
 */
public enum OvhSupportedServiceEnum {
	Email("Email"),
	Intune("Intune"),
	OfficeCommunicationsOnline("OfficeCommunicationsOnline");

	final String value;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy