Skip to content

Commit

Permalink
sticker fields
Browse files Browse the repository at this point in the history
  • Loading branch information
sdfsdhgjkbmnmxc committed Sep 25, 2020
1 parent d81755d commit 6c13a4a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions stickerpack.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package tdproto

type Stickerpack struct {
Uid string `json:"uid"`
Name string `json:"name"`
Title string `json:"title"`
Author string `json:"author,omitempty"`
AuthorLink string `json:"author_link,omitempty"`
Stickers []Sticker `json:"stickers"`
}

type Sticker struct {
Uid string `json:"uid"`
Icon64 string `json:"icon64"`
Icon100 string `json:"icon100"`
Icon128 string `json:"icon128"`
Icon200 string `json:"icon200"`
MessageContent MessageContent `json:"message_content"`
}

0 comments on commit 6c13a4a

Please sign in to comment.