interface MultiplayerVoiceRoom {
    bitrate: number;
    channels: 1 | 2;
    codec: MultiplayerVoiceCodec;
    connection_config: MultiplayerMetadata;
    created_at?: null | string;
    expires_at?: null | string;
    frame_duration_ms: 60 | 10 | 20 | 40;
    id: string;
    last_activity_at?: null | string;
    lobby_id?: null | string;
    max_participants: number;
    metadata: MultiplayerMetadata;
    moderation_enabled: boolean;
    owner_player_id: string;
    owner_user_id?: null | string;
    participant_count: number;
    participants?: MultiplayerVoiceParticipant[];
    provider: MultiplayerVoiceProvider;
    recording_allowed: boolean;
    region?: null | string;
    sample_rate: number;
    server_id?: null | string;
    state: MultiplayerVoiceState;
    title_id: string;
    topology: MultiplayerVoiceTopology;
    updated_at?: null | string;
}

Properties

bitrate: number
channels: 1 | 2
connection_config: MultiplayerMetadata
created_at?: null | string
expires_at?: null | string
frame_duration_ms: 60 | 10 | 20 | 40
id: string
last_activity_at?: null | string
lobby_id?: null | string
max_participants: number
moderation_enabled: boolean
owner_player_id: string
owner_user_id?: null | string
participant_count: number
recording_allowed: boolean
region?: null | string
sample_rate: number
server_id?: null | string
title_id: string
updated_at?: null | string

Generated using TypeDoc