/** * This file was auto-generated by Fern from our API Definition. */ import * as WorkOS from "../../../.."; /** * @example * { * organizationID: "string", * event: { * action: "string", * occurredAt: "string", * actor: { * id: "string", * type: "string" * }, * targets: [{ * id: "string", * type: "string" * }], * context: { * location: "string" * } * } * } */ export interface CreateEventOpts { organizationID: string; event: WorkOS.AuditLogEventDto; }