AssertedIdentity

@JsonClass(generateAdapter = true)
data class AssertedIdentity(    @Json(name = "id") val id: String? = null,     @Json(name = "display_name") val displayName: String? = null,     @Json(name = "avatar_url") val avatarUrl: String? = null)

A user ID may be included if relevant, but unlike target_user, it is purely informational. The asserted identity may not represent a matrix user at all, in which case just a display_name may be given, or a perhaps a display_name and avatar_url.

Constructors

Link copied to clipboard
fun AssertedIdentity(    @Json(name = "id") id: String? = null,     @Json(name = "display_name") displayName: String? = null,     @Json(name = "avatar_url") avatarUrl: String? = null)

Properties

Link copied to clipboard
val avatarUrl: String? = null
Link copied to clipboard
val displayName: String? = null
Link copied to clipboard
val id: String? = null