GameStateContestant
The state data of a contestant in the game
type GameStateContestant {
players: [GameStatePlayer]
result: GameStateContestantResult
score: Int
team: GameStateTeam
}
Fields
GameStateContestant.players ● [GameStatePlayer] list object
List of players playing for this contestant
GameStateContestant.result ● GameStateContestantResult object
Result outcome of the match, only set when already determined
GameStateContestant.score ● Int scalar
Current score of the contestant in the game
GameStateContestant.team ● GameStateTeam object
The team representing the contestant (only set for team-based games)
Member Of
GameState object