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
global class UsergroupsCreateRequest {
    global static Slack.UsergroupsCreateRequest.Builder builder() { }
    global Object clone() { }
    global List<String> getChannels() { }
    global String getDescription() { }
    global String getHandle() { }
    global String getName() { }
    global String getTeamId() { }
    global Boolean isIncludeCount() { }
    global String toString() { }
global class Builder {
    global UsergroupsCreateRequest.Builder() { }
    global Slack.UsergroupsCreateRequest build() { }
    global Slack.UsergroupsCreateRequest.Builder channels(List<String> channels) { }
    global Object clone() { }
    global Slack.UsergroupsCreateRequest.Builder description(String description) { }
    global Slack.UsergroupsCreateRequest.Builder handle(String handle) { }
    global Slack.UsergroupsCreateRequest.Builder includeCount(Boolean includeCount) { }
    global Slack.UsergroupsCreateRequest.Builder name(String name) { }
    global Slack.UsergroupsCreateRequest.Builder teamId(String teamId) { }
 
}
 
}