package echosign.api.clientv20.dto16; 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 SupportingDocument complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SupportingDocument"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="supportingDocumentKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/> * <element name="displayLabel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="fieldName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="mimeType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SupportingDocument", propOrder = { "supportingDocumentKey", "content", "displayLabel", "fieldName", "mimeType" }) public class SupportingDocument { @XmlElement(nillable = true) protected String supportingDocumentKey; @XmlElement(nillable = true) protected byte[] content; @XmlElement(nillable = true) protected String displayLabel; @XmlElement(nillable = true) protected String fieldName; @XmlElement(nillable = true) protected String mimeType; /** * Gets the value of the supportingDocumentKey property. * * @return * possible object is * {@link String } * */ public String getSupportingDocumentKey() { return supportingDocumentKey; } /** * Sets the value of the supportingDocumentKey property. * * @param value * allowed object is * {@link String } * */ public void setSupportingDocumentKey(String value) { this.supportingDocumentKey = value; } /** * Gets the value of the content property. * * @return * possible object is * byte[] */ public byte[] getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * byte[] */ public void setContent(byte[] value) { this.content = ((byte[]) value); } /** * Gets the value of the displayLabel property. * * @return * possible object is * {@link String } * */ public String getDisplayLabel() { return displayLabel; } /** * Sets the value of the displayLabel property. * * @param value * allowed object is * {@link String } * */ public void setDisplayLabel(String value) { this.displayLabel = value; } /** * Gets the value of the fieldName property. * * @return * possible object is * {@link String } * */ public String getFieldName() { return fieldName; } /** * Sets the value of the fieldName property. * * @param value * allowed object is * {@link String } * */ public void setFieldName(String value) { this.fieldName = 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; } }