@videosdk.live/server-sdk
    Preparing search index...

    Interface Session

    A session: a single live occupancy of a room.

    interface Session {
        customRoomId?: string;
        end?: string | null;
        id: string;
        links?: ResourceLinks;
        participants?: Participant[];
        region?: string;
        roomId?: string;
        start?: string;
        status?: "ongoing" | "ended";
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    customRoomId?: string
    end?: string | null
    id: string
    participants?: Participant[]
    region?: string
    roomId?: string
    start?: string
    status?: "ongoing" | "ended"