com.sforce.soap.tooling.metadata.FlowInputFieldAssignment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sforce-tooling-api Show documentation
Show all versions of sforce-tooling-api Show documentation
Salesforce Tooling API client
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.XmlType;
/**
* Java class for FlowInputFieldAssignment complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FlowInputFieldAssignment">
* <complexContent>
* <extension base="{urn:metadata.tooling.soap.sforce.com}FlowBaseElement">
* <sequence>
* <element name="field" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="value" type="{urn:metadata.tooling.soap.sforce.com}FlowElementReferenceOrValue" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FlowInputFieldAssignment", propOrder = {
"field",
"value"
})
public class FlowInputFieldAssignment
extends FlowBaseElement
{
@XmlElement(required = true)
protected String field;
protected FlowElementReferenceOrValue value;
/**
* Gets the value of the field property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getField() {
return field;
}
/**
* Sets the value of the field property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setField(String value) {
this.field = 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;
}
}