Skip to content

Commit 08c38fb

Browse files
fix: TrackingEventDetails interface to include numeric getValue() call (#1328)
Signed-off-by: Jonathan Norris <[email protected]>
1 parent 3baf0df commit 08c38fb

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed
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)