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