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