Member Junction
    Preparing search index...

    One entry in the hand-raise queue: who raised, and WHEN (so the queue preserves raise order and the perception feed can report how long each person has been waiting).

    interface HandRaiseQueueEntry {
        DisplayName?: string;
        ParticipantId: string;
        RaisedAtMs: number;
    }
    Index

    Properties

    DisplayName?: string

    Their display name at raise time (for a human-readable queue in the perception feed).

    ParticipantId: string

    The participant who raised their hand.

    RaisedAtMs: number

    Epoch-ms when the hand was raised — drives queue ordering and wait-time reporting.