wg-quicker/vendor/github.com/slack-go/slack/websocket_dnd.go

9 lines
215 B
Go
Raw Normal View History

2022-01-07 20:20:48 +01:00
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"`
}