You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* When an outcome is created, its `timestamp` should start out as zero.
* When the outcome request is sent and fails, the SDK will save and retry the outcome, then it will save the current `timestamp` for future sending
Copy file name to clipboardExpand all lines: OneSignalSDK/onesignal/core/src/main/java/com/onesignal/session/internal/outcomes/impl/OutcomeEventParams.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ internal class OutcomeEventParams constructor(
8
8
valoutcomeSource:OutcomeSource?, // This field is optional
9
9
varweight:Float, // This field is optional.
10
10
varsessionTime:Long, // This field is optional
11
-
vartimestamp:Long,
11
+
vartimestamp:Long,// This should start out as zero
0 commit comments