net.minidev.ovh.api.price.telephony.OvhOfferEnum Maven / Gradle / Ivy
package net.minidev.ovh.api.price.telephony;
/**
* Enum of Offers
*/
public enum OvhOfferEnum {
discovery("discovery"),
enterprise("enterprise"),
enterpriseMobile("enterpriseMobile"),
resellerEnterprise("resellerEnterprise"),
resellerEnterpriseMobile("resellerEnterpriseMobile");
final String value;
OvhOfferEnum(String s) {
this.value = s;
}
public String toString() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy