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