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

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

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

 * <complexType name="WebToCaseSettings">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="caseOrigin" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="defaultResponseTemplate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="enableWebToCase" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WebToCaseSettings", propOrder = { "caseOrigin", "defaultResponseTemplate", "enableWebToCase" }) public class WebToCaseSettings { protected String caseOrigin; protected String defaultResponseTemplate; protected Boolean enableWebToCase; /** * Gets the value of the caseOrigin property. * * @return * possible object is * {@link String } * */ public String getCaseOrigin() { return caseOrigin; } /** * Sets the value of the caseOrigin property. * * @param value * allowed object is * {@link String } * */ public void setCaseOrigin(String value) { this.caseOrigin = value; } /** * Gets the value of the defaultResponseTemplate property. * * @return * possible object is * {@link String } * */ public String getDefaultResponseTemplate() { return defaultResponseTemplate; } /** * Sets the value of the defaultResponseTemplate property. * * @param value * allowed object is * {@link String } * */ public void setDefaultResponseTemplate(String value) { this.defaultResponseTemplate = value; } /** * Gets the value of the enableWebToCase property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEnableWebToCase() { return enableWebToCase; } /** * Sets the value of the enableWebToCase property. * * @param value * allowed object is * {@link Boolean } * */ public void setEnableWebToCase(Boolean value) { this.enableWebToCase = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy