IncompatibleRoomVersion

@Serializable
@SerialName(value = "M_INCOMPATIBLE_ROOM_VERSION")
data class IncompatibleRoomVersion(val error: String, val roomVersion: String? = null) : ErrorResponse

The client attempted to join a room that has a version the server does not support. Inspect the room_version property of the error response for the room's version.

Constructors

Link copied to clipboard
constructor(error: String, roomVersion: String? = null)

Properties

Link copied to clipboard
open override val error: String
Link copied to clipboard
@SerialName(value = "room_version")
val roomVersion: String?