import { ActivityType } from "./enums/activity-type.enum"; export interface Lead { id: string; name: string; email: string; phone: string; personaType: string; purpose: ActivityType; additionalInfo: LeadAdditionalInfo[]; temporaryInfo: LeadAdditionalInfo[]; fileName: string; fileType: string; fileBase64: string; subject: string; externalLinks: Map; personaCreated: boolean; personaUpdated: boolean; read: boolean; leadType: string; module: LeadModule; createdAt: Date; digitalResume: any; hasInternalComments: boolean; initialInternalComment: string; } export interface LeadModule { leadModule: string; leadModuleId: string; } export interface LeadAdditionalInfo { sectionName: string; info: Map; }