PollChangeLogsResult

data class PollChangeLogsResult(val updatedPolls: List<Poll>, val deletedPollIds: List<Long>, val hasMore: Boolean, val token: String)

A result class for BaseChannel.getPollChangeLogsSinceToken.

Since

4.15.0

Constructors

Link copied to clipboard
constructor(updatedPolls: List<Poll>, deletedPollIds: List<Long>, hasMore: Boolean, token: String)

Properties

Link copied to clipboard

Returned deleted poll IDs.

Link copied to clipboard

Returned true if it has more changelogs.

Link copied to clipboard

Returned token to get next changelogs.

Link copied to clipboard
val updatedPolls: List<Poll>

Returned updated polls.