all repos — telegram-bot-api @ fd860fdd66745e140316aa97698ba458c330c58e

Golang bindings for the Telegram Bot API

add file_unique_id
Daniel Leining daniel@leining.org
Thu, 23 Jan 2020 23:41:44 -0500
commit

fd860fdd66745e140316aa97698ba458c330c58e

parent

aa124ef1e84ecc14654ad242f3cf3bd2b0d5956c

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

jump to
M types.gotypes.go

@@ -338,14 +338,15 @@ }

// 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 - IsAnimated bool `json:"is_animated"` // optional + FileUniqueID string `json:"file_unique_id"` + 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.