interface MultiplayerVoiceParticipant {
    created_at?: null | string;
    deafened: boolean;
    display_name?: null | string;
    expires_at?: null | string;
    id: string;
    joined_at?: null | string;
    last_heartbeat_at?: null | string;
    last_sequence: number;
    left_at?: null | string;
    metadata: MultiplayerMetadata;
    muted: boolean;
    player_id: string;
    speaking: boolean;
    status: MultiplayerVoiceParticipantStatus;
    updated_at?: null | string;
    user_id?: null | string;
    voice_room_id: string;
}

Properties

created_at?: null | string
deafened: boolean
display_name?: null | string
expires_at?: null | string
id: string
joined_at?: null | string
last_heartbeat_at?: null | string
last_sequence: number
left_at?: null | string
muted: boolean
player_id: string
speaking: boolean
updated_at?: null | string
user_id?: null | string
voice_room_id: string

Generated using TypeDoc