LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
global class EmailFileAttachment {
    global Blob body;
    global String contenttype;
    global String filename;
    global Id id;
    global Boolean inline;
    global EmailFileAttachment() { }
    global Blob getBody() { }
    global String getContentType() { }
    global String getFileName() { }
    global Id getId() { }
    global Boolean getInline() { }
    global void setBody(Blob param0) { }
    global void setContentType(String param0) { }
    global void setFileName(String param0) { }
    global void setInline(Boolean param0) { }
 
}