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

net.minidev.ovh.api.pack.xdsl.OvhShippingAddressContextEnum Maven / Gradle / Ivy

The newest version!
package net.minidev.ovh.api.pack.xdsl;

/**
 * Allowed contexts when looking for shipping addresses
 */
public enum OvhShippingAddressContextEnum {
	migration("migration"),
	voipLine("voipLine");

	final String value;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy