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 ReactionsListRequest {
    global static Slack.ReactionsListRequest.Builder builder() { }
    global Object clone() { }
    global Integer getCount() { }
    global String getCursor() { }
    global Integer getLimit() { }
    global Integer getPage() { }
    global String getTeamId() { }
    global String getUser() { }
    global Boolean isFull() { }
    global String toString() { }
global class Builder {
    global ReactionsListRequest.Builder() { }
    global Slack.ReactionsListRequest build() { }
    global Object clone() { }
    global Slack.ReactionsListRequest.Builder count(Integer count) { }
    global Slack.ReactionsListRequest.Builder cursor(String cursor) { }
    global Slack.ReactionsListRequest.Builder full(Boolean full) { }
    global Slack.ReactionsListRequest.Builder limitValue(Integer limitValue) { }
    global Slack.ReactionsListRequest.Builder page(Integer page) { }
    global Slack.ReactionsListRequest.Builder teamId(String teamId) { }
    global Slack.ReactionsListRequest.Builder user(String user) { }
 
}
 
}