diff --git a/disco/gateway/events.py b/disco/gateway/events.py index a18efb5..5b2e8b5 100644 --- a/disco/gateway/events.py +++ b/disco/gateway/events.py @@ -320,3 +320,11 @@ class VoiceServerUpdate(GatewayEvent): token = Field(str) endpoint = Field(str) guild_id = Field(snowflake) + + +class WebhooksUpdate(GatewayEvent): + """ + Sent when a channels webhooks are updated. + """ + channel_id = Field(snowflake) + guild_id = Field(snowflake)