1
bot/models/sticker_set.go
Andrew Privalov d8831e7c5a
v7.2 (#74)
2024-04-02 18:09:36 +03:00

11 lines
321 B
Go

package models
// StickerSet https://core.telegram.org/bots/api#stickerset
type StickerSet struct {
Name string `json:"name"`
Title string `json:"title"`
StickerType string `json:"sticker_type"`
Stickers []Sticker `json:"stickers"`
Thumbnail *PhotoSize `json:"thumbnail,omitempty"`
}