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

com.exacttarget.fuelsdk.internal.UnsubscribeFromSMSPublicationMOKeyword Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version

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

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

 * <complexType name="UnsubscribeFromSMSPublicationMOKeyword">
 *   <complexContent>
 *     <extension base="{http://exacttarget.com/wsdl/partnerAPI}BaseMOKeyword">
 *       <sequence>
 *         <element name="NextMOKeyword" type="{http://exacttarget.com/wsdl/partnerAPI}BaseMOKeyword" minOccurs="0"/>
 *         <element name="AllUnsubSuccessMessage" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="InvalidPublicationMessage" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="SingleUnsubSuccessMessage" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UnsubscribeFromSMSPublicationMOKeyword", propOrder = { "nextMOKeyword", "allUnsubSuccessMessage", "invalidPublicationMessage", "singleUnsubSuccessMessage" }) public class UnsubscribeFromSMSPublicationMOKeyword extends BaseMOKeyword { @XmlElement(name = "NextMOKeyword") protected BaseMOKeyword nextMOKeyword; @XmlElement(name = "AllUnsubSuccessMessage", required = true) protected String allUnsubSuccessMessage; @XmlElement(name = "InvalidPublicationMessage", required = true) protected String invalidPublicationMessage; @XmlElement(name = "SingleUnsubSuccessMessage", required = true) protected String singleUnsubSuccessMessage; /** * 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 allUnsubSuccessMessage property. * * @return * possible object is * {@link String } * */ public String getAllUnsubSuccessMessage() { return allUnsubSuccessMessage; } /** * Sets the value of the allUnsubSuccessMessage property. * * @param value * allowed object is * {@link String } * */ public void setAllUnsubSuccessMessage(String value) { this.allUnsubSuccessMessage = value; } /** * Gets the value of the invalidPublicationMessage property. * * @return * possible object is * {@link String } * */ public String getInvalidPublicationMessage() { return invalidPublicationMessage; } /** * Sets the value of the invalidPublicationMessage property. * * @param value * allowed object is * {@link String } * */ public void setInvalidPublicationMessage(String value) { this.invalidPublicationMessage = value; } /** * Gets the value of the singleUnsubSuccessMessage property. * * @return * possible object is * {@link String } * */ public String getSingleUnsubSuccessMessage() { return singleUnsubSuccessMessage; } /** * Sets the value of the singleUnsubSuccessMessage property. * * @param value * allowed object is * {@link String } * */ public void setSingleUnsubSuccessMessage(String value) { this.singleUnsubSuccessMessage = 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); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy