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
global class RequestedApp {
    global RequestedApp() { }
    global Object clone() { }
    global String getAdditionalInfo() { }
    global String getAppDirectoryUrl() { }
    global String getAppHomepageUrl() { }
    global String getDescription() { }
    global String getHelpUrl() { }
    global Slack.AppIcons getIcons() { }
    global String getId() { }
    global String getName() { }
    global String getPrivacyPolicyUrl() { }
    global Boolean isAppDirectoryApproved() { }
    global Boolean isInternal() { }
    global void setAdditionalInfo(String additionalInfo) { }
    global void setAppDirectoryApproved(Boolean appDirectoryApproved) { }
    global void setAppDirectoryUrl(String appDirectoryUrl) { }
    global void setAppHomepageUrl(String appHomepageUrl) { }
    global void setDescription(String description) { }
    global void setHelpUrl(String helpUrl) { }
    global void setIcons(Slack.AppIcons icons) { }
    global void setId(String id) { }
    global void setInternal(Boolean internal) { }
    global void setName(String name) { }
    global void setPrivacyPolicyUrl(String privacyPolicyUrl) { }
    global String toString() { }
 
}