add getStickerSet call

This commit is contained in:
Daniel Leining 2020-01-29 22:58:02 -05:00
parent aa124ef1e8
commit f44d515f71
3 changed files with 42 additions and 0 deletions

View file

@ -348,6 +348,14 @@ type Sticker struct {
IsAnimated bool `json:"is_animated"` // optional
}
type StickerSet struct {
Name string `json:"name"`
Title string `json:"title"`
IsAnimated bool `json:"is_animated"`
ContainsMasks bool `json:"contains_masks"`
Stickers []Sticker `json:"stickers"`
}
// ChatAnimation contains information about an animation.
type ChatAnimation struct {
FileID string `json:"file_id"`