com.sforce.soap.tooling.OwnerChangeOptionInfo 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;
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 OwnerChangeOptionInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OwnerChangeOptionInfo">
* <complexContent>
* <extension base="{urn:tooling.soap.sforce.com}sObject">
* <sequence>
* <element name="DefaultValue" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="DurableId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="EntityDefinition" type="{urn:tooling.soap.sforce.com}EntityDefinition" minOccurs="0"/>
* <element name="EntityDefinitionId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="IsEditable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="Label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OwnerChangeOptionInfo", propOrder = {
"defaultValue",
"durableId",
"entityDefinition",
"entityDefinitionId",
"isEditable",
"label",
"name"
})
public class OwnerChangeOptionInfo
extends SObject
{
@XmlElement(name = "DefaultValue", nillable = true)
protected Boolean defaultValue;
@XmlElement(name = "DurableId", nillable = true)
protected String durableId;
@XmlElement(name = "EntityDefinition", nillable = true)
protected EntityDefinition entityDefinition;
@XmlElement(name = "EntityDefinitionId", nillable = true)
protected String entityDefinitionId;
@XmlElement(name = "IsEditable", nillable = true)
protected Boolean isEditable;
@XmlElement(name = "Label", nillable = true)
protected String label;
@XmlElement(name = "Name", nillable = true)
protected String name;
/**
* Gets the value of the defaultValue property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDefaultValue() {
return defaultValue;
}
/**
* Sets the value of the defaultValue property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDefaultValue(Boolean value) {
this.defaultValue = value;
}
/**
* Gets the value of the durableId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDurableId() {
return durableId;
}
/**
* Sets the value of the durableId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDurableId(String value) {
this.durableId = value;
}
/**
* Gets the value of the entityDefinition property.
*
* @return
* possible object is
* {@link EntityDefinition }
*
*/
public EntityDefinition getEntityDefinition() {
return entityDefinition;
}
/**
* Sets the value of the entityDefinition property.
*
* @param value
* allowed object is
* {@link EntityDefinition }
*
*/
public void setEntityDefinition(EntityDefinition value) {
this.entityDefinition = value;
}
/**
* Gets the value of the entityDefinitionId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEntityDefinitionId() {
return entityDefinitionId;
}
/**
* Sets the value of the entityDefinitionId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEntityDefinitionId(String value) {
this.entityDefinitionId = value;
}
/**
* Gets the value of the isEditable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsEditable() {
return isEditable;
}
/**
* Sets the value of the isEditable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsEditable(Boolean value) {
this.isEditable = 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 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;
}
}