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

com.sforce.soap.tooling.FlexiPage 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 FlexiPage complex type. * *

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

 * <complexType name="FlexiPage">
 *   <complexContent>
 *     <extension base="{urn:tooling.soap.sforce.com}sObject">
 *       <sequence>
 *         <element name="CreatedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="DeveloperName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="FullName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="LastModifiedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="MasterLabel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Metadata" type="{urn:metadata.tooling.soap.sforce.com}FlexiPage" minOccurs="0"/>
 *         <element name="NamespacePrefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="ParentFlexiPage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="SobjectType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FlexiPage", propOrder = { "createdDate", "description", "developerName", "fullName", "lastModifiedDate", "masterLabel", "metadata", "namespacePrefix", "parentFlexiPage", "sobjectType", "type" }) public class FlexiPage extends SObject { @XmlElement(name = "CreatedDate", nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar createdDate; @XmlElement(name = "Description", nillable = true) protected String description; @XmlElement(name = "DeveloperName", nillable = true) protected String developerName; @XmlElement(name = "FullName", nillable = true) protected String fullName; @XmlElement(name = "LastModifiedDate", nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastModifiedDate; @XmlElement(name = "MasterLabel", nillable = true) protected String masterLabel; @XmlElement(name = "Metadata", nillable = true) protected com.sforce.soap.tooling.metadata.FlexiPage metadata; @XmlElement(name = "NamespacePrefix", nillable = true) protected String namespacePrefix; @XmlElement(name = "ParentFlexiPage", nillable = true) protected String parentFlexiPage; @XmlElement(name = "SobjectType", nillable = true) protected String sobjectType; @XmlElement(name = "Type", nillable = true) protected String type; /** * Gets the value of the createdDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreatedDate() { return createdDate; } /** * Sets the value of the createdDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreatedDate(XMLGregorianCalendar value) { this.createdDate = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the developerName property. * * @return * possible object is * {@link String } * */ public String getDeveloperName() { return developerName; } /** * Sets the value of the developerName property. * * @param value * allowed object is * {@link String } * */ public void setDeveloperName(String value) { this.developerName = value; } /** * Gets the value of the fullName property. * * @return * possible object is * {@link String } * */ public String getFullName() { return fullName; } /** * Sets the value of the fullName property. * * @param value * allowed object is * {@link String } * */ public void setFullName(String value) { this.fullName = 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 masterLabel property. * * @return * possible object is * {@link String } * */ public String getMasterLabel() { return masterLabel; } /** * Sets the value of the masterLabel property. * * @param value * allowed object is * {@link String } * */ public void setMasterLabel(String value) { this.masterLabel = value; } /** * Gets the value of the metadata property. * * @return * possible object is * {@link com.sforce.soap.tooling.metadata.FlexiPage } * */ public com.sforce.soap.tooling.metadata.FlexiPage getMetadata() { return metadata; } /** * Sets the value of the metadata property. * * @param value * allowed object is * {@link com.sforce.soap.tooling.metadata.FlexiPage } * */ public void setMetadata(com.sforce.soap.tooling.metadata.FlexiPage value) { this.metadata = value; } /** * Gets the value of the namespacePrefix property. * * @return * possible object is * {@link String } * */ public String getNamespacePrefix() { return namespacePrefix; } /** * Sets the value of the namespacePrefix property. * * @param value * allowed object is * {@link String } * */ public void setNamespacePrefix(String value) { this.namespacePrefix = value; } /** * Gets the value of the parentFlexiPage property. * * @return * possible object is * {@link String } * */ public String getParentFlexiPage() { return parentFlexiPage; } /** * Sets the value of the parentFlexiPage property. * * @param value * allowed object is * {@link String } * */ public void setParentFlexiPage(String value) { this.parentFlexiPage = value; } /** * Gets the value of the sobjectType property. * * @return * possible object is * {@link String } * */ public String getSobjectType() { return sobjectType; } /** * Sets the value of the sobjectType property. * * @param value * allowed object is * {@link String } * */ public void setSobjectType(String value) { this.sobjectType = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy