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

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

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

 * <complexType name="smsMessageObject">
 *   <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="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="messageFolderId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="shortenUrls" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "smsMessageObject", propOrder = { "id", "name", "status", "messageFolderId", "shortenUrls", "content" }) public class SmsMessageObject { protected String id; protected String name; protected String status; protected String messageFolderId; protected Boolean shortenUrls; protected String content; /** * 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 status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = value; } /** * Gets the value of the messageFolderId property. * * @return * possible object is * {@link String } * */ public String getMessageFolderId() { return messageFolderId; } /** * Sets the value of the messageFolderId property. * * @param value * allowed object is * {@link String } * */ public void setMessageFolderId(String value) { this.messageFolderId = value; } /** * Gets the value of the shortenUrls property. * * @return * possible object is * {@link Boolean } * */ public Boolean isShortenUrls() { return shortenUrls; } /** * Sets the value of the shortenUrls property. * * @param value * allowed object is * {@link Boolean } * */ public void setShortenUrls(Boolean value) { this.shortenUrls = value; } /** * Gets the value of the content property. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy