Package-level declarations

Types

Link copied to clipboard
interface DirtyEventDao
Link copied to clipboard
data class DirtyMeetingEventItem(val id: String = UUID.randomUUID().toString(), val data: SDKEvent, val ttl: Long)

DirtyMeetingEventItem is a data type of an entry inside DirtyEvents Sqlite table.

Link copied to clipboard
interface EventDao
Link copied to clipboard

EventTypeConverters facilitate the conversion on some common event types

Link copied to clipboard
Link copied to clipboard
data class MeetingEventItem(val id: String = UUID.randomUUID().toString(), val data: SDKEvent)

MeetingEventItem is a data type of an entry inside Events SQLite table.

Link copied to clipboard
class SDKEvent(val name: String, val eventAttributes: Map<String, Any>)