Creating Plot Twists
    Preparing search index...

    Type Alias Note

    Note: ActivityCommon & {
        key: string | null;
        activity: Activity;
        content: string | null;
        links: ActivityLink[] | null;
    }

    Represents a note within an activity.

    Notes contain the detailed content (note text, links) associated with an activity. They are always ordered by creation time within their parent activity.

    Type Declaration

    • key: string | null

      Unique identifier for the note within its activity. Can be used to upsert without knowing the id. For example, "description" could identify the description note for a Jira issue.

    • activity: Activity

      The parent activity this note belongs to

    • content: string | null

      Primary content for the note (markdown)

    • links: ActivityLink[] | null

      Array of interactive links attached to the note