HMSPollQuestionResponse

data class HMSPollQuestionResponse(val responseId: String, val index: Int, val questionType: HMSPollQuestionType, val skipped: Boolean, val selectedOption: Int?, val selectedOptions: List<Int>?, val text: String?, val answerChanged: Boolean)

Constructors

Link copied to clipboard
fun HMSPollQuestionResponse(responseId: String, index: Int, questionType: HMSPollQuestionType, skipped: Boolean, selectedOption: Int?, selectedOptions: List<Int>?, text: String?, answerChanged: Boolean)

Properties

Link copied to clipboard
@SerializedName(value = "update")
val answerChanged: Boolean
Link copied to clipboard
@SerializedName(value = "question")
val index: Int
Link copied to clipboard
@SerializedName(value = "type")
val questionType: HMSPollQuestionType
Link copied to clipboard
@SerializedName(value = "response_id")
val responseId: String
Link copied to clipboard
@SerializedName(value = "option")
val selectedOption: Int?
Link copied to clipboard
@SerializedName(value = "options")
val selectedOptions: List<Int>?
Link copied to clipboard
@SerializedName(value = "skipped")
val skipped: Boolean
Link copied to clipboard
@SerializedName(value = "text")
val text: String?