add getStickerSet call
This commit is contained in:
parent
aa124ef1e8
commit
f44d515f71
3 changed files with 42 additions and 0 deletions
8
types.go
8
types.go
|
@ -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"`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue