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