![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.partner.DescribePathAssistantField Maven / Gradle / Ivy
package com.sforce.soap.partner;
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 DescribePathAssistantField complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DescribePathAssistantField">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="apiName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="label" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="readOnly" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="required" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DescribePathAssistantField", propOrder = {
"apiName",
"label",
"readOnly",
"required"
})
public class DescribePathAssistantField {
@XmlElement(required = true)
protected String apiName;
@XmlElement(required = true)
protected String label;
protected boolean readOnly;
protected boolean required;
/**
* Gets the value of the apiName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getApiName() {
return apiName;
}
/**
* Sets the value of the apiName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setApiName(String value) {
this.apiName = value;
}
/**
* Gets the value of the label property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLabel() {
return label;
}
/**
* Sets the value of the label property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLabel(String value) {
this.label = value;
}
/**
* Gets the value of the readOnly property.
*
*/
public boolean isReadOnly() {
return readOnly;
}
/**
* Sets the value of the readOnly property.
*
*/
public void setReadOnly(boolean value) {
this.readOnly = value;
}
/**
* Gets the value of the required property.
*
*/
public boolean isRequired() {
return required;
}
/**
* Sets the value of the required property.
*
*/
public void setRequired(boolean value) {
this.required = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy