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

com.sforce.soap.tooling.metadata.FeedLayoutComponent Maven / Gradle / Ivy

The newest version!

package com.sforce.soap.tooling.metadata;

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 com.sforce.soap.tooling.FeedLayoutComponentType;


/**
 * 

Java class for FeedLayoutComponent complex type. * *

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

 * <complexType name="FeedLayoutComponent">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="componentType" type="{urn:tooling.soap.sforce.com}FeedLayoutComponentType"/>
 *         <element name="height" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FeedLayoutComponent", propOrder = { "componentType", "height", "page" }) public class FeedLayoutComponent { @XmlElement(required = true) @XmlSchemaType(name = "string") protected FeedLayoutComponentType componentType; protected Integer height; protected String page; /** * Gets the value of the componentType property. * * @return * possible object is * {@link FeedLayoutComponentType } * */ public FeedLayoutComponentType getComponentType() { return componentType; } /** * Sets the value of the componentType property. * * @param value * allowed object is * {@link FeedLayoutComponentType } * */ public void setComponentType(FeedLayoutComponentType value) { this.componentType = value; } /** * Gets the value of the height property. * * @return * possible object is * {@link Integer } * */ public Integer getHeight() { return height; } /** * Sets the value of the height property. * * @param value * allowed object is * {@link Integer } * */ public void setHeight(Integer value) { this.height = value; } /** * Gets the value of the page property. * * @return * possible object is * {@link String } * */ public String getPage() { return page; } /** * Sets the value of the page property. * * @param value * allowed object is * {@link String } * */ public void setPage(String value) { this.page = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy