HMSPollQuestionOption

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)

Constructors

Link copied to clipboard
fun HMSPollQuestionOption(index: Int, text: String? = "", weight: Int? = null, case: Boolean = false, trim: Boolean = false, voteCount: Long = 0)

Properties

Link copied to clipboard
@SerializedName(value = "case")
val case: Boolean = false
Link copied to clipboard
@SerializedName(value = "index")
val index: Int
Link copied to clipboard
@SerializedName(value = "text")
val text: String?
Link copied to clipboard
@SerializedName(value = "trim")
val trim: Boolean = false
Link copied to clipboard
var voteCount: Long = 0
Link copied to clipboard
@SerializedName(value = "weight")
val weight: Int? = null