export interface RecommendationEvent { eventId?: number; event: string; jsonData: string; } export interface RecommendationInteraction { eventId: number; action: string; description: string; params: string; } export interface Recommendation { eventId: number; list: any[]; title: string; message: string; notificationType: string; options: string; sourceEvent: string; } export interface RecommendationAction { action: string; data: any; }