interface ThreadNoteCreatedEventPayload {
    eventType: "thread.note_created";
    note: {
        createdAt: string;
        createdBy: InternalActor;
        deletedAt: NullableDatetime;
        deletedBy: NullableInternalActor;
        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: NullableDatetime;
    deletedBy: NullableInternalActor;
    id: string;
    markdown: null | string;
    text: string;
    timelineEntryId: string;
    updatedAt: string;
    updatedBy: InternalActor;
    [k: string]: unknown;
}

Type declaration

thread: Thread