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

com.bronto.api.model.RemailObject 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 remailObject complex type. * *

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

 * <complexType name="remailObject">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="days" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="time" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="subject" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="messageId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "remailObject", propOrder = { "days", "time", "subject", "messageId", "activity" }) public class RemailObject { protected Integer days; protected String time; protected String subject; protected String messageId; protected String activity; /** * Gets the value of the days property. * * @return * possible object is * {@link Integer } * */ public Integer getDays() { return days; } /** * Sets the value of the days property. * * @param value * allowed object is * {@link Integer } * */ public void setDays(Integer value) { this.days = value; } /** * Gets the value of the time property. * * @return * possible object is * {@link String } * */ public String getTime() { return time; } /** * Sets the value of the time property. * * @param value * allowed object is * {@link String } * */ public void setTime(String value) { this.time = value; } /** * Gets the value of the subject property. * * @return * possible object is * {@link String } * */ public String getSubject() { return subject; } /** * Sets the value of the subject property. * * @param value * allowed object is * {@link String } * */ public void setSubject(String value) { this.subject = value; } /** * Gets the value of the messageId property. * * @return * possible object is * {@link String } * */ public String getMessageId() { return messageId; } /** * Sets the value of the messageId property. * * @param value * allowed object is * {@link String } * */ public void setMessageId(String value) { this.messageId = value; } /** * Gets the value of the activity property. * * @return * possible object is * {@link String } * */ public String getActivity() { return activity; } /** * Sets the value of the activity property. * * @param value * allowed object is * {@link String } * */ public void setActivity(String value) { this.activity = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy