1
bot/models/sticker_set.go

11 lines
321 B
Go
Raw Permalink Normal View History

package models
// StickerSet https://core.telegram.org/bots/api#stickerset
type StickerSet struct {
2024-04-02 23:09:36 +08:00
Name string `json:"name"`
Title string `json:"title"`
StickerType string `json:"sticker_type"`
Stickers []Sticker `json:"stickers"`
Thumbnail *PhotoSize `json:"thumbnail,omitempty"`
}