interface PersonalizeEvent {
    eventId?: string;
    eventType: string;
    properties: Record<string, unknown>;
    userId?: string;
}

Properties

eventId?: string
eventType: string
properties: Record<string, unknown>
userId?: string