ThirdPartyUser

@JsonClass(generateAdapter = true)
data class ThirdPartyUser(    @Json(name = "userid") val userId: String,     @Json(name = "protocol") val protocol: String,     @Json(name = "fields") val fields: JsonDict)

Constructors

Link copied to clipboard
fun ThirdPartyUser(    @Json(name = "userid") userId: String,     @Json(name = "protocol") protocol: String,     @Json(name = "fields") fields: JsonDict)

Properties

Link copied to clipboard
val fields: JsonDict

Required. Information used to identify this third party location.

Link copied to clipboard
val protocol: String

Required. The protocol ID that the third party location is a part of.

Link copied to clipboard
val userId: String

Required. A Matrix User ID representing a third party user.