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

com.palominolabs.crm.sf.soap.jaxwsstub.metadata.LiveChatDeployment 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for LiveChatDeployment complex type. * *

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

 * <complexType name="LiveChatDeployment">
 *   <complexContent>
 *     <extension base="{http://soap.sforce.com/2006/04/metadata}Metadata">
 *       <sequence>
 *         <element name="brandingImage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="domainWhiteList" type="{http://soap.sforce.com/2006/04/metadata}LiveChatDeploymentDomainWhitelist" minOccurs="0"/>
 *         <element name="enableTranscriptSave" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="label" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="mobileBrandingImage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="site" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="windowTitle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LiveChatDeployment", propOrder = { "brandingImage", "domainWhiteList", "enableTranscriptSave", "label", "mobileBrandingImage", "site", "windowTitle" }) public class LiveChatDeployment extends Metadata { protected String brandingImage; protected LiveChatDeploymentDomainWhitelist domainWhiteList; protected Boolean enableTranscriptSave; @XmlElement(required = true) protected String label; protected String mobileBrandingImage; protected String site; @XmlElement(required = true) protected String windowTitle; /** * Gets the value of the brandingImage property. * * @return * possible object is * {@link String } * */ public String getBrandingImage() { return brandingImage; } /** * Sets the value of the brandingImage property. * * @param value * allowed object is * {@link String } * */ public void setBrandingImage(String value) { this.brandingImage = value; } /** * Gets the value of the domainWhiteList property. * * @return * possible object is * {@link LiveChatDeploymentDomainWhitelist } * */ public LiveChatDeploymentDomainWhitelist getDomainWhiteList() { return domainWhiteList; } /** * Sets the value of the domainWhiteList property. * * @param value * allowed object is * {@link LiveChatDeploymentDomainWhitelist } * */ public void setDomainWhiteList(LiveChatDeploymentDomainWhitelist value) { this.domainWhiteList = value; } /** * Gets the value of the enableTranscriptSave property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEnableTranscriptSave() { return enableTranscriptSave; } /** * Sets the value of the enableTranscriptSave property. * * @param value * allowed object is * {@link Boolean } * */ public void setEnableTranscriptSave(Boolean value) { this.enableTranscriptSave = 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 mobileBrandingImage property. * * @return * possible object is * {@link String } * */ public String getMobileBrandingImage() { return mobileBrandingImage; } /** * Sets the value of the mobileBrandingImage property. * * @param value * allowed object is * {@link String } * */ public void setMobileBrandingImage(String value) { this.mobileBrandingImage = value; } /** * Gets the value of the site property. * * @return * possible object is * {@link String } * */ public String getSite() { return site; } /** * Sets the value of the site property. * * @param value * allowed object is * {@link String } * */ public void setSite(String value) { this.site = value; } /** * Gets the value of the windowTitle property. * * @return * possible object is * {@link String } * */ public String getWindowTitle() { return windowTitle; } /** * Sets the value of the windowTitle property. * * @param value * allowed object is * {@link String } * */ public void setWindowTitle(String value) { this.windowTitle = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy