EventDeliveryInfo

data class EventDeliveryInfo(val isTransient: Boolean, val source: EventSource)

Data class representing information about the delivery of an event.

See also

Constructors

Link copied to clipboard
constructor(isTransient: Boolean, source: EventSource)

Properties

Link copied to clipboard
val isTransient: Boolean

Specifies whether the event is transient. Transient events are events that only matter if the user is online/active. For example "user is typing", and call signaling (mute/unmute), which are irrelevant after a few minutes. These are likely to not even be stored in the backend.

Link copied to clipboard

The source of the event.

Functions

Link copied to clipboard
fun toLogMap(): Map<String, Any?>