LocalRoomSummary

data class LocalRoomSummary(    val roomId: String,     val roomSummary: RoomSummary?,     val createRoomParams: CreateRoomParams?,     val replacementRoomId: String?,     val creationState: LocalRoomCreationState)

This class holds some data of a local room. It can be retrieved by org.matrix.android.sdk.api.session.room.Room and org.matrix.android.sdk.api.session.room.RoomService

Constructors

Link copied to clipboard
fun LocalRoomSummary(    roomId: String,     roomSummary: RoomSummary?,     createRoomParams: CreateRoomParams?,     replacementRoomId: String?,     creationState: LocalRoomCreationState)

Properties

Link copied to clipboard
val createRoomParams: CreateRoomParams?

The creation params attached to the room.

Link copied to clipboard
val creationState: LocalRoomCreationState

The creation state of the room.

Link copied to clipboard
val replacementRoomId: String?

The roomId of the created room (ie. created on the server), if any.

Link copied to clipboard
val roomId: String

The roomId of the room.

Link copied to clipboard
val roomSummary: RoomSummary?

The room summary of the room.