all repos — telegram-bot-api @ 5e339ed016b0c7349c092f9fc0ecdf9e18c5f963

Golang bindings for the Telegram Bot API

Merge pull request #301 from blasphemy/sticker-unique-id

add file_unique_id to Sticker struct
Kirill Zhuharev zhuharev@users.noreply.github.com
Thu, 19 Mar 2020 07:26:09 +0300
commit

5e339ed016b0c7349c092f9fc0ecdf9e18c5f963

parent

b401ef076d1ab044a2253284532a2b1456586609

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 } type StickerSet struct {