summary refs log tree commit diff
path: root/dist/models/VoiceState.d.ts
blob: 607d5509d2e4c2425d28c75b1ff1ddd71da5c63e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
export interface VoiceState {
    guild_id?: bigint;
    channel_id: bigint;
    user_id: bigint;
    session_id: string;
    deaf: boolean;
    mute: boolean;
    self_deaf: boolean;
    self_mute: boolean;
    self_stream?: boolean;
    self_video: boolean;
    suppress: boolean;
}