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