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