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

com.sforce.soap.partner.DescribeAppMenu Maven / Gradle / Ivy


package com.sforce.soap.partner;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="appMenuType" type="{urn:partner.soap.sforce.com}AppMenuType"/>
 *         <element name="networkId" type="{urn:partner.soap.sforce.com}ID"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "appMenuType", "networkId" }) @XmlRootElement(name = "describeAppMenu") public class DescribeAppMenu { @XmlElement(required = true) @XmlSchemaType(name = "string") protected AppMenuType appMenuType; @XmlElement(required = true, nillable = true) protected String networkId; /** * Gets the value of the appMenuType property. * * @return * possible object is * {@link AppMenuType } * */ public AppMenuType getAppMenuType() { return appMenuType; } /** * Sets the value of the appMenuType property. * * @param value * allowed object is * {@link AppMenuType } * */ public void setAppMenuType(AppMenuType value) { this.appMenuType = value; } /** * Gets the value of the networkId property. * * @return * possible object is * {@link String } * */ public String getNetworkId() { return networkId; } /** * Sets the value of the networkId property. * * @param value * allowed object is * {@link String } * */ public void setNetworkId(String value) { this.networkId = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy