From 6af2451cd401e1b9b9bb4419aaf8460156f723cb Mon Sep 17 00:00:00 2001 From: Ryan Whelan Date: Sun, 26 May 2024 06:53:13 -0400 Subject: [PATCH] feat(GuildAuditLogEntryCreate): add guild_id (#1367) --------- Co-authored-by: Fedor Lapshin --- events.go | 1 + 1 file changed, 1 insertion(+) diff --git a/events.go b/events.go index 8438ff8..2da0e3e 100644 --- a/events.go +++ b/events.go @@ -405,4 +405,5 @@ type AutoModerationActionExecution struct { // GuildAuditLogEntryCreate is the data for a GuildAuditLogEntryCreate event. type GuildAuditLogEntryCreate struct { *AuditLogEntry + GuildID string `json:"guild_id"` }