From 73c5d16561bd1b47bf1d521e2eeaa5bd96d1eb16 Mon Sep 17 00:00:00 2001 From: Andrei Date: Wed, 12 Oct 2016 18:45:12 -0500 Subject: [PATCH] Add WebhooksUpdate gateway event --- disco/gateway/events.py | 8 ++++++++ 1 file changed, 8 insertions(+) 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)