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
31
32
33
global class ReactionAddedEvent {
    global ReactionAddedEvent() { }
    global Object clone() { }
    global String getEventTs() { }
    global Slack.ReactionAddedEvent.Item getItem() { }
    global String getItemUser() { }
    global String getReaction() { }
    global String getSubtype() { }
    global String getType() { }
    global String getUser() { }
    global void setEventTs(String eventTs) { }
    global void setItem(Slack.ReactionAddedEvent.Item item) { }
    global void setItemUser(String itemUser) { }
    global void setReaction(String reaction) { }
    global void setUser(String user) { }
    global String toString() { }
global class Item {
    global ReactionAddedEvent.Item() { }
    global Object clone() { }
    global String getChannel() { }
    global String getFile() { }
    global String getFileComment() { }
    global String getTs() { }
    global String getType() { }
    global void setChannel(String channel) { }
    global void setFile(String file) { }
    global void setFileComment(String fileComment) { }
    global void setTs(String ts) { }
    global void setType(String type) { }
 
}
 
}