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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
global class AppRequest {
    global AppRequest() { }
    global Object clone() { }
    global Slack.RequestedApp getApp() { }
    global Integer getDateCreated() { }
    global String getId() { }
    global Boolean getIsUserAppCollaborator() { }
    global String getMessage() { }
    global Slack.AppRequest.PreviousResolution getPreviousResolution() { }
    global List<Slack.AppScope> getScopes() { }
    global Slack.AppRequest.Team getTeam() { }
    global Slack.AppRequest.User getUser() { }
    global void setApp(Slack.RequestedApp app) { }
    global void setDateCreated(Integer dateCreated) { }
    global void setId(String id) { }
    global void setIsUserAppCollaborator(Boolean isUserAppCollaborator) { }
    global void setMessage(String message) { }
    global void setPreviousResolution(Slack.AppRequest.PreviousResolution previousResolution) { }
    global void setScopes(List<Slack.AppScope> scopes) { }
    global void setTeam(Slack.AppRequest.Team team) { }
    global void setUser(Slack.AppRequest.User user) { }
    global String toString() { }
global class PreviousResolution {
    global AppRequest.PreviousResolution() { }
    global Object clone() { }
    global List<Slack.AppScope> getScopes() { }
    global String getStatus() { }
    global void setScopes(List<Slack.AppScope> scopes) { }
    global void setStatus(String status) { }
 
}
global class Team {
    global AppRequest.Team() { }
    global Object clone() { }
    global String getDomain() { }
    global String getId() { }
    global String getName() { }
    global void setDomain(String domain) { }
    global void setId(String id) { }
    global void setName(String name) { }
 
}
global class User {
    global AppRequest.User() { }
    global Object clone() { }
    global String getEmail() { }
    global String getId() { }
    global String getName() { }
    global void setEmail(String email) { }
    global void setId(String id) { }
    global void setName(String name) { }
 
}
 
}