From 63294cb7d6e64c19dc2c8cc825b40569d399720c Mon Sep 17 00:00:00 2001 From: Aleksa Arsic <85497919+aleksa11010@users.noreply.github.com> Date: Mon, 6 Mar 2023 17:29:16 +0100 Subject: [PATCH] Add ReplyUsers to Msg Struct This is something that Slack returns by default on API response. --- messages.go | 1 + 1 file changed, 1 insertion(+) diff --git a/messages.go b/messages.go index 333404563..e0c45ab25 100644 --- a/messages.go +++ b/messages.go @@ -101,6 +101,7 @@ type Msg struct { // channels.replies, groups.replies, im.replies, mpim.replies ReplyCount int `json:"reply_count,omitempty"` + ReplyUsers []string `json:"reply_users,omitempty"` Replies []Reply `json:"replies,omitempty"` ParentUserId string `json:"parent_user_id,omitempty"` LatestReply string `json:"latest_reply,omitempty"`