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
global class KnowledgeArticleVersionStandardController {
    global KnowledgeArticleVersionStandardController(SObject sobject) { }
    /**
     * Add a reference to each field whose name is specified in list of strings so it is retrieved when the record is loaded by the controller.
     */
    global void addFields(List<String> fieldNames) { }
    /**
     * Cancel changes; returning returl
     */
    global System.PageReference cancel() { }
    /**
     * Get the ID for the subject record
     */
    global String getId() { }
    /**
     * Get the subject record
     */
    global SObject getRecord() { }
    /**
     * Get the ID for the source object record when creating a new article from another object
     */
    global String getSourceId() { }
    /**
     * Select a default data category for the specified data category group when creating a new article
     */
    global void selectDataCategory(String categoryGroup, String category) { }
    /**
     * Get View URL for a record
     */
    global System.PageReference view() { }
 
}