diff --git a/discord/webhook_message_create.go b/discord/webhook_message_create.go index a1df9508..05b2d816 100644 --- a/discord/webhook_message_create.go +++ b/discord/webhook_message_create.go @@ -1,5 +1,7 @@ package discord +import "github.com/disgoorg/snowflake/v2" + type WebhookMessageCreate struct { Content string `json:"content,omitempty"` Username string `json:"username,omitempty"` @@ -12,6 +14,7 @@ type WebhookMessageCreate struct { AllowedMentions *AllowedMentions `json:"allowed_mentions,omitempty"` Flags MessageFlags `json:"flags,omitempty"` ThreadName string `json:"thread_name,omitempty"` + AppliedTags []snowflake.ID `json:"applied_tags,omitempty"` } // ToBody returns the MessageCreate ready for body