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
29
30
31
32
33
34
35
36
37
38
39
global class ChatPostMessageRequest {
    global static Slack.ChatPostMessageRequest.Builder builder() { }
    global Object clone() { }
    global String getAttachmentsAsString() { }
    global String getChannel() { }
    global String getIconEmoji() { }
    global String getIconUrl() { }
    global String getParse() { }
    global String getText() { }
    global String getThreadTs() { }
    global String getUsername() { }
    global Boolean isLinkNames() { }
    global Boolean isMrkdwn() { }
    global Boolean isReplyBroadcast() { }
    global Boolean isUnfurlLinks() { }
    global Boolean isUnfurlMedia() { }
    global String toString() { }
global class Builder {
    global ChatPostMessageRequest.Builder() { }
    global Slack.ChatPostMessageRequest.Builder attachmentsAsString(String attachmentsAsString) { }
    global Slack.ChatPostMessageRequest build() { }
    global Slack.ChatPostMessageRequest.Builder channel(String channel) { }
    global Object clone() { }
    global Slack.ChatPostMessageRequest.Builder iconEmoji(String iconEmoji) { }
    global Slack.ChatPostMessageRequest.Builder iconUrl(String iconUrl) { }
    global Slack.ChatPostMessageRequest.Builder linkNames(Boolean linkNames) { }
    global Slack.ChatPostMessageRequest.Builder mrkdwn(Boolean mrkdwn) { }
    global Slack.ChatPostMessageRequest.Builder parse(String parse) { }
    global Slack.ChatPostMessageRequest.Builder replyBroadcast(Boolean replyBroadcast) { }
    global Slack.ChatPostMessageRequest.Builder text(String text) { }
    global Slack.ChatPostMessageRequest.Builder threadTs(String threadTs) { }
    global Slack.ChatPostMessageRequest.Builder unfurlLinks(Boolean unfurlLinks) { }
    global Slack.ChatPostMessageRequest.Builder unfurlMedia(Boolean unfurlMedia) { }
    global Slack.ChatPostMessageRequest.Builder username(String username) { }
    global Slack.ChatPostMessageRequest.Builder viewReference(Slack.ViewReference viewReference) { }
 
}
 
}