@theredspace/spp-client
    Preparing search index...

    Interface HistoryNotes

    Approval history notes for envelopes or timesheets. Read-only (supports equal-to reads only). :contentReference[oaicite:5]{index=5}:contentReference[oaicite:6]{index=6}

    interface HistoryNotes {
        action: "S" | "P" | "A" | "R" | "U";
        date: string;
        id: string;
        notes?: string;
        parentid: string;
        type: "Envelope" | "TimeSheet";
    }
    Index

    Properties

    action: "S" | "P" | "A" | "R" | "U"

    Approval action: 'S' | 'P' | 'A' | 'R' | 'U'

    date: string

    [Read-only] When the note was recorded

    id: string

    [Read-only] Unique ID

    notes?: string

    Notes text

    parentid: string

    Parent object ID (envelope or timesheet)

    type: "Envelope" | "TimeSheet"

    Object type: 'Envelope' | 'TimeSheet'