com.sforce.soap.tooling.CompactLayoutItemInfo 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 CompactLayoutItemInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CompactLayoutItemInfo">
* <complexContent>
* <extension base="{urn:tooling.soap.sforce.com}sObject">
* <sequence>
* <element name="CompactLayoutInfo" type="{urn:tooling.soap.sforce.com}CompactLayoutInfo" minOccurs="0"/>
* <element name="CompactLayoutInfoId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="DurableId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="FieldDefinition" type="{urn:tooling.soap.sforce.com}FieldDefinition" minOccurs="0"/>
* <element name="FieldDefinitionId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="SortOrder" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CompactLayoutItemInfo", propOrder = {
"compactLayoutInfo",
"compactLayoutInfoId",
"durableId",
"fieldDefinition",
"fieldDefinitionId",
"sortOrder"
})
public class CompactLayoutItemInfo
extends SObject
{
@XmlElement(name = "CompactLayoutInfo", nillable = true)
protected CompactLayoutInfo compactLayoutInfo;
@XmlElement(name = "CompactLayoutInfoId", nillable = true)
protected String compactLayoutInfoId;
@XmlElement(name = "DurableId", nillable = true)
protected String durableId;
@XmlElement(name = "FieldDefinition", nillable = true)
protected FieldDefinition fieldDefinition;
@XmlElement(name = "FieldDefinitionId", nillable = true)
protected String fieldDefinitionId;
@XmlElement(name = "SortOrder", nillable = true)
protected Integer sortOrder;
/**
* Gets the value of the compactLayoutInfo property.
*
* @return
* possible object is
* {@link CompactLayoutInfo }
*
*/
public CompactLayoutInfo getCompactLayoutInfo() {
return compactLayoutInfo;
}
/**
* Sets the value of the compactLayoutInfo property.
*
* @param value
* allowed object is
* {@link CompactLayoutInfo }
*
*/
public void setCompactLayoutInfo(CompactLayoutInfo value) {
this.compactLayoutInfo = value;
}
/**
* Gets the value of the compactLayoutInfoId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCompactLayoutInfoId() {
return compactLayoutInfoId;
}
/**
* Sets the value of the compactLayoutInfoId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCompactLayoutInfoId(String value) {
this.compactLayoutInfoId = 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 fieldDefinition property.
*
* @return
* possible object is
* {@link FieldDefinition }
*
*/
public FieldDefinition getFieldDefinition() {
return fieldDefinition;
}
/**
* Sets the value of the fieldDefinition property.
*
* @param value
* allowed object is
* {@link FieldDefinition }
*
*/
public void setFieldDefinition(FieldDefinition value) {
this.fieldDefinition = value;
}
/**
* Gets the value of the fieldDefinitionId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFieldDefinitionId() {
return fieldDefinitionId;
}
/**
* Sets the value of the fieldDefinitionId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFieldDefinitionId(String value) {
this.fieldDefinitionId = value;
}
/**
* Gets the value of the sortOrder property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getSortOrder() {
return sortOrder;
}
/**
* Sets the value of the sortOrder property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setSortOrder(Integer value) {
this.sortOrder = value;
}
}