com.sforce.soap.tooling.metadata.FlowChoiceUserInput 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.XmlType;
/**
* Java class for FlowChoiceUserInput complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FlowChoiceUserInput">
* <complexContent>
* <extension base="{urn:metadata.tooling.soap.sforce.com}FlowBaseElement">
* <sequence>
* <element name="isRequired" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="promptText" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="validationRule" type="{urn:metadata.tooling.soap.sforce.com}FlowInputValidationRule" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FlowChoiceUserInput", propOrder = {
"isRequired",
"promptText",
"validationRule"
})
public class FlowChoiceUserInput
extends FlowBaseElement
{
protected Boolean isRequired;
protected String promptText;
protected FlowInputValidationRule validationRule;
/**
* Gets the value of the isRequired property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsRequired() {
return isRequired;
}
/**
* Sets the value of the isRequired property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsRequired(Boolean value) {
this.isRequired = value;
}
/**
* Gets the value of the promptText property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPromptText() {
return promptText;
}
/**
* Sets the value of the promptText property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPromptText(String value) {
this.promptText = value;
}
/**
* Gets the value of the validationRule property.
*
* @return
* possible object is
* {@link FlowInputValidationRule }
*
*/
public FlowInputValidationRule getValidationRule() {
return validationRule;
}
/**
* Sets the value of the validationRule property.
*
* @param value
* allowed object is
* {@link FlowInputValidationRule }
*
*/
public void setValidationRule(FlowInputValidationRule value) {
this.validationRule = value;
}
}