From 48a4dab7869937af29d90f29e5bdf0999b48da43 Mon Sep 17 00:00:00 2001 From: Andrew Giel Date: Fri, 6 Sep 2024 14:22:30 -0400 Subject: [PATCH] mark Guild Member fields deaf and mute as nullable --- docs/resources/Guild.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/resources/Guild.md b/docs/resources/Guild.md index c9f8afcdef..954d888736 100644 --- a/docs/resources/Guild.md +++ b/docs/resources/Guild.md @@ -350,8 +350,8 @@ A partial [guild](#DOCS_RESOURCES_GUILD/guild-object) object. Represents an Offl | roles | array of snowflakes | array of [role](#DOCS_TOPICS_PERMISSIONS/role-object) object ids | | joined_at | ISO8601 timestamp | when the user joined the guild | | premium_since? | ?ISO8601 timestamp | when the user started [boosting](https://support.discord.com/hc/en-us/articles/360028038352-Server-Boosting-) the guild | -| deaf | boolean | whether the user is deafened in voice channels | -| mute | boolean | whether the user is muted in voice channels | +| deaf? | ?boolean | whether the user is deafened in voice channels | +| mute? | ?boolean | whether the user is muted in voice channels | | flags | integer | [guild member flags](#DOCS_RESOURCES_GUILD/guild-member-object-guild-member-flags) represented as a bit set, defaults to `0` | | pending? | boolean | whether the user has not yet passed the guild's [Membership Screening](#DOCS_RESOURCES_GUILD/membership-screening-object) requirements | | permissions? | string | total permissions of the member in the channel, including overwrites, returned when in the interaction object |