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
34
35
global class LinkSharedEvent {
    global LinkSharedEvent() { }
    global Object clone() { }
    global String getChannel() { }
    global String getEventTs() { }
    global List<Slack.LinkSharedEvent.Link> getLinks() { }
    global String getMessageTs() { }
    global String getSource() { }
    global String getSubtype() { }
    global String getThreadTs() { }
    global String getType() { }
    global String getUnfurlId() { }
    global String getUser() { }
    global Boolean isBotUserMember() { }
    global void setBotUserMember(Boolean botUserMember) { }
    global void setChannel(String channel) { }
    global void setEventTs(String eventTs) { }
    global void setLinks(List<Slack.LinkSharedEvent.Link> links) { }
    global void setMessageTs(String messageTs) { }
    global void setSource(String source) { }
    global void setThreadTs(String threadTs) { }
    global void setUnfurlId(String unfurlId) { }
    global void setUser(String user) { }
    global String toString() { }
global class Link {
    global LinkSharedEvent.Link() { }
    global Object clone() { }
    global String getDomain() { }
    global String getUrl() { }
    global void setDomain(String domain) { }
    global void setUrl(String url) { }
 
}
 
}