package echosign.api.clientv20.dto18; 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 SearchUserDocumentsOptions complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SearchUserDocumentsOptions"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="participantEmail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="query" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SearchUserDocumentsOptions", propOrder = { "name", "participantEmail", "query", "status" }) public class SearchUserDocumentsOptions { @XmlElement(nillable = true) protected String name; @XmlElement(nillable = true) protected String participantEmail; @XmlElement(nillable = true) protected String query; @XmlElement(nillable = true) protected String status; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = 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 query property. * * @return * possible object is * {@link String } * */ public String getQuery() { return query; } /** * Sets the value of the query property. * * @param value * allowed object is * {@link String } * */ public void setQuery(String value) { this.query = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = value; } }