summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/slack-go/slack/websocket_mobile_in_app_notification.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/slack-go/slack/websocket_mobile_in_app_notification.go')
-rw-r--r--vendor/github.com/slack-go/slack/websocket_mobile_in_app_notification.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/vendor/github.com/slack-go/slack/websocket_mobile_in_app_notification.go b/vendor/github.com/slack-go/slack/websocket_mobile_in_app_notification.go
new file mode 100644
index 00000000..e3cfb3d9
--- /dev/null
+++ b/vendor/github.com/slack-go/slack/websocket_mobile_in_app_notification.go
@@ -0,0 +1,20 @@
+package slack
+
+// MobileInAppNotificationEvent represents the update event for Mobile App Notification.
+type MobileInAppNotificationEvent struct {
+ Type string `json:"type"`
+ Title string `json:"title"`
+ Subtitle string `json:"subtitle"`
+ Timestamp string `json:"ts"`
+ Channel string `json:"channel"`
+ AvatarImage string `json:"avatarImage"`
+ IsShared bool `json:"is_shared"`
+ ChannelName string `json:"channel_name"`
+ AuthorID string `json:"author_id"`
+ AuthorDisplayName string `json:"author_display_name"`
+ MessageText string `json:"msg_text"`
+ PushID string `json:"push_id"`
+ NotifcationID string `json:"notif_id"`
+ MobileLaunchURI string `json:"mobileLaunchUri"`
+ EventTimestamp string `json:"event_ts"`
+}