Interface RawLobby

interface RawLobby {
    application_id: string;
    id: string;
    linked_channel?: RawGuildChannel;
    members: RawLobbyMember[];
    metadata?: null | Record<string, string>;
}

Properties

application_id: string
id: string
linked_channel?: RawGuildChannel
members: RawLobbyMember[]
metadata?: null | Record<string, string>