LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
global class ProcessWorkitemRequest {
    global String action;
    global String workitemid;
    global ProcessWorkitemRequest() { }
    global String getAction() { }
    global String getComments() { }
    global List<Id> getNextApproverIds() { }
    global String getWorkitemId() { }
    global void setAction(String param0) { }
    global void setComments(String param0) { }
    global void setNextApproverIds(List<Id> param0) { }
    global void setWorkitemId(String param0) { }
 
}