49 lines
1.2 KiB
Java
49 lines
1.2 KiB
Java
|
|
package com.sforce.soap.partner;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This is a generated class for the SObject Enterprise API.
|
||
|
|
* Do not edit this file, as your changes will be lost.
|
||
|
|
*/
|
||
|
|
public interface IRenderEmailTemplateRequest {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : escapeHtmlInMergeFields of type {http://www.w3.org/2001/XMLSchema}boolean
|
||
|
|
* java type: boolean
|
||
|
|
*/
|
||
|
|
|
||
|
|
public boolean getEscapeHtmlInMergeFields();
|
||
|
|
|
||
|
|
public boolean isEscapeHtmlInMergeFields();
|
||
|
|
|
||
|
|
public void setEscapeHtmlInMergeFields(boolean escapeHtmlInMergeFields);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : templateBodies of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String[]
|
||
|
|
*/
|
||
|
|
|
||
|
|
public java.lang.String[] getTemplateBodies();
|
||
|
|
|
||
|
|
public void setTemplateBodies(java.lang.String[] templateBodies);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : whatId of type {urn:partner.soap.sforce.com}ID
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
|
||
|
|
public java.lang.String getWhatId();
|
||
|
|
|
||
|
|
public void setWhatId(java.lang.String whatId);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : whoId of type {urn:partner.soap.sforce.com}ID
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
|
||
|
|
public java.lang.String getWhoId();
|
||
|
|
|
||
|
|
public void setWhoId(java.lang.String whoId);
|
||
|
|
|
||
|
|
|
||
|
|
}
|