chore: Add note about missing webhook following source (#2460)

This commit is contained in:
LTS20050703
2022-09-11 20:08:40 -05:00
committed by GitHub
parent 67e137fcdc
commit 08c9f2395b
+2 -2
View File
@@ -502,9 +502,9 @@ export interface DiscordApplicationWebhook {
avatar: string | null;
/** The bot/OAuth2 application that created this webhook */
application_id: string | null;
/** The guild of the channel that this webhook is following (returned for Channel Follower Webhooks) */
/** The guild of the channel that this webhook is following (returned for Channel Follower Webhooks), field will be absent if the webhook creator has since lost access to the guild where the followed channel resides */
source_guild?: Partial<DiscordGuild>;
/** The channel that this webhook is following (returned for Channel Follower Webhooks) */
/** The channel that this webhook is following (returned for Channel Follower Webhooks), field will be absent if the webhook creator has since lost access to the guild where the followed channel resides */
source_channel?: Partial<DiscordChannel>;
}