GetKeyChanges

@Serializable
data class GetKeyChanges(val from: String, val to: String) : MatrixEndpoint<Unit, GetKeyChanges.Response>

See also

Constructors

Link copied to clipboard
constructor(from: String, to: String)

Types

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

Properties

Link copied to clipboard
@SerialName(value = "from")
val from: String
Link copied to clipboard
open val requestContentType: ContentType?
Link copied to clipboard
open val responseContentType: ContentType?
Link copied to clipboard
@SerialName(value = "to")
val to: String

Functions

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