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
global class ConversationsListRequest {
    global static Slack.ConversationsListRequest.Builder builder() { }
    global Object clone() { }
    global String getCursor() { }
    global Integer getLimit() { }
    global String getTeamId() { }
    global Boolean isExcludeArchived() { }
    global String toString() { }
global class Builder {
    global ConversationsListRequest.Builder() { }
    global Slack.ConversationsListRequest build() { }
    global Object clone() { }
    global Slack.ConversationsListRequest.Builder cursor(String cursor) { }
    global Slack.ConversationsListRequest.Builder excludeArchived(Boolean excludeArchived) { }
    global Slack.ConversationsListRequest.Builder limitValue(Integer limitValue) { }
    global Slack.ConversationsListRequest.Builder teamId(String teamId) { }
    global Slack.ConversationsListRequest.Builder types(List<Slack.ConversationType> types) { }
 
}
 
}