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

    A single tracked work session for an assignment.

    Activity sessions record individual periods of work on an assignment, including start/end times, duration, and optional notes about what was accomplished.

    const session: ActivitySession = {
    id: 'session-001',
    startTime: '2024-03-15T09:00:00.000Z',
    endTime: '2024-03-15T10:30:00.000Z',
    duration: 90,
    notes: 'Completed initial research phase',
    };
    interface ActivitySession {
        duration: number;
        endTime: string | null;
        id: string;
        notes: string;
        startTime: string;
    }
    Index

    Properties

    duration: number

    Duration of the session in minutes

    endTime: string | null

    ISO timestamp when the session ended (null if still active)

    id: string

    Unique identifier for the session

    notes: string

    Notes about work performed during the session

    startTime: string

    ISO timestamp when the session started