RoomSyncState

@JsonClass(generateAdapter = true)
data class RoomSyncState(@Json(name = "events") val events: List<Event>? = null)

Constructors

Link copied to clipboard
fun RoomSyncState(@Json(name = "events") events: List<Event>? = null)

Properties

Link copied to clipboard
val events: List<Event>? = null

List of state events (array of Event). The resulting state corresponds to the start of the timeline.