2022-05-06 17:47:43 +08:00
|
|
|
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"`
|
2022-05-06 17:47:43 +08:00
|
|
|
}
|