Skip to content

Commit

Permalink
add RTM event: mobile_in_app_notification
Browse files Browse the repository at this point in the history
  • Loading branch information
Yusuke Komatsu committed Jan 22, 2020
1 parent d06c2a2 commit 2427d30
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
3 changes: 2 additions & 1 deletion websocket_managed_conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -577,5 +577,6 @@ var EventMapping = map[string]interface{}{
"subteam_self_removed": SubteamSelfRemovedEvent{},
"subteam_updated": SubteamUpdatedEvent{},

"desktop_notification": DesktopNotificationEvent{},
"desktop_notification": DesktopNotificationEvent{},
"mobile_in_app_notification": MobileInAppNotificationEvent{},
}
20 changes: 20 additions & 0 deletions websocket_mobile_in_app_notification.go
Original file line number Diff line number Diff line change
@@ -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"`
}

0 comments on commit 2427d30

Please sign in to comment.