1package slack
2
3// MobileInAppNotificationEvent represents the update event for Mobile App Notification.
4type MobileInAppNotificationEvent struct {
5	Type              string `json:"type"`
6	Title             string `json:"title"`
7	Subtitle          string `json:"subtitle"`
8	Timestamp         string `json:"ts"`
9	Channel           string `json:"channel"`
10	AvatarImage       string `json:"avatarImage"`
11	IsShared          bool   `json:"is_shared"`
12	ChannelName       string `json:"channel_name"`
13	AuthorID          string `json:"author_id"`
14	AuthorDisplayName string `json:"author_display_name"`
15	MessageText       string `json:"msg_text"`
16	PushID            string `json:"push_id"`
17	NotifcationID     string `json:"notif_id"`
18	MobileLaunchURI   string `json:"mobileLaunchUri"`
19	EventTimestamp    string `json:"event_ts"`
20}
21