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
36
global class Bookmark {
    global Bookmark() { }
    global Object clone() { }
    global String getAppId() { }
    global String getChannelId() { }
    global Integer getDateCreated() { }
    global Integer getDateUpdated() { }
    global String getEmoji() { }
    global String getEntityId() { }
    global String getIconUrl() { }
    global String getId() { }
    global String getLastUpdatedByTeamId() { }
    global String getLastUpdatedByUserId() { }
    global String getLink() { }
    global String getRank() { }
    global String getShortcutId() { }
    global String getTitle() { }
    global String getType() { }
    global void setAppId(String appId) { }
    global void setChannelId(String channelId) { }
    global void setDateCreated(Integer dateCreated) { }
    global void setDateUpdated(Integer dateUpdated) { }
    global void setEmoji(String emoji) { }
    global void setEntityId(String entityId) { }
    global void setIconUrl(String iconUrl) { }
    global void setId(String id) { }
    global void setLastUpdatedByTeamId(String lastUpdatedByTeamId) { }
    global void setLastUpdatedByUserId(String lastUpdatedByUserId) { }
    global void setLink(String link) { }
    global void setRank(String rank) { }
    global void setShortcutId(String shortcutId) { }
    global void setTitle(String title) { }
    global void setType(String type) { }
    global String toString() { }
 
}