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
global class ConversationsHistoryRequest {
    global static Slack.ConversationsHistoryRequest.Builder builder() { }
    global Object clone() { }
    global String getChannel() { }
    global String getCursor() { }
    global String getLatest() { }
    global Integer getLimit() { }
    global String getOldest() { }
    global Boolean isIncludeAllMetadata() { }
    global Boolean isInclusive() { }
    global String toString() { }
global class Builder {
    global ConversationsHistoryRequest.Builder() { }
    global Slack.ConversationsHistoryRequest build() { }
    global Slack.ConversationsHistoryRequest.Builder channel(String channel) { }
    global Object clone() { }
    global Slack.ConversationsHistoryRequest.Builder cursor(String cursor) { }
    global Slack.ConversationsHistoryRequest.Builder includeAllMetadata(Boolean includeAllMetadata) { }
    global Slack.ConversationsHistoryRequest.Builder inclusive(Boolean inclusive) { }
    global Slack.ConversationsHistoryRequest.Builder latest(String latest) { }
    global Slack.ConversationsHistoryRequest.Builder limitValue(Integer limitValue) { }
    global Slack.ConversationsHistoryRequest.Builder oldest(String oldest) { }
 
}
 
}