LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
global class MassEmailMessage {
    global String description;
    global List<Id> targetobjectids;
    global Id templateid;
    global List<Id> whatids;
    global MassEmailMessage() { }
    global Boolean getBccSender() { }
    global String getDescription() { }
    global String getEmailPriority() { }
    global String getReplyTo() { }
    global Boolean getSaveAsActivity() { }
    global String getSenderDisplayName() { }
    global String getSubject() { }
    global List<Id> getTargetObjectIds() { }
    global Id getTemplateId() { }
    global Boolean getUseSignature() { }
    global List<Id> getWhatIds() { }
    global void setBccSender(Boolean param0) { }
    global void setDescription(String param0) { }
    global void setEmailPriority(String param0) { }
    global void setReplyTo(String param0) { }
    global void setSaveAsActivity(Boolean param0) { }
    global void setSenderDisplayName(String param0) { }
    global void setSubject(String param0) { }
    global void setTargetObjectIds(List<Id> param0) { }
    global void setTemplateId(Id param0) { }
    global void setUseSignature(Boolean param0) { }
    global void setWhatIds(List<Id> param0) { }
 
}