RoomAlias

data class RoomAlias(val roomAliasId: RoomAliasId, val match: String, val parameters: Parameters? = null, val label: String? = null) : Mention

Represents a mention of a room alias

Constructors

Link copied to clipboard
constructor(roomAliasId: RoomAliasId, match: String, parameters: Parameters? = null, label: String? = null)

Properties

Link copied to clipboard
open override val label: String? = null

The optional display name associated with the mention, if applicable.

Link copied to clipboard
open override val match: String

The textual representation of the mention within the message it appears. Use with care, IntRange preferred

Link copied to clipboard
open override val parameters: Parameters? = null

If exists, the parameters provided in the URI

Link copied to clipboard