-
public final class TrackedEventRepresents a single event sent to the backend.
The type field is a raw string so that the SDK can emit special types such as "INSTALL" that are not part of the public EventType enum exposed to host applications.
Extra fields that are only meaningful for install-type events are kept optional so the same data class can be reused for any user-generated event as well.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringtypeprivate final Stringnameprivate final Longtsprivate final Doublevalueprivate final StringrawReferrerprivate final LongreferrerClickTimestampSecprivate final LongappInstallTimestampSec
-
Method Summary
Modifier and Type Method Description final StringgetType()final StringgetName()final LonggetTs()final DoublegetValue()final StringgetRawReferrer()final LonggetReferrerClickTimestampSec()final LonggetAppInstallTimestampSec()-
-
Method Detail
-
getRawReferrer
final String getRawReferrer()
-
getReferrerClickTimestampSec
final Long getReferrerClickTimestampSec()
-
getAppInstallTimestampSec
final Long getAppInstallTimestampSec()
-
-
-
-