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
global class FilesRemoteUpdateRequest {
    global static Slack.FilesRemoteUpdateRequest.Builder builder() { }
    global Object clone() { }
    global String getExternalId() { }
    global String getExternalUrl() { }
    global String getFiletype() { }
    global String getTitle() { }
    global String toString() { }
global class Builder {
    global FilesRemoteUpdateRequest.Builder() { }
    global Slack.FilesRemoteUpdateRequest build() { }
    global Object clone() { }
    global Slack.FilesRemoteUpdateRequest.Builder externalId(String externalId) { }
    global Slack.FilesRemoteUpdateRequest.Builder externalUrl(String externalUrl) { }
    global Slack.FilesRemoteUpdateRequest.Builder filetype(String filetype) { }
    global Slack.FilesRemoteUpdateRequest.Builder title(String title) { }
 
}
 
}