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