QueryPollsResult

data class QueryPollsResult(val polls: List<Poll>, val next: String?)

Model representing the result of a 'Query Polls' operation.

Constructors

Link copied to clipboard
constructor(polls: List<Poll>, next: String?)

Properties

Link copied to clipboard
val next: String?

The pagination token for fetching the next set of results.

Link copied to clipboard

The list of polls matching the query.