HmsPollQuestionContainer

data class HmsPollQuestionContainer(val question: HMSPollQuestion, val options: List<HMSPollQuestionOption>? = question.options, val correctAnswer: HMSPollQuestionAnswer? = question.correctAnswer)

Constructors

Link copied to clipboard
fun HmsPollQuestionContainer(question: HMSPollQuestion, options: List<HMSPollQuestionOption>? = question.options, correctAnswer: HMSPollQuestionAnswer? = question.correctAnswer)

Properties

Link copied to clipboard
@SerializedName(value = "answer")
val correctAnswer: HMSPollQuestionAnswer?
Link copied to clipboard
@SerializedName(value = "options")
val options: List<HMSPollQuestionOption>?
Link copied to clipboard
@SerializedName(value = "question")
val question: HMSPollQuestion