Interface JSONLobby

interface JSONLobby {
    applicationID: string;
    createdAt: number;
    id: string;
    linkedChannel?: JSONGuildChannel | Uncached;
    members: JSONLobbyMember[];
    metadata?: null | Record<string, string>;
}

Hierarchy (view full)

Properties

applicationID: string
createdAt: number
id: string
linkedChannel?: JSONGuildChannel | Uncached
members: JSONLobbyMember[]
metadata?: null | Record<string, string>