11 lines
321 B
Go
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"`
|
|
}
|