interface GatewayVoiceStateUpdateData {
    channel_id: null | string;
    guild_id: string;
    self_deaf: boolean;
    self_mute: boolean;
}

Properties

channel_id: null | string

ID of the voice channel client wants to join (null if disconnecting)

guild_id: string

ID of the guild

self_deaf: boolean

Is the client deafened

self_mute: boolean

Is the client muted