File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
core/src/main/java/org/jsmart/zerocode/core/domain/reports Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 66
77import java .util .ArrayList ;
88import java .util .List ;
9+ import java .util .Map ;
910
1011@ JsonInclude (JsonInclude .Include .NON_NULL )
1112public class ZeroCodeExecResult {
1213 private String scenarioName ;
1314 private Integer loop ;
1415 private List <ZeroCodeReportStep > steps = new ArrayList <>();
15-
16+ private Map <String , List <String >> meta ;
17+
1618 @ JsonCreator
1719 public ZeroCodeExecResult (
1820 @ JsonProperty ("scenarioName" )String scenarioName ,
@@ -47,4 +49,12 @@ public String toString() {
4749 ", steps=" + steps +
4850 '}' ;
4951 }
52+
53+ public Map <String , List <String >> getMeta () {
54+ return meta ;
55+ }
56+
57+ public void setMeta (Map <String , List <String >> meta ) {
58+ this .meta = meta ;
59+ }
5060}
You can’t perform that action at this time.
0 commit comments