
tsg.ns.wsdl.coop.VsoePermitDiscount Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for VsoePermitDiscount.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="VsoePermitDiscount">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="_asAllowed"/>
* <enumeration value="_never"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "VsoePermitDiscount", namespace = "urn:types.common_2023_1.platform.webservices.netsuite.com")
@XmlEnum
public enum VsoePermitDiscount {
@XmlEnumValue("_asAllowed")
AS_ALLOWED("_asAllowed"),
@XmlEnumValue("_never")
NEVER("_never");
private final String value;
VsoePermitDiscount(String v) {
value = v;
}
public String value() {
return value;
}
public static VsoePermitDiscount fromValue(String v) {
for (VsoePermitDiscount c: VsoePermitDiscount.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy