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
global class BotProfile {
    global BotProfile() { }
    global Object clone() { }
    global String getAppId() { }
    global Slack.BotProfile.Icons getIcons() { }
    global String getId() { }
    global String getName() { }
    global String getTeamId() { }
    global Integer getUpdated() { }
    global Boolean isDeleted() { }
    global void setAppId(String appId) { }
    global void setDeleted(Boolean deleted) { }
    global void setIcons(Slack.BotProfile.Icons icons) { }
    global void setId(String id) { }
    global void setName(String name) { }
    global void setTeamId(String teamId) { }
    global void setUpdated(Integer updated) { }
    global String toString() { }
global class Icons {
    global BotProfile.Icons() { }
    global Object clone() { }
    global String getImage36() { }
    global String getImage48() { }
    global String getImage72() { }
    global void setImage36(String image36) { }
    global void setImage48(String image48) { }
    global void setImage72(String image72) { }
 
}
 
}