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