summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/nlopes/slack/websocket_dnd.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/nlopes/slack/websocket_dnd.go')
-rw-r--r--vendor/github.com/nlopes/slack/websocket_dnd.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/vendor/github.com/nlopes/slack/websocket_dnd.go b/vendor/github.com/nlopes/slack/websocket_dnd.go
new file mode 100644
index 00000000..62ddea3a
--- /dev/null
+++ b/vendor/github.com/nlopes/slack/websocket_dnd.go
@@ -0,0 +1,8 @@
+package slack
+
+// DNDUpdatedEvent represents the update event for Do Not Disturb
+type DNDUpdatedEvent struct {
+ Type string `json:"type"`
+ User string `json:"user"`
+ Status DNDStatus `json:"dnd_status"`
+}