Update types.go Added IsAnimated to Sticker struct
Konstantin Chukhlomin mail@chuhlomin.com
Sun, 12 Jan 2020 23:54:08 -0500
1 files changed,
8 insertions(+),
7 deletions(-)
jump to
M
types.go
→
types.go
@@ -338,13 +338,14 @@ }
// Sticker contains information about a sticker. type Sticker struct { - FileID string `json:"file_id"` - Width int `json:"width"` - Height int `json:"height"` - Thumbnail *PhotoSize `json:"thumb"` // optional - Emoji string `json:"emoji"` // optional - FileSize int `json:"file_size"` // optional - SetName string `json:"set_name"` // optional + FileID string `json:"file_id"` + Width int `json:"width"` + Height int `json:"height"` + Thumbnail *PhotoSize `json:"thumb"` // optional + Emoji string `json:"emoji"` // optional + FileSize int `json:"file_size"` // optional + SetName string `json:"set_name"` // optional + IsAnimated bool `json:"is_animated"` // optional } // ChatAnimation contains information about an animation.