com.exacttarget.fuelsdk.internal.SendSMSMOKeyword Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fuelsdk Show documentation
Show all versions of fuelsdk Show documentation
Salesforce Marketing Cloud Java SDK
package com.exacttarget.fuelsdk.internal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.cxf.xjc.runtime.JAXBToStringStyle;
/**
* Java class for SendSMSMOKeyword complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SendSMSMOKeyword">
* <complexContent>
* <extension base="{http://exacttarget.com/wsdl/partnerAPI}BaseMOKeyword">
* <sequence>
* <element name="NextMOKeyword" type="{http://exacttarget.com/wsdl/partnerAPI}BaseMOKeyword" minOccurs="0"/>
* <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ScriptErrorMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SendSMSMOKeyword", propOrder = {
"nextMOKeyword",
"message",
"scriptErrorMessage"
})
public class SendSMSMOKeyword
extends BaseMOKeyword
{
@XmlElement(name = "NextMOKeyword")
protected BaseMOKeyword nextMOKeyword;
@XmlElement(name = "Message")
protected String message;
@XmlElement(name = "ScriptErrorMessage")
protected String scriptErrorMessage;
/**
* Gets the value of the nextMOKeyword property.
*
* @return
* possible object is
* {@link BaseMOKeyword }
*
*/
public BaseMOKeyword getNextMOKeyword() {
return nextMOKeyword;
}
/**
* Sets the value of the nextMOKeyword property.
*
* @param value
* allowed object is
* {@link BaseMOKeyword }
*
*/
public void setNextMOKeyword(BaseMOKeyword value) {
this.nextMOKeyword = value;
}
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessage() {
return message;
}
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessage(String value) {
this.message = value;
}
/**
* Gets the value of the scriptErrorMessage property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getScriptErrorMessage() {
return scriptErrorMessage;
}
/**
* Sets the value of the scriptErrorMessage property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setScriptErrorMessage(String value) {
this.scriptErrorMessage = value;
}
/**
* Generates a String representation of the contents of this type.
* This is an extension method, produced by the 'ts' xjc plugin
*
*/
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE);
}
}