PollResultsResponse

data class PollResultsResponse(val pollId: String, val totalResponses: Long, val votingUsers: Long, val totalDistinctUsers: Long, val question: List<PollStatsQuestions>)

Constructors

Link copied to clipboard
fun PollResultsResponse(pollId: String, totalResponses: Long, votingUsers: Long, totalDistinctUsers: Long, question: List<PollStatsQuestions>)

Properties

Link copied to clipboard
@SerializedName(value = "poll_id")
val pollId: String
Link copied to clipboard
@SerializedName(value = "questions")
val question: List<PollStatsQuestions>
Link copied to clipboard
@SerializedName(value = "max_user")
val totalDistinctUsers: Long
Link copied to clipboard
@SerializedName(value = "total_response")
val totalResponses: Long
Link copied to clipboard
@SerializedName(value = "user_count")
val votingUsers: Long