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
global class RequestContext {
    global Object clone() { }
    global Slack.ActionPayload getActionPayload() { }
    global Slack.App getApp() { }
    global String getAppId() { }
    global String getChannelId() { }
    global String getEnterpriseId() { }
    global Map<String,Object> getFormData() { }
    global Slack.MessageContext getMessageContext() { }
    global String getTeamId() { }
    global String getTriggerId() { }
    global String getUserId() { }
    global Slack.UserType getUserType() { }
    global Slack.ViewContext getViewContext() { }
    global Boolean isDefaultOrg() { }
global class Builder {
    global RequestContext.Builder() { }
    global Slack.RequestContext.Builder actionPayload(Slack.ActionPayload actionPayload) { }
    global Slack.RequestContext.Builder appId(String appId) { }
    global Slack.RequestContext build() { }
    global Slack.RequestContext.Builder channelId(String channelId) { }
    global Object clone() { }
    global Slack.RequestContext.Builder enterpriseId(String enterpriseId) { }
    global Slack.RequestContext.Builder formData(Map<String,Object> formData) { }
    global Slack.RequestContext.Builder messageContext(Slack.MessageContext messageContext) { }
    global Slack.RequestContext.Builder setIsDefaultOrg(Boolean isDefaultOrg) { }
    global Slack.RequestContext.Builder teamId(String teamId) { }
    global Slack.RequestContext.Builder triggerId(String triggerId) { }
    global Slack.RequestContext.Builder userId(String userId) { }
    global Slack.RequestContext.Builder userType(Slack.UserType userType) { }
    global Slack.RequestContext.Builder viewContext(Slack.ViewContext viewContext) { }
 
}
 
}