release: 1.0.0 beta 22
Implemented full tgapi method coverage from Telegram docs, aligned numeric ID/file_size types, and fixed method signatures/JSON tags.; Standardized GoDoc across exported APIs with Telegram links and refreshed README sections for MsgContext plus API/Uploader usage.
This commit is contained in:
9
tgapi/games_types.go
Normal file
9
tgapi/games_types.go
Normal file
@@ -0,0 +1,9 @@
|
||||
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"`
|
||||
}
|
||||
Reference in New Issue
Block a user