-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document set voice channel status #6398
base: main
Are you sure you want to change the base?
Changes from 2 commits
ea3518f
5015a56
ce8d25d
0fc7a36
998cc07
80f7188
1bbcb7f
afc0b9e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -477,6 +477,16 @@ This event may reference roles or guild members that no longer exist in the guil | |
|
||
Sent when a channel relevant to the current user is deleted. The inner payload is a [channel](#DOCS_RESOURCES_CHANNEL/channel-object) object. | ||
|
||
#### Voice Channel Status Update | ||
|
||
Sent when the voice channel status changes. | ||
|
||
| Field | Type | Description | | ||
|----------|-----------|------------------------------| | ||
| id | snowflake | The channel id | | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this supposed to be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. it's just <- Dispatch [VOICE_CHANNEL_STATUS_UPDATE] :
{
"status": "123",
"id": "111...",
"guild_id": "490..."
} There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Alright, thank you! |
||
| guild_id | snowflake | The guild id | | ||
| status | ?string | The new voice channel status | | ||
|
||
#### Thread Create | ||
|
||
Sent when a thread is created, relevant to the current user, or when the current user is added to a thread. The inner payload is a [channel](#DOCS_RESOURCES_CHANNEL/channel-object) object. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason for this?