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

com.bronto.api.model.HeaderFooterObject Maven / Gradle / Ivy

The newest version!

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 headerFooterObject complex type. * *

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

 * <complexType name="headerFooterObject">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="html" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="isHeader" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "headerFooterObject", propOrder = { "id", "name", "html", "text", "isHeader" }) public class HeaderFooterObject { protected String id; protected String name; protected String html; protected String text; protected boolean isHeader; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = 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; } /** * Gets the value of the html property. * * @return * possible object is * {@link String } * */ public String getHtml() { return html; } /** * Sets the value of the html property. * * @param value * allowed object is * {@link String } * */ public void setHtml(String value) { this.html = value; } /** * Gets the value of the text property. * * @return * possible object is * {@link String } * */ public String getText() { return text; } /** * Sets the value of the text property. * * @param value * allowed object is * {@link String } * */ public void setText(String value) { this.text = value; } /** * Gets the value of the isHeader property. * */ public boolean isIsHeader() { return isHeader; } /** * Sets the value of the isHeader property. * */ public void setIsHeader(boolean value) { this.isHeader = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy