
com.exacttarget.fuelsdk.internal.PerformOptions 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
The 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.cxf.xjc.runtime.JAXBToStringStyle;
/**
* Java class for PerformOptions complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PerformOptions">
* <complexContent>
* <extension base="{http://exacttarget.com/wsdl/partnerAPI}Options">
* <sequence>
* <element name="Explanation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ProgramActivityInstanceID" type="{http://exacttarget.com/wsdl/partnerAPI}instanceid" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PerformOptions", propOrder = {
"explanation",
"programActivityInstanceID"
})
@XmlSeeAlso({
CampaignPerformOptions.class
})
public class PerformOptions
extends Options
{
@XmlElement(name = "Explanation")
protected String explanation;
@XmlElement(name = "ProgramActivityInstanceID")
protected String programActivityInstanceID;
/**
* Gets the value of the explanation property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExplanation() {
return explanation;
}
/**
* Sets the value of the explanation property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExplanation(String value) {
this.explanation = value;
}
/**
* Gets the value of the programActivityInstanceID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProgramActivityInstanceID() {
return programActivityInstanceID;
}
/**
* Sets the value of the programActivityInstanceID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProgramActivityInstanceID(String value) {
this.programActivityInstanceID = 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