File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
client/src/main/java/io/split/client/api Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ public class SplitView {
2626 public Map <String , String > configs ;
2727 public List <String > sets ;
2828 public String defaultTreatment ;
29+ public boolean trackImpression ;
2930
3031 public static SplitView fromParsedSplit (ParsedSplit parsedSplit ) {
3132 SplitView splitView = new SplitView ();
@@ -46,6 +47,7 @@ public static SplitView fromParsedSplit(ParsedSplit parsedSplit) {
4647
4748 splitView .treatments = new ArrayList <String >(treatments );
4849 splitView .configs = parsedSplit .configurations () == null ? Collections .<String , String >emptyMap () : parsedSplit .configurations () ;
50+ splitView .trackImpression = parsedSplit .trackImpression ();
4951
5052 return splitView ;
5153 }
You can’t perform that action at this time.
0 commit comments