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