interface ThreadNoteCreatedEventPayload {
    eventType: "thread.note_created";
    note: {
        createdAt: string;
        createdBy: InternalActor;
        deletedAt: null | string;
        deletedBy: null | InternalActor;
        id: string;
        markdown: null | string;
        text: string;
        timelineEntryId: string;
        updatedAt: string;
        updatedBy: InternalActor;
        [k: string]: unknown;
    };
    thread: Thread;
    [k: string]: unknown;
}

Indexable

[k: string]: unknown

Properties

Properties

eventType: "thread.note_created"
note: {
    createdAt: string;
    createdBy: InternalActor;
    deletedAt: null | string;
    deletedBy: null | InternalActor;
    id: string;
    markdown: null | string;
    text: string;
    timelineEntryId: string;
    updatedAt: string;
    updatedBy: InternalActor;
    [k: string]: unknown;
}

Type declaration

  • [k: string]: unknown
  • createdAt: string
  • createdBy: InternalActor
  • deletedAt: null | string
  • deletedBy: null | InternalActor
  • id: string
  • markdown: null | string
  • text: string
  • timelineEntryId: string
  • updatedAt: string
  • updatedBy: InternalActor
thread: Thread

Generated using TypeDoc