mirror of
https://github.com/crazy-max/diun.git
synced 2025-01-12 11:38:11 +00:00
8 lines
215 B
Go
8 lines
215 B
Go
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"`
|
|
}
|