LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
global class MatchResult {
    global String entitytype;
    global List<Database.Error> errors;
    global String matchengine;
    global List<Datacloud.MatchRecord> matchrecords;
    global String rule;
    global Integer size;
    global Boolean success;
    global String getEntityType() { }
    global List<Database.Error> getErrors() { }
    global String getMatchEngine() { }
    global List<Datacloud.MatchRecord> getMatchRecords() { }
    global String getRule() { }
    global Integer getSize() { }
    global Boolean isSuccess() { }
 
}