OBJECT

CreatePredictionEventError

An error returned from the createPredictionEvent mutation.

link GraphQL Schema definition

1type CreatePredictionEventError {
2
3# Code describing the error.
4code: CreatePredictionEventErrorCode!
5
6# If the error code is TOO_MANY_OUTCOMES, this will be the maximum number of
7# Outcomes.
8maxOutcomes: Int
9
10# If the error code is INVALID_PREDICTION_WINDOW, this will be the maximum
11# Prediction Window in seconds.
12maxPredictionWindowSeconds: Int
13
14}