Member Junction
    Preparing search index...

    Interface MeetingTimerSnapshot

    A snapshot of the timer the agent set (via the SetTimer tool), reported in the perception feed so the agent can pace the meeting ("two minutes left on this agenda item").

    interface MeetingTimerSnapshot {
        DurationSeconds: number;
        ElapsedSeconds: number;
        Expired: boolean;
        RemainingSeconds: number;
    }
    Index

    Properties

    DurationSeconds: number

    The total duration the timer was set for, in seconds.

    ElapsedSeconds: number

    Whole seconds elapsed since the timer was set (clamped to [0, DurationSeconds]).

    Expired: boolean

    Whether the timer has reached or passed its duration.

    RemainingSeconds: number

    Whole seconds remaining (clamped to [0, DurationSeconds]); 0 once the timer has expired.