Skip to content

Commit 63294cb

Browse files
authored
Add ReplyUsers to Msg Struct
This is something that Slack returns by default on API response.
1 parent a735199 commit 63294cb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

messages.go

+1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ type Msg struct {
101101

102102
// channels.replies, groups.replies, im.replies, mpim.replies
103103
ReplyCount int `json:"reply_count,omitempty"`
104+
ReplyUsers []string `json:"reply_users,omitempty"`
104105
Replies []Reply `json:"replies,omitempty"`
105106
ParentUserId string `json:"parent_user_id,omitempty"`
106107
LatestReply string `json:"latest_reply,omitempty"`

0 commit comments

Comments
 (0)