package tgapi // GameHighScore represents one row in a game high score table. // See https://core.telegram.org/bots/api#gamehighscore type GameHighScore struct { Position int `json:"position"` User User `json:"user"` Score int `json:"score"` }