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

com.sforce.soap.tooling.metadata.FlowChoice Maven / Gradle / Ivy

The newest version!

package com.sforce.soap.tooling.metadata;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import com.sforce.soap.tooling.FlowDataType;


/**
 * 

Java class for FlowChoice complex type. * *

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

 * <complexType name="FlowChoice">
 *   <complexContent>
 *     <extension base="{urn:metadata.tooling.soap.sforce.com}FlowElement">
 *       <sequence>
 *         <element name="choiceText" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="dataType" type="{urn:tooling.soap.sforce.com}FlowDataType"/>
 *         <element name="userInput" type="{urn:metadata.tooling.soap.sforce.com}FlowChoiceUserInput" minOccurs="0"/>
 *         <element name="value" type="{urn:metadata.tooling.soap.sforce.com}FlowElementReferenceOrValue" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FlowChoice", propOrder = { "choiceText", "dataType", "userInput", "value" }) public class FlowChoice extends FlowElement { @XmlElement(required = true) protected String choiceText; @XmlElement(required = true) @XmlSchemaType(name = "string") protected FlowDataType dataType; protected FlowChoiceUserInput userInput; protected FlowElementReferenceOrValue value; /** * Gets the value of the choiceText property. * * @return * possible object is * {@link String } * */ public String getChoiceText() { return choiceText; } /** * Sets the value of the choiceText property. * * @param value * allowed object is * {@link String } * */ public void setChoiceText(String value) { this.choiceText = value; } /** * Gets the value of the dataType property. * * @return * possible object is * {@link FlowDataType } * */ public FlowDataType getDataType() { return dataType; } /** * Sets the value of the dataType property. * * @param value * allowed object is * {@link FlowDataType } * */ public void setDataType(FlowDataType value) { this.dataType = value; } /** * Gets the value of the userInput property. * * @return * possible object is * {@link FlowChoiceUserInput } * */ public FlowChoiceUserInput getUserInput() { return userInput; } /** * Sets the value of the userInput property. * * @param value * allowed object is * {@link FlowChoiceUserInput } * */ public void setUserInput(FlowChoiceUserInput value) { this.userInput = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link FlowElementReferenceOrValue } * */ public FlowElementReferenceOrValue getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link FlowElementReferenceOrValue } * */ public void setValue(FlowElementReferenceOrValue value) { this.value = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy