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
global class ProcessSubmitRequest {
    global String objectid;
    global String processdefinitionnameorid;
    global Boolean skipentrycriteria;
    global String submitterid;
    global ProcessSubmitRequest() { }
    global String getComments() { }
    global List<Id> getNextApproverIds() { }
    global String getObjectId() { }
    global String getProcessDefinitionNameOrId() { }
    global Boolean getSkipEntryCriteria() { }
    global String getSubmitterId() { }
    global void setComments(String param0) { }
    global void setNextApproverIds(List<Id> param0) { }
    global void setObjectId(String param0) { }
    global void setProcessDefinitionNameOrId(String param0) { }
    global void setSkipEntryCriteria(Boolean param0) { }
    global void setSubmitterId(String param0) { }
 
}