
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.LiveAgentSettings 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 LiveAgentSettings complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LiveAgentSettings">
* <complexContent>
* <extension base="{http://soap.sforce.com/2006/04/metadata}Metadata">
* <sequence>
* <element name="enableLiveAgent" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LiveAgentSettings", propOrder = {
"enableLiveAgent"
})
public class LiveAgentSettings
extends Metadata
{
protected Boolean enableLiveAgent;
/**
* Gets the value of the enableLiveAgent property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isEnableLiveAgent() {
return enableLiveAgent;
}
/**
* Sets the value of the enableLiveAgent property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setEnableLiveAgent(Boolean value) {
this.enableLiveAgent = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy