INPUT_OBJECT

CreatePredictionEventInput

Input for creating a Prediction Event.

link GraphQL Schema definition

1input CreatePredictionEventInput {
4
2# The channel to create the Prediction Event on.
3channelID: ID!
7
5# Outcomes that can be chosen in the Prediction Event.
6outcomes: [CreatePredictionOutcomeInput!]!
10
8# The duration of the Prediction Window, in seconds.
9predictionWindowSeconds: Int!
13
11# The intended title of the Prediction Event.
12title: String!
14}