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

com.palominolabs.crm.sf.soap.jaxwsstub.metadata.QuickActionLayoutItem Maven / Gradle / Ivy

The newest version!

package com.palominolabs.crm.sf.soap.jaxwsstub.metadata;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for QuickActionLayoutItem complex type. * *

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

 * <complexType name="QuickActionLayoutItem">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="emptySpace" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="field" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="uiBehavior" type="{http://soap.sforce.com/2006/04/metadata}UiBehavior" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "QuickActionLayoutItem", propOrder = { "emptySpace", "field", "uiBehavior" }) public class QuickActionLayoutItem { protected Boolean emptySpace; protected String field; protected UiBehavior uiBehavior; /** * Gets the value of the emptySpace property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEmptySpace() { return emptySpace; } /** * Sets the value of the emptySpace property. * * @param value * allowed object is * {@link Boolean } * */ public void setEmptySpace(Boolean value) { this.emptySpace = value; } /** * Gets the value of the field property. * * @return * possible object is * {@link String } * */ public String getField() { return field; } /** * Sets the value of the field property. * * @param value * allowed object is * {@link String } * */ public void setField(String value) { this.field = value; } /** * Gets the value of the uiBehavior property. * * @return * possible object is * {@link UiBehavior } * */ public UiBehavior getUiBehavior() { return uiBehavior; } /** * Sets the value of the uiBehavior property. * * @param value * allowed object is * {@link UiBehavior } * */ public void setUiBehavior(UiBehavior value) { this.uiBehavior = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy