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

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


/**
 * 

Java class for MenuItem complex type. * *

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

 * <complexType name="MenuItem">
 *   <complexContent>
 *     <extension base="{urn:tooling.soap.sforce.com}sObject">
 *       <sequence>
 *         <element name="Active" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="AppId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Color" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="IconUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="MenuType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="SortOrder" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="Theme" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MenuItem", propOrder = { "active", "appId", "color", "iconUrl", "label", "menuType", "sortOrder", "theme" }) public class MenuItem extends SObject { @XmlElement(name = "Active", nillable = true) protected Boolean active; @XmlElement(name = "AppId", nillable = true) protected String appId; @XmlElement(name = "Color", nillable = true) protected String color; @XmlElement(name = "IconUrl", nillable = true) protected String iconUrl; @XmlElement(name = "Label", nillable = true) protected String label; @XmlElement(name = "MenuType", nillable = true) protected String menuType; @XmlElement(name = "SortOrder", nillable = true) protected Integer sortOrder; @XmlElement(name = "Theme", nillable = true) protected String theme; /** * Gets the value of the active property. * * @return * possible object is * {@link Boolean } * */ public Boolean isActive() { return active; } /** * Sets the value of the active property. * * @param value * allowed object is * {@link Boolean } * */ public void setActive(Boolean value) { this.active = value; } /** * Gets the value of the appId property. * * @return * possible object is * {@link String } * */ public String getAppId() { return appId; } /** * Sets the value of the appId property. * * @param value * allowed object is * {@link String } * */ public void setAppId(String value) { this.appId = value; } /** * Gets the value of the color property. * * @return * possible object is * {@link String } * */ public String getColor() { return color; } /** * Sets the value of the color property. * * @param value * allowed object is * {@link String } * */ public void setColor(String value) { this.color = value; } /** * Gets the value of the iconUrl property. * * @return * possible object is * {@link String } * */ public String getIconUrl() { return iconUrl; } /** * Sets the value of the iconUrl property. * * @param value * allowed object is * {@link String } * */ public void setIconUrl(String value) { this.iconUrl = 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 menuType property. * * @return * possible object is * {@link String } * */ public String getMenuType() { return menuType; } /** * Sets the value of the menuType property. * * @param value * allowed object is * {@link String } * */ public void setMenuType(String value) { this.menuType = 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; } /** * Gets the value of the theme property. * * @return * possible object is * {@link String } * */ public String getTheme() { return theme; } /** * Sets the value of the theme property. * * @param value * allowed object is * {@link String } * */ public void setTheme(String value) { this.theme = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy