Represents poll changelogs.

interface PollChangelogs {
    deletedPollIds: number[];
    hasMore: boolean;
    token: string;
    updatedPolls: Poll[];
}

Properties

deletedPollIds: number[]

Deleted Poll IDs

hasMore: boolean

Whether there're more polls in the next page.

token: string

Poll changelogs pagination token.

updatedPolls: Poll[]

Updated Polls.