Add Emojis to Status

pull/65/merge
utam0k 2017-10-25 21:19:38 +09:00 committed by Yasuhiro Matsumoto
parent 689663979a
commit 1d165763fa
2 changed files with 8 additions and 0 deletions

View File

@ -205,6 +205,13 @@ type Attachment struct {
TextURL string `json:"text_url"`
}
// Emoji hold information for CustomEmoji.
type Emoji struct {
ShortCode string `json:"shortcode"`
URL string `json:"url"`
StaticURL string `json:"static_url"`
}
// Results hold information for search result.
type Results struct {
Accounts []*Account `json:"accounts"`

View File

@ -20,6 +20,7 @@ type Status struct {
Application Application `json:"application"`
Account Account `json:"account"`
MediaAttachments []Attachment `json:"media_attachments"`
Emojis []Emoji `json:"emojis"`
Mentions []Mention `json:"mentions"`
Tags []Tag `json:"tags"`
URI string `json:"uri"`