package echosign.api.clientv20.dto; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for FileInfo complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="FileInfo"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="file" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/> * <element name="fileName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="formKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="libraryDocumentKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="libraryDocumentName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="mimeType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FileInfo", propOrder = { "file", "fileName", "formKey", "libraryDocumentKey", "libraryDocumentName", "mimeType", "url" }) public class FileInfo { @XmlElement(nillable = true) protected byte[] file; @XmlElement(nillable = true) protected String fileName; @XmlElement(nillable = true) protected String formKey; @XmlElement(nillable = true) protected String libraryDocumentKey; @XmlElement(nillable = true) protected String libraryDocumentName; @XmlElement(nillable = true) protected String mimeType; @XmlElement(nillable = true) protected String url; /** * Gets the value of the file property. * * @return * possible object is * byte[] */ public byte[] getFile() { return file; } /** * Sets the value of the file property. * * @param value * allowed object is * byte[] */ public void setFile(byte[] value) { this.file = ((byte[]) value); } /** * Gets the value of the fileName property. * * @return * possible object is * {@link String } * */ public String getFileName() { return fileName; } /** * Sets the value of the fileName property. * * @param value * allowed object is * {@link String } * */ public void setFileName(String value) { this.fileName = value; } /** * Gets the value of the formKey property. * * @return * possible object is * {@link String } * */ public String getFormKey() { return formKey; } /** * Sets the value of the formKey property. * * @param value * allowed object is * {@link String } * */ public void setFormKey(String value) { this.formKey = value; } /** * Gets the value of the libraryDocumentKey property. * * @return * possible object is * {@link String } * */ public String getLibraryDocumentKey() { return libraryDocumentKey; } /** * Sets the value of the libraryDocumentKey property. * * @param value * allowed object is * {@link String } * */ public void setLibraryDocumentKey(String value) { this.libraryDocumentKey = value; } /** * Gets the value of the libraryDocumentName property. * * @return * possible object is * {@link String } * */ public String getLibraryDocumentName() { return libraryDocumentName; } /** * Sets the value of the libraryDocumentName property. * * @param value * allowed object is * {@link String } * */ public void setLibraryDocumentName(String value) { this.libraryDocumentName = value; } /** * Gets the value of the mimeType property. * * @return * possible object is * {@link String } * */ public String getMimeType() { return mimeType; } /** * Sets the value of the mimeType property. * * @param value * allowed object is * {@link String } * */ public void setMimeType(String value) { this.mimeType = value; } /** * Gets the value of the url property. * * @return * possible object is * {@link String } * */ public String getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setUrl(String value) { this.url = value; } }