
com.bronto.api.model.ReadBounces 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 readBounces complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="readBounces">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="filter" type="{http://api.bronto.com/v4}bounceFilter" minOccurs="0"/>
* <element name="pageNumber" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "readBounces", propOrder = {
"filter",
"pageNumber"
})
public class ReadBounces {
protected BounceFilter filter;
protected int pageNumber;
/**
* Gets the value of the filter property.
*
* @return
* possible object is
* {@link BounceFilter }
*
*/
public BounceFilter getFilter() {
return filter;
}
/**
* Sets the value of the filter property.
*
* @param value
* allowed object is
* {@link BounceFilter }
*
*/
public void setFilter(BounceFilter value) {
this.filter = 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy