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