From a6124c0673ce11f624847f34482b3514ab9a21c7 Mon Sep 17 00:00:00 2001 From: Jackie Xu Date: Thu, 19 May 2022 16:41:59 -0400 Subject: [PATCH] add ReplyBroadcast field to WebhookMessage --- webhooks.go | 1 + 1 file changed, 1 insertion(+) diff --git a/webhooks.go b/webhooks.go index e7c12d348..2f8fb47f6 100644 --- a/webhooks.go +++ b/webhooks.go @@ -23,6 +23,7 @@ type WebhookMessage struct { ResponseType string `json:"response_type,omitempty"` ReplaceOriginal bool `json:"replace_original,omitempty"` DeleteOriginal bool `json:"delete_original,omitempty"` + ReplyBroadcast bool `json:"reply_broadcast,omitempty"` } func PostWebhook(url string, msg *WebhookMessage) error {