diff options
Diffstat (limited to 'pkg/mastotypes/model/announcementreaction.go')
-rw-r--r-- | pkg/mastotypes/model/announcementreaction.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pkg/mastotypes/model/announcementreaction.go b/pkg/mastotypes/model/announcementreaction.go index 81d04bcae..444c57e2c 100644 --- a/pkg/mastotypes/model/announcementreaction.go +++ b/pkg/mastotypes/model/announcementreaction.go @@ -21,13 +21,13 @@ package mastotypes // AnnouncementReaction represents a user reaction to admin/moderator announcement. See here: https://docs.joinmastodon.org/entities/announcementreaction/ type AnnouncementReaction struct { // The emoji used for the reaction. Either a unicode emoji, or a custom emoji's shortcode. - Name string `json:"name"` + Name string `json:"name"` // The total number of users who have added this reaction. - Count int `json:"count"` + Count int `json:"count"` // Whether the authorized user has added this reaction to the announcement. - Me bool `json:"me"` + Me bool `json:"me"` // A link to the custom emoji. - URL string `json:"url,omitempty"` + URL string `json:"url,omitempty"` // A link to a non-animated version of the custom emoji. StaticURL string `json:"static_url,omitempty"` } |