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

com.sforce.soap.tooling.metadata.FlowElement 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for FlowElement complex type. * *

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

 * <complexType name="FlowElement">
 *   <complexContent>
 *     <extension base="{urn:metadata.tooling.soap.sforce.com}FlowBaseElement">
 *       <sequence>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FlowElement", propOrder = { "description", "name" }) @XmlSeeAlso({ FlowChoice.class, FlowConstant.class, FlowDynamicChoiceSet.class, FlowFormula.class, FlowRule.class, FlowScreenField.class, FlowTextTemplate.class, FlowVariable.class, FlowWaitEvent.class, FlowNode.class }) public class FlowElement extends FlowBaseElement { protected String description; @XmlElement(required = true) protected String name; /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy