interface IGetParticipantsOverviewResponse { session: number; total: number; max: number; participants: { name: string | null; joined: Date | null; left: Date | null; externalId: string | null; }[]; } export default IGetParticipantsOverviewResponse;