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

com.palominolabs.crm.sf.soap.jaxwsstub.metadata.LiveAgentConfig 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 LiveAgentConfig complex type. * *

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

 * <complexType name="LiveAgentConfig">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="enableLiveChat" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="openNewAccountSubtab" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="openNewCaseSubtab" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="openNewContactSubtab" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="openNewLeadSubtab" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="openNewVFPageSubtab" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="pagesToOpen" type="{http://soap.sforce.com/2006/04/metadata}PagesToOpen" minOccurs="0"/>
 *         <element name="showKnowledgeArticles" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LiveAgentConfig", propOrder = { "enableLiveChat", "openNewAccountSubtab", "openNewCaseSubtab", "openNewContactSubtab", "openNewLeadSubtab", "openNewVFPageSubtab", "pagesToOpen", "showKnowledgeArticles" }) public class LiveAgentConfig { protected Boolean enableLiveChat; protected Boolean openNewAccountSubtab; protected Boolean openNewCaseSubtab; protected Boolean openNewContactSubtab; protected Boolean openNewLeadSubtab; protected Boolean openNewVFPageSubtab; protected PagesToOpen pagesToOpen; protected Boolean showKnowledgeArticles; /** * Gets the value of the enableLiveChat property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEnableLiveChat() { return enableLiveChat; } /** * Sets the value of the enableLiveChat property. * * @param value * allowed object is * {@link Boolean } * */ public void setEnableLiveChat(Boolean value) { this.enableLiveChat = value; } /** * Gets the value of the openNewAccountSubtab property. * * @return * possible object is * {@link Boolean } * */ public Boolean isOpenNewAccountSubtab() { return openNewAccountSubtab; } /** * Sets the value of the openNewAccountSubtab property. * * @param value * allowed object is * {@link Boolean } * */ public void setOpenNewAccountSubtab(Boolean value) { this.openNewAccountSubtab = value; } /** * Gets the value of the openNewCaseSubtab property. * * @return * possible object is * {@link Boolean } * */ public Boolean isOpenNewCaseSubtab() { return openNewCaseSubtab; } /** * Sets the value of the openNewCaseSubtab property. * * @param value * allowed object is * {@link Boolean } * */ public void setOpenNewCaseSubtab(Boolean value) { this.openNewCaseSubtab = value; } /** * Gets the value of the openNewContactSubtab property. * * @return * possible object is * {@link Boolean } * */ public Boolean isOpenNewContactSubtab() { return openNewContactSubtab; } /** * Sets the value of the openNewContactSubtab property. * * @param value * allowed object is * {@link Boolean } * */ public void setOpenNewContactSubtab(Boolean value) { this.openNewContactSubtab = value; } /** * Gets the value of the openNewLeadSubtab property. * * @return * possible object is * {@link Boolean } * */ public Boolean isOpenNewLeadSubtab() { return openNewLeadSubtab; } /** * Sets the value of the openNewLeadSubtab property. * * @param value * allowed object is * {@link Boolean } * */ public void setOpenNewLeadSubtab(Boolean value) { this.openNewLeadSubtab = value; } /** * Gets the value of the openNewVFPageSubtab property. * * @return * possible object is * {@link Boolean } * */ public Boolean isOpenNewVFPageSubtab() { return openNewVFPageSubtab; } /** * Sets the value of the openNewVFPageSubtab property. * * @param value * allowed object is * {@link Boolean } * */ public void setOpenNewVFPageSubtab(Boolean value) { this.openNewVFPageSubtab = value; } /** * Gets the value of the pagesToOpen property. * * @return * possible object is * {@link PagesToOpen } * */ public PagesToOpen getPagesToOpen() { return pagesToOpen; } /** * Sets the value of the pagesToOpen property. * * @param value * allowed object is * {@link PagesToOpen } * */ public void setPagesToOpen(PagesToOpen value) { this.pagesToOpen = value; } /** * Gets the value of the showKnowledgeArticles property. * * @return * possible object is * {@link Boolean } * */ public Boolean isShowKnowledgeArticles() { return showKnowledgeArticles; } /** * Sets the value of the showKnowledgeArticles property. * * @param value * allowed object is * {@link Boolean } * */ public void setShowKnowledgeArticles(Boolean value) { this.showKnowledgeArticles = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy