Hiyve Components - v1.0.0
    Preparing search index...

    A completed or active session (historical meeting record).

    interface Session {
        active: boolean;
        id: string;
        participantCount: number;
        roomName: string;
        timeEnded: string | null;
        timeStarted: string | null;
    }
    Index

    Properties

    active: boolean

    Whether the session is currently active

    id: string

    Unique session identifier

    participantCount: number

    Number of participants in the session

    roomName: string

    Room name where the session took place

    timeEnded: string | null

    When the session ended (ISO string), null if still active

    timeStarted: string | null

    When the session started (ISO string)