interface MultiplayerLobby {
    created_at?: null | string;
    expires_at?: null | string;
    game_mode?: null | string;
    id: string;
    joinable: boolean;
    last_activity_at?: null | string;
    lobby_type: MultiplayerLobbyType;
    map_name?: null | string;
    max_members: number;
    member_count: number;
    members?: MultiplayerLobbyMember[];
    metadata: MultiplayerMetadata;
    owner_player_id: string;
    owner_user_id?: null | string;
    region?: null | string;
    server?: null | MultiplayerServer;
    server_id?: null | string;
    skill_band?: null | number;
    state: MultiplayerLobbyState;
    title_id: string;
    updated_at?: null | string;
}

Properties

created_at?: null | string
expires_at?: null | string
game_mode?: null | string
id: string
joinable: boolean
last_activity_at?: null | string
map_name?: null | string
max_members: number
member_count: number
owner_player_id: string
owner_user_id?: null | string
region?: null | string
server?: null | MultiplayerServer
server_id?: null | string
skill_band?: null | number
title_id: string
updated_at?: null | string

Generated using TypeDoc