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

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

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

 * <complexType name="IdeasSettings">
 *   <complexContent>
 *     <extension base="{http://soap.sforce.com/2006/04/metadata}Metadata">
 *       <sequence>
 *         <element name="enableIdeaThemes" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="enableIdeas" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="enableIdeasReputation" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="halfLife" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IdeasSettings", propOrder = { "enableIdeaThemes", "enableIdeas", "enableIdeasReputation", "halfLife" }) public class IdeasSettings extends Metadata { protected Boolean enableIdeaThemes; protected Boolean enableIdeas; protected Boolean enableIdeasReputation; protected Double halfLife; /** * Gets the value of the enableIdeaThemes property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEnableIdeaThemes() { return enableIdeaThemes; } /** * Sets the value of the enableIdeaThemes property. * * @param value * allowed object is * {@link Boolean } * */ public void setEnableIdeaThemes(Boolean value) { this.enableIdeaThemes = value; } /** * Gets the value of the enableIdeas property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEnableIdeas() { return enableIdeas; } /** * Sets the value of the enableIdeas property. * * @param value * allowed object is * {@link Boolean } * */ public void setEnableIdeas(Boolean value) { this.enableIdeas = value; } /** * Gets the value of the enableIdeasReputation property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEnableIdeasReputation() { return enableIdeasReputation; } /** * Sets the value of the enableIdeasReputation property. * * @param value * allowed object is * {@link Boolean } * */ public void setEnableIdeasReputation(Boolean value) { this.enableIdeasReputation = value; } /** * Gets the value of the halfLife property. * * @return * possible object is * {@link Double } * */ public Double getHalfLife() { return halfLife; } /** * Sets the value of the halfLife property. * * @param value * allowed object is * {@link Double } * */ public void setHalfLife(Double value) { this.halfLife = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy