Package-level declarations

Types

Link copied to clipboard
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())
Link copied to clipboard
data class HmsPollQuestionContainer(val question: HMSPollQuestion, val options: List<HMSPollQuestionOption>? = question.options, val correctAnswer: HMSPollQuestionAnswer? = question.correctAnswer)
Link copied to clipboard
data class HmsPollQuestionCreation(val questionID: Int, val type: HMSPollQuestionType, val text: String, val canSkip: Boolean = false, val canChangeResponse: Boolean = true, val duration: Long = 0, val weight: Int = 1, val answerShortMinLength: Long? = 1, val answerLongMinLength: Long? = 1, val negative: Boolean = false)
Link copied to clipboard
data class HMSPollQuestionOption(val index: Int, val text: String? = "", val weight: Int? = null, val case: Boolean = false, val trim: Boolean = false, var voteCount: Long = 0)
Link copied to clipboard
data class HmsPollQuestionSettingContainer(val questionContainer: HmsPollQuestionCreation, val options: List<HMSPollQuestionOption>?, val correctAnswer: HMSPollQuestionAnswer?)