All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sforce.soap.tooling.SearchLayout Maven / Gradle / Ivy

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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for SearchLayout complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="SearchLayout">
 *   <complexContent>
 *     <extension base="{urn:tooling.soap.sforce.com}sObject">
 *       <sequence>
 *         <element name="ButtonsDisplayed" type="{urn:tooling.soap.sforce.com}SearchLayoutButtonsDisplayed" 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="FieldsDisplayed" type="{urn:tooling.soap.sforce.com}SearchLayoutFieldsDisplayed" minOccurs="0"/>
 *         <element name="Label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="LastModifiedBy" type="{urn:tooling.soap.sforce.com}User" minOccurs="0"/>
 *         <element name="LastModifiedById" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
 *         <element name="LastModifiedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="LayoutType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SearchLayout", propOrder = { "buttonsDisplayed", "durableId", "entityDefinition", "entityDefinitionId", "fieldsDisplayed", "label", "lastModifiedBy", "lastModifiedById", "lastModifiedDate", "layoutType" }) public class SearchLayout extends SObject { @XmlElement(name = "ButtonsDisplayed", nillable = true) protected SearchLayoutButtonsDisplayed buttonsDisplayed; @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 = "FieldsDisplayed", nillable = true) protected SearchLayoutFieldsDisplayed fieldsDisplayed; @XmlElement(name = "Label", nillable = true) protected String label; @XmlElement(name = "LastModifiedBy", nillable = true) protected User lastModifiedBy; @XmlElement(name = "LastModifiedById", nillable = true) protected String lastModifiedById; @XmlElement(name = "LastModifiedDate", nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastModifiedDate; @XmlElement(name = "LayoutType", nillable = true) protected String layoutType; /** * Gets the value of the buttonsDisplayed property. * * @return * possible object is * {@link SearchLayoutButtonsDisplayed } * */ public SearchLayoutButtonsDisplayed getButtonsDisplayed() { return buttonsDisplayed; } /** * Sets the value of the buttonsDisplayed property. * * @param value * allowed object is * {@link SearchLayoutButtonsDisplayed } * */ public void setButtonsDisplayed(SearchLayoutButtonsDisplayed value) { this.buttonsDisplayed = 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 fieldsDisplayed property. * * @return * possible object is * {@link SearchLayoutFieldsDisplayed } * */ public SearchLayoutFieldsDisplayed getFieldsDisplayed() { return fieldsDisplayed; } /** * Sets the value of the fieldsDisplayed property. * * @param value * allowed object is * {@link SearchLayoutFieldsDisplayed } * */ public void setFieldsDisplayed(SearchLayoutFieldsDisplayed value) { this.fieldsDisplayed = 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 lastModifiedBy property. * * @return * possible object is * {@link User } * */ public User getLastModifiedBy() { return lastModifiedBy; } /** * Sets the value of the lastModifiedBy property. * * @param value * allowed object is * {@link User } * */ public void setLastModifiedBy(User value) { this.lastModifiedBy = value; } /** * Gets the value of the lastModifiedById property. * * @return * possible object is * {@link String } * */ public String getLastModifiedById() { return lastModifiedById; } /** * Sets the value of the lastModifiedById property. * * @param value * allowed object is * {@link String } * */ public void setLastModifiedById(String value) { this.lastModifiedById = value; } /** * Gets the value of the lastModifiedDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastModifiedDate() { return lastModifiedDate; } /** * Sets the value of the lastModifiedDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastModifiedDate(XMLGregorianCalendar value) { this.lastModifiedDate = value; } /** * Gets the value of the layoutType property. * * @return * possible object is * {@link String } * */ public String getLayoutType() { return layoutType; } /** * Sets the value of the layoutType property. * * @param value * allowed object is * {@link String } * */ public void setLayoutType(String value) { this.layoutType = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy