Room

interface IRoom {
    bg_file_path?: string;
    created_at: string;
    custom_slug?: string;
    id: number;
    is_public: boolean;
    name: string;
    participants: IRoomParticipant[];
    passcode: string;
    slug: string;
    updated_at: string;
    user: IUser;
    settings: IRoomSettings;
}

Properties

bg_file_path?: string
created_at: string
custom_slug?: string
id: number
is_public: boolean
name: string
participants: IRoomParticipant[]
passcode: string
slug: string
updated_at: string
user: IUser
settings: IRoomSettings

Generated using TypeDoc