LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
global class Example {
    global Object clone() { }
    global static ConnectApi.ExampleEntityRepresentation getExampleEntityWithFields(String recordId, List<String> fields) { }
    global static ConnectApi.ExampleEntityRepresentation getExampleEntityWithOptionalParameters(String recordId, List<String> fields, Map<String,String> connectDynamicParameters) { }
    global static ConnectApi.ExampleListRepresentation getExampleListWithFields(String recordId, List<String> fields) { }
    global static ConnectApi.ExampleMapRepresentation getExampleMapWithFields(String recordId, List<String> fields) { }
    global static ConnectApi.ExampleEntityRepresentation updateExampleEntity(String recordId, ConnectApi.ExampleEntityInputRepresentation recordInput) { }
    global static ConnectApi.ExampleEntityRepresentation updateExampleEntityWithOptionalParameters(String recordId, ConnectApi.ExampleEntityInputRepresentation recordInput, Map<String,String> connectDynamicParameters) { }
    global static ConnectApi.ExampleListRepresentation updateExampleList(String recordId, ConnectApi.ExampleListInputRepresentation recordInput) { }
    global static ConnectApi.ExampleMapRepresentation updateExampleMap(String recordId, ConnectApi.ExampleMapInputRepresentation recordInput) { }
 
}