KAnalyticsEvent

class KAnalyticsEvent(val eventName: String, val eventDescription: String? = null, properties: Map<String, Any?> = emptyMap(), userProperties: Map<String, Any?> = emptyMap())

Represents an event to be tracked by KAnalytics.

Parameters

eventName

The name of the event.

eventDescription

An optional description of the event.

properties

A map of properties associated with the event.

Constructors

Link copied to clipboard
constructor(eventName: String, eventDescription: String? = null, properties: Map<String, Any?> = emptyMap(), userProperties: Map<String, Any?> = emptyMap())

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard

Adds custom event properties to the event.

Link copied to clipboard
fun addProperty(propertyName: String, value: Any?): KAnalyticsEvent

Adds a custom event property to the event.

Link copied to clipboard

Adds user properties to the event.

Link copied to clipboard
fun addUserProperty(propertyName: String, value: Any?): KAnalyticsEvent

Adds a user property to the event.

Link copied to clipboard
fun copy(eventName: String = this.eventName, eventDescription: String? = this.eventDescription, properties: Map<String, Any?> = this.properties, userProperties: Map<String, Any?> = this.userProperties): KAnalyticsEvent

Creates a copy of the event with the specified properties.

Link copied to clipboard
open override fun toString(): String

Returns a string representation of the event.