AnalyticsEvent

data class AnalyticsEvent(var feature: String, var category: String, var name: String, var values: List<String> = listOf( )) : Parcelable

The event that is being tracked.

Constructors

Link copied to clipboard
constructor(source: Map<String, Any?>)
constructor(json: JSONObject)
constructor(feature: String, category: String, name: String, values: List<String> = listOf( ))

Properties

Link copied to clipboard

The category of the event.

Link copied to clipboard

The feature associated with the event.

Link copied to clipboard

The name of the event.

Link copied to clipboard

The value associated with the event.

Functions

Link copied to clipboard
Link copied to clipboard
fun toJson(config: ToJsonConfiguration = ToJsonConfiguration.default()): JSONObject