all repos — telegram-bot-api @ 613005ba7b6d21b9362271e69af5f0e584c80ecb

Golang bindings for the Telegram Bot API

Update types.go

Added IsAnimated to Sticker struct
Konstantin Chukhlomin mail@chuhlomin.com
Sun, 12 Jan 2020 23:54:08 -0500
commit

613005ba7b6d21b9362271e69af5f0e584c80ecb

parent

b33efeebc78563cfeddf19563781cffb16aaabdf

1 files changed, 8 insertions(+), 7 deletions(-)

jump to
M types.gotypes.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.