github.com/tada-team/tdproto@v1.51.57/stickerpack.go (about) 1 package tdproto 2 3 // Collection of stickers 4 type Stickerpack struct { 5 Uid string `json:"uid"` 6 Name string `json:"name"` 7 Title string `json:"title"` 8 Author string `json:"author,omitempty"` 9 AuthorLink string `json:"author_link,omitempty"` 10 Stickers []Sticker `json:"stickers"` 11 } 12 13 // Single sticker 14 type Sticker struct { 15 Uid string `json:"uid"` 16 Icon64 string `json:"icon64"` 17 Icon100 string `json:"icon100"` 18 Icon128 string `json:"icon128"` 19 Icon200 string `json:"icon200"` 20 MessageContent MessageContent `json:"message_content"` 21 }