ENUM

PollStatus

The status of the poll.

link GraphQL Schema definition

1enum PollStatus {
2
3# Encountered some poll status that we do not know how to handle BibleThump.
4UNKNOWN
5
6# Poll is running. Users can vote. Results are publicly visible.
7ACTIVE
8
9# Poll ran its entire duration and "naturally" completed. Users cannot vote.
10# Results are publicly visible.
11COMPLETED
12
13# Poll was manually ended ("terminated") by a user. Users cannot vote. Results are
14# publicly visible.
15TERMINATED
16
17# Poll has ended and is no longer publicly visible. Users cannot vote. Results are
18# not publicly visible.
19ARCHIVED
20
21# Poll has been moderated by Twitch and is no longer viewable, even to the poll
22# owner. Users cannot vote. Results are not visible to any user.
23MODERATED
24}