PollAnswer

@JsonClass(generateAdapter = true)
data class PollAnswer(    @Json(name = "id") val id: String? = null,     @Json(name = "org.matrix.msc1767.text") val unstableAnswer: String? = null,     @Json(name = "m.text") val answer: String? = null)

Constructors

Link copied to clipboard
fun PollAnswer(    @Json(name = "id") id: String? = null,     @Json(name = "org.matrix.msc1767.text") unstableAnswer: String? = null,     @Json(name = "m.text") answer: String? = null)

Functions

Link copied to clipboard
fun getBestAnswer(): String?

Properties

Link copied to clipboard
val answer: String? = null
Link copied to clipboard
val id: String? = null
Link copied to clipboard
val unstableAnswer: String? = null