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