HMSPollQuestion
data class HMSPollQuestion(val questionID: Int, val type: HMSPollQuestionType, val text: String, val canSkip: Boolean = false, val canChangeResponse: Boolean = true, val duration: Long = 0, val weight: Int = 0, val answerShortMinLength: Long? = 1, val answerLongMinLength: Long? = null, val options: List<HMSPollQuestionOption>? = null, val correctAnswer: HMSPollQuestionAnswer? = null, val negative: Boolean = false, val myResponses: MutableList<HmsPollAnswer> = mutableListOf())
Constructors
Link copied to clipboard
fun HMSPollQuestion(questionID: Int, type: HMSPollQuestionType, text: String, canSkip: Boolean = false, canChangeResponse: Boolean = true, duration: Long = 0, weight: Int = 0, answerShortMinLength: Long? = 1, answerLongMinLength: Long? = null, options: List<HMSPollQuestionOption>? = null, correctAnswer: HMSPollQuestionAnswer? = null, negative: Boolean = false, myResponses: MutableList<HmsPollAnswer> = mutableListOf())