package echosign.api.clientv20.dto14; 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 GetDocumentsOptions complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="GetDocumentsOptions"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="attachSupportingDocuments" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="auditReport" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="combine" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="participantEmail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="versionKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetDocumentsOptions", propOrder = { "attachSupportingDocuments", "auditReport", "combine", "participantEmail", "versionKey" }) public class GetDocumentsOptions { protected Boolean attachSupportingDocuments; protected Boolean auditReport; protected Boolean combine; @XmlElement(nillable = true) protected String participantEmail; @XmlElement(nillable = true) protected String versionKey; /** * Gets the value of the attachSupportingDocuments property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAttachSupportingDocuments() { return attachSupportingDocuments; } /** * Sets the value of the attachSupportingDocuments property. * * @param value * allowed object is * {@link Boolean } * */ public void setAttachSupportingDocuments(Boolean value) { this.attachSupportingDocuments = value; } /** * Gets the value of the auditReport property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAuditReport() { return auditReport; } /** * Sets the value of the auditReport property. * * @param value * allowed object is * {@link Boolean } * */ public void setAuditReport(Boolean value) { this.auditReport = value; } /** * Gets the value of the combine property. * * @return * possible object is * {@link Boolean } * */ public Boolean isCombine() { return combine; } /** * Sets the value of the combine property. * * @param value * allowed object is * {@link Boolean } * */ public void setCombine(Boolean value) { this.combine = value; } /** * Gets the value of the participantEmail property. * * @return * possible object is * {@link String } * */ public String getParticipantEmail() { return participantEmail; } /** * Sets the value of the participantEmail property. * * @param value * allowed object is * {@link String } * */ public void setParticipantEmail(String value) { this.participantEmail = value; } /** * Gets the value of the versionKey property. * * @return * possible object is * {@link String } * */ public String getVersionKey() { return versionKey; } /** * Sets the value of the versionKey property. * * @param value * allowed object is * {@link String } * */ public void setVersionKey(String value) { this.versionKey = value; } }