GetKeyChanges

@Serializable
data class GetKeyChanges(val from: String, val to: String, val asUserId: UserId? = null) : MatrixEndpoint<Unit, GetKeyChanges.Response>

See also

Constructors

Link copied to clipboard
fun GetKeyChanges(from: String, to: String, asUserId: UserId? = null)

Types

Link copied to clipboard
@Serializable
data class Response(val changed: Set<UserId>, val left: Set<UserId>)

Functions

Link copied to clipboard
open fun requestSerializerBuilder(mappings: EventContentSerializerMappings, json: Json): KSerializer<Unit>?
Link copied to clipboard
open fun responseSerializerBuilder(mappings: EventContentSerializerMappings, json: Json): KSerializer<GetKeyChanges.Response>?

Properties

Link copied to clipboard
val asUserId: UserId? = null
Link copied to clipboard
Link copied to clipboard
open val requestContentType: ContentType?
Link copied to clipboard
open val responseContentType: ContentType?
Link copied to clipboard
val to: String