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 QuestionSuggestionFilter {
    global QuestionSuggestionFilter() { }
    /**
     * Add a filter to display question belonging to the group having the id passed in argument
     */
    global void addGroupId(String groupId) { }
    /**
     * Add a filter to display question belonging to the network having the id passed in argument
     */
    global void addNetworkId(String networkId) { }
    /**
     * Add a filter to display question belonging to the user having the id passed in argument
     */
    global void addUserId(String userId) { }
    /**
     * Add a filter to display question belonging to groups having ids passed in argument
     */
    global void setGroupIds(List<String> groupIds) { }
    /**
     * Add a filter to display question belonging to networks having ids passed in argument
     */
    global void setNetworkIds(List<String> networkIds) { }
    /**
     * Add a filter to display question belonging to the topic having the id passed in argument
     */
    global void setTopicId(String topicId) { }
    /**
     * Add a filter to display question belonging to users having ids passed in argument
     */
    global void setUserIds(List<String> userIds) { }
 
}