com.sforce.soap.tooling.metadata.FlowOutputFieldAssignment 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 FlowOutputFieldAssignment complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FlowOutputFieldAssignment">
* <complexContent>
* <extension base="{urn:metadata.tooling.soap.sforce.com}FlowBaseElement">
* <sequence>
* <element name="assignToReference" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="field" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FlowOutputFieldAssignment", propOrder = {
"assignToReference",
"field"
})
public class FlowOutputFieldAssignment
extends FlowBaseElement
{
@XmlElement(required = true)
protected String assignToReference;
@XmlElement(required = true)
protected String field;
/**
* Gets the value of the assignToReference property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAssignToReference() {
return assignToReference;
}
/**
* Sets the value of the assignToReference property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAssignToReference(String value) {
this.assignToReference = 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;
}
}