diff options
Diffstat (limited to 'vendor/github.com/nlopes/slack/websocket_misc.go')
-rw-r--r-- | vendor/github.com/nlopes/slack/websocket_misc.go | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/vendor/github.com/nlopes/slack/websocket_misc.go b/vendor/github.com/nlopes/slack/websocket_misc.go index 6c2c6abf..ad283ea1 100644 --- a/vendor/github.com/nlopes/slack/websocket_misc.go +++ b/vendor/github.com/nlopes/slack/websocket_misc.go @@ -76,8 +76,12 @@ type UserChangeEvent struct { // EmojiChangedEvent represents the emoji changed event type EmojiChangedEvent struct { - Type string `json:"type"` - EventTimestamp string `json:"event_ts"` + Type string `json:"type"` + SubType string `json:"subtype"` + Name string `json:"name"` + Names []string `json:"names"` + Value string `json:"value"` + EventTimestamp string `json:"event_ts"` } // CommandsChangedEvent represents the commands changed event |