
com.bronto.api.model.RecentActivitySearchRequest Maven / Gradle / Ivy
package com.bronto.api.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for recentActivitySearchRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="recentActivitySearchRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="start" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="end" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="contactId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="deliveryId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="size" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="readDirection" type="{http://api.bronto.com/v4}readDirection" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "recentActivitySearchRequest", propOrder = {
"start",
"end",
"contactId",
"deliveryId",
"size",
"readDirection"
})
@XmlSeeAlso({
RecentOutboundActivitySearchRequest.class,
RecentInboundActivitySearchRequest.class
})
public abstract class RecentActivitySearchRequest {
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar start;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar end;
protected String contactId;
protected String deliveryId;
protected int size;
@XmlSchemaType(name = "string")
protected ReadDirection readDirection;
/**
* Gets the value of the start property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStart() {
return start;
}
/**
* Sets the value of the start property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStart(XMLGregorianCalendar value) {
this.start = value;
}
/**
* Gets the value of the end property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getEnd() {
return end;
}
/**
* Sets the value of the end property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setEnd(XMLGregorianCalendar value) {
this.end = value;
}
/**
* Gets the value of the contactId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContactId() {
return contactId;
}
/**
* Sets the value of the contactId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContactId(String value) {
this.contactId = value;
}
/**
* Gets the value of the deliveryId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDeliveryId() {
return deliveryId;
}
/**
* Sets the value of the deliveryId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDeliveryId(String value) {
this.deliveryId = value;
}
/**
* Gets the value of the size property.
*
*/
public int getSize() {
return size;
}
/**
* Sets the value of the size property.
*
*/
public void setSize(int value) {
this.size = value;
}
/**
* Gets the value of the readDirection property.
*
* @return
* possible object is
* {@link ReadDirection }
*
*/
public ReadDirection getReadDirection() {
return readDirection;
}
/**
* Sets the value of the readDirection property.
*
* @param value
* allowed object is
* {@link ReadDirection }
*
*/
public void setReadDirection(ReadDirection value) {
this.readDirection = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy