RBWCM-SDK Documentation - v1.1.0
    Preparing search index...

    Interface Note

    Raw note data structure as returned by the backend API.

    interface Note {
        content: string;
        createdAt: Date;
        id: number;
        staffer: string | null;
        updatedAt: Date;
        userId: number;
    }
    Index

    Properties

    content: string

    The content of the note.

    createdAt: Date

    Timestamp of when the note was created.

    id: number

    The unique internal database identifier.

    staffer: string | null

    The ID of the staffer the user is currently associated with, or null if solo.

    updatedAt: Date

    Timestamp of the last time the note was updated.

    userId: number

    The ID of the user to whom the note belongs.