LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
global class BatchResult {
    global Exception error;
    global String errorMessage;
    global String errorTypeName;
    global Boolean isSuccess;
    global Object result;
    global BatchResult(Object result, Exception error) { }
    global Object clone() { }
    global Exception getError() { }
    global String getErrorMessage() { }
    global String getErrorTypeName() { }
    global Object getResult() { }
    global Boolean isSuccess() { }
    global String toString() { }
 
}