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

com.sforce.soap.partner.EmailHeader Maven / Gradle / Ivy


package com.sforce.soap.partner;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="triggerAutoResponseEmail" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="triggerOtherEmail" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="triggerUserEmail" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "triggerAutoResponseEmail", "triggerOtherEmail", "triggerUserEmail" }) @XmlRootElement(name = "EmailHeader") public class EmailHeader { protected boolean triggerAutoResponseEmail; protected boolean triggerOtherEmail; protected boolean triggerUserEmail; /** * Gets the value of the triggerAutoResponseEmail property. * */ public boolean isTriggerAutoResponseEmail() { return triggerAutoResponseEmail; } /** * Sets the value of the triggerAutoResponseEmail property. * */ public void setTriggerAutoResponseEmail(boolean value) { this.triggerAutoResponseEmail = value; } /** * Gets the value of the triggerOtherEmail property. * */ public boolean isTriggerOtherEmail() { return triggerOtherEmail; } /** * Sets the value of the triggerOtherEmail property. * */ public void setTriggerOtherEmail(boolean value) { this.triggerOtherEmail = value; } /** * Gets the value of the triggerUserEmail property. * */ public boolean isTriggerUserEmail() { return triggerUserEmail; } /** * Sets the value of the triggerUserEmail property. * */ public void setTriggerUserEmail(boolean value) { this.triggerUserEmail = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy