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
global class ConnectTeam {
    global ConnectTeam() { }
    global Object clone() { }
    global String getAvatarBaseUrl() { }
    global Integer getDateCreated() { }
    global String getDomain() { }
    global Slack.TeamIcon getIcon() { }
    global String getId() { }
    global String getName() { }
    global Boolean isVerified() { }
    global void setAvatarBaseUrl(String avatarBaseUrl) { }
    global void setDateCreated(Integer dateCreated) { }
    global void setDomain(String domain) { }
    global void setIcon(Slack.TeamIcon icon) { }
    global void setId(String id) { }
    global void setName(String name) { }
    global void setVerified(Boolean isVerified) { }
    global String toString() { }
 
}