Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions message.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,10 @@ type Message struct {
ShowInChannel bool `json:"show_in_channel,omitempty"` // show reply message also in channel
ThreadParticipants []*User `json:"thread_participants,omitempty"`

ReplyCount int `json:"reply_count,omitempty"`
QuotedMessageID string `json:"quoted_message_id,omitempty"`
MentionedUsers []*User `json:"mentioned_users"`
ReplyCount int `json:"reply_count,omitempty"`
QuotedMessage *Message `json:"quoted_message,omitempty"`
QuotedMessageID string `json:"quoted_message_id,omitempty"`
MentionedUsers []*User `json:"mentioned_users"`

Command string `json:"command,omitempty"`

Expand Down