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
constructor(roomId: String, roomSummary: RoomSummary?, createRoomParams: CreateRoomParams?, replacementRoomId: String?, creationState: LocalRoomCreationState)

Properties

Link copied to clipboard

The creation params attached to the room.

Link copied to clipboard

The creation state of the room.

Link copied to clipboard

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

Link copied to clipboard

The roomId of the room.

Link copied to clipboard

The room summary of the room.