PollAnswer

data class PollAnswer(    val pollId: PollIdentifier,     val user: User,     val chosen: List<Int>) : FromUser

Constructors

Link copied to clipboard
fun PollAnswer(    pollId: PollIdentifier,     user: User,     chosen: List<Int>)

Properties

Link copied to clipboard
val chosen: List<Int>
Link copied to clipboard
open override val from: User

The source User of this type

Link copied to clipboard
val pollId: PollIdentifier
Link copied to clipboard
open override val user: User

Extensions

Link copied to clipboard
val PollAnswer.option_ids: List<Int>
Link copied to clipboard
val PollAnswer.poll_id: PollIdentifier