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

com.exacttarget.fuelsdk.internal.UpdateOptions 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 UpdateOptions complex type. * *

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

 * <complexType name="UpdateOptions">
 *   <complexContent>
 *     <extension base="{http://exacttarget.com/wsdl/partnerAPI}Options">
 *       <sequence>
 *         <element name="Container" type="{http://exacttarget.com/wsdl/partnerAPI}ContainerID" minOccurs="0"/>
 *         <element name="Action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UpdateOptions", propOrder = { "container", "action" }) public class UpdateOptions extends Options { @XmlElement(name = "Container") protected ContainerID container; @XmlElement(name = "Action") protected String action; /** * Gets the value of the container property. * * @return * possible object is * {@link ContainerID } * */ public ContainerID getContainer() { return container; } /** * Sets the value of the container property. * * @param value * allowed object is * {@link ContainerID } * */ public void setContainer(ContainerID value) { this.container = value; } /** * Gets the value of the action property. * * @return * possible object is * {@link String } * */ public String getAction() { return action; } /** * Sets the value of the action property. * * @param value * allowed object is * {@link String } * */ public void setAction(String value) { this.action = 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