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
global class FileSharedEvent {
    global FileSharedEvent() { }
    global Object clone() { }
    global String getChannelId() { }
    global String getEventTs() { }
    global Slack.FileSharedEvent.File getFile() { }
    global String getFileId() { }
    global String getSubtype() { }
    global String getType() { }
    global String getUserId() { }
    global void setChannelId(String channelId) { }
    global void setEventTs(String eventTs) { }
    global void setFile(Slack.FileSharedEvent.File file) { }
    global void setFileId(String fileId) { }
    global void setUserId(String userId) { }
    global String toString() { }
global class File {
    global FileSharedEvent.File() { }
    global Object clone() { }
    global String getId() { }
    global void setId(String id) { }
 
}
 
}