Skip to content

Commit 69e056f

Browse files
authored
Merge branch 'main' into sideshowcoder/issue/1299
2 parents 8363aba + 08c38fb commit 69e056f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed
Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
package dev.openfeature.sdk;
22

3+
import java.util.Optional;
4+
35
/**
46
* Data pertinent to a particular tracking event.
57
*/
6-
public interface TrackingEventDetails extends Structure {}
8+
public interface TrackingEventDetails extends Structure {
9+
10+
/**
11+
* Returns the optional numeric tracking value.
12+
*/
13+
Optional<Number> getValue();
14+
}

0 commit comments

Comments
 (0)