All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bronto.api.model.ReadMessages 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.XmlType;


/**
 * 

Java class for readMessages complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="readMessages">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="filter" type="{http://api.bronto.com/v4}messageFilter" minOccurs="0"/>
 *         <element name="includeContent" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="pageNumber" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="pageSize" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "readMessages", propOrder = { "filter", "includeContent", "pageNumber", "pageSize" }) public class ReadMessages { protected MessageFilter filter; protected boolean includeContent; protected int pageNumber; protected Integer pageSize; /** * Gets the value of the filter property. * * @return * possible object is * {@link MessageFilter } * */ public MessageFilter getFilter() { return filter; } /** * Sets the value of the filter property. * * @param value * allowed object is * {@link MessageFilter } * */ public void setFilter(MessageFilter value) { this.filter = value; } /** * Gets the value of the includeContent property. * */ public boolean isIncludeContent() { return includeContent; } /** * Sets the value of the includeContent property. * */ public void setIncludeContent(boolean value) { this.includeContent = value; } /** * Gets the value of the pageNumber property. * */ public int getPageNumber() { return pageNumber; } /** * Sets the value of the pageNumber property. * */ public void setPageNumber(int value) { this.pageNumber = value; } /** * Gets the value of the pageSize property. * * @return * possible object is * {@link Integer } * */ public Integer getPageSize() { return pageSize; } /** * Sets the value of the pageSize property. * * @param value * allowed object is * {@link Integer } * */ public void setPageSize(Integer value) { this.pageSize = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy