PollStatsQuestions

data class PollStatsQuestions(val index: Int, val questionType: HMSPollQuestionType, val options: List<Long>?, val correct: Long?, val skipped: Long, val attemptedTimes: Int)

Constructors

Link copied to clipboard
fun PollStatsQuestions(index: Int, questionType: HMSPollQuestionType, options: List<Long>?, correct: Long?, skipped: Long, attemptedTimes: Int)

Properties

Link copied to clipboard
@SerializedName(value = "total")
val attemptedTimes: Int
Link copied to clipboard
@SerializedName(value = "correct")
val correct: Long?
Link copied to clipboard
@SerializedName(value = "question")
val index: Int
Link copied to clipboard
@SerializedName(value = "options")
val options: List<Long>?
Link copied to clipboard
@SerializedName(value = "type")
val questionType: HMSPollQuestionType
Link copied to clipboard
@SerializedName(value = "skipped")
val skipped: Long