/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; export interface GenericEvent extends Flatfile.BaseEvent { id: Flatfile.EventId; /** Date the event was created */ createdAt: Date; /** Date the event was deleted */ deletedAt?: Date; /** Date the event was acknowledged */ acknowledgedAt?: Date; /** The actor (user or system) who acknowledged the event */ acknowledgedBy?: string; payload: Record; }