package echosign.api.clientv20.dto; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for OptIn. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="OptIn"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="YES"/> * <enumeration value="NO"/> * <enumeration value="UNKNOWN"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "OptIn") @XmlEnum public enum OptIn { YES, NO, UNKNOWN; public String value() { return name(); } public static OptIn fromValue(String v) { return valueOf(v); } }