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

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

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

 * <complexType name="MetadataContainerMember">
 *   <complexContent>
 *     <extension base="{urn:tooling.soap.sforce.com}sObject">
 *       <sequence>
 *         <element name="Content" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="ContentEntity" type="{urn:tooling.soap.sforce.com}sObject" minOccurs="0"/>
 *         <element name="ContentEntityId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
 *         <element name="FullName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="LastSyncDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="MetadataContainer" type="{urn:tooling.soap.sforce.com}sObject" minOccurs="0"/>
 *         <element name="MetadataContainerId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataContainerMember", propOrder = { "content", "contentEntity", "contentEntityId", "fullName", "lastSyncDate", "metadataContainer", "metadataContainerId" }) public class MetadataContainerMember extends SObject { @XmlElement(name = "Content", nillable = true) protected String content; @XmlElement(name = "ContentEntity", nillable = true) protected SObject contentEntity; @XmlElement(name = "ContentEntityId", nillable = true) protected String contentEntityId; @XmlElement(name = "FullName", nillable = true) protected String fullName; @XmlElement(name = "LastSyncDate", nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastSyncDate; @XmlElement(name = "MetadataContainer", nillable = true) protected SObject metadataContainer; @XmlElement(name = "MetadataContainerId", nillable = true) protected String metadataContainerId; /** * Gets the value of the content property. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } /** * Gets the value of the contentEntity property. * * @return * possible object is * {@link SObject } * */ public SObject getContentEntity() { return contentEntity; } /** * Sets the value of the contentEntity property. * * @param value * allowed object is * {@link SObject } * */ public void setContentEntity(SObject value) { this.contentEntity = value; } /** * Gets the value of the contentEntityId property. * * @return * possible object is * {@link String } * */ public String getContentEntityId() { return contentEntityId; } /** * Sets the value of the contentEntityId property. * * @param value * allowed object is * {@link String } * */ public void setContentEntityId(String value) { this.contentEntityId = 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 lastSyncDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastSyncDate() { return lastSyncDate; } /** * Sets the value of the lastSyncDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastSyncDate(XMLGregorianCalendar value) { this.lastSyncDate = value; } /** * Gets the value of the metadataContainer property. * * @return * possible object is * {@link SObject } * */ public SObject getMetadataContainer() { return metadataContainer; } /** * Sets the value of the metadataContainer property. * * @param value * allowed object is * {@link SObject } * */ public void setMetadataContainer(SObject value) { this.metadataContainer = value; } /** * Gets the value of the metadataContainerId property. * * @return * possible object is * {@link String } * */ public String getMetadataContainerId() { return metadataContainerId; } /** * Sets the value of the metadataContainerId property. * * @param value * allowed object is * {@link String } * */ public void setMetadataContainerId(String value) { this.metadataContainerId = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy