58 lines
1.6 KiB
Java
58 lines
1.6 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 IRenderStoredEmailTemplateRequest {
|
|
|
|
/**
|
|
* element : attachmentRetrievalOption of type {urn:partner.soap.sforce.com}AttachmentRetrievalOption
|
|
* java type: com.sforce.soap.partner.AttachmentRetrievalOption
|
|
*/
|
|
|
|
public com.sforce.soap.partner.AttachmentRetrievalOption getAttachmentRetrievalOption();
|
|
|
|
public void setAttachmentRetrievalOption(com.sforce.soap.partner.AttachmentRetrievalOption attachmentRetrievalOption);
|
|
|
|
/**
|
|
* element : templateId of type {urn:partner.soap.sforce.com}ID
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getTemplateId();
|
|
|
|
public void setTemplateId(java.lang.String templateId);
|
|
|
|
/**
|
|
* element : updateTemplateUsage of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
|
|
public boolean getUpdateTemplateUsage();
|
|
|
|
public boolean isUpdateTemplateUsage();
|
|
|
|
public void setUpdateTemplateUsage(boolean updateTemplateUsage);
|
|
|
|
/**
|
|
* 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);
|
|
|
|
|
|
}
|