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

com.sforce.soap.partner.Email 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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for Email complex type. * *

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

 * <complexType name="Email">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="bccSender" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="emailPriority" type="{urn:partner.soap.sforce.com}EmailPriority"/>
 *         <element name="replyTo" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="saveAsActivity" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="senderDisplayName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="subject" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="useSignature" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Email", propOrder = { "bccSender", "emailPriority", "replyTo", "saveAsActivity", "senderDisplayName", "subject", "useSignature" }) @XmlSeeAlso({ MassEmailMessage.class, SingleEmailMessage.class }) public class Email { @XmlElement(required = true, type = Boolean.class, nillable = true) protected Boolean bccSender; @XmlElement(required = true, nillable = true) @XmlSchemaType(name = "string") protected EmailPriority emailPriority; @XmlElement(required = true, nillable = true) protected String replyTo; @XmlElement(required = true, type = Boolean.class, nillable = true) protected Boolean saveAsActivity; @XmlElement(required = true, nillable = true) protected String senderDisplayName; @XmlElement(required = true, nillable = true) protected String subject; @XmlElement(required = true, type = Boolean.class, nillable = true) protected Boolean useSignature; /** * Gets the value of the bccSender property. * * @return * possible object is * {@link Boolean } * */ public Boolean isBccSender() { return bccSender; } /** * Sets the value of the bccSender property. * * @param value * allowed object is * {@link Boolean } * */ public void setBccSender(Boolean value) { this.bccSender = value; } /** * Gets the value of the emailPriority property. * * @return * possible object is * {@link EmailPriority } * */ public EmailPriority getEmailPriority() { return emailPriority; } /** * Sets the value of the emailPriority property. * * @param value * allowed object is * {@link EmailPriority } * */ public void setEmailPriority(EmailPriority value) { this.emailPriority = value; } /** * Gets the value of the replyTo property. * * @return * possible object is * {@link String } * */ public String getReplyTo() { return replyTo; } /** * Sets the value of the replyTo property. * * @param value * allowed object is * {@link String } * */ public void setReplyTo(String value) { this.replyTo = value; } /** * Gets the value of the saveAsActivity property. * * @return * possible object is * {@link Boolean } * */ public Boolean isSaveAsActivity() { return saveAsActivity; } /** * Sets the value of the saveAsActivity property. * * @param value * allowed object is * {@link Boolean } * */ public void setSaveAsActivity(Boolean value) { this.saveAsActivity = value; } /** * Gets the value of the senderDisplayName property. * * @return * possible object is * {@link String } * */ public String getSenderDisplayName() { return senderDisplayName; } /** * Sets the value of the senderDisplayName property. * * @param value * allowed object is * {@link String } * */ public void setSenderDisplayName(String value) { this.senderDisplayName = value; } /** * Gets the value of the subject property. * * @return * possible object is * {@link String } * */ public String getSubject() { return subject; } /** * Sets the value of the subject property. * * @param value * allowed object is * {@link String } * */ public void setSubject(String value) { this.subject = value; } /** * Gets the value of the useSignature property. * * @return * possible object is * {@link Boolean } * */ public Boolean isUseSignature() { return useSignature; } /** * Sets the value of the useSignature property. * * @param value * allowed object is * {@link Boolean } * */ public void setUseSignature(Boolean value) { this.useSignature = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy