Member Junction
    Preparing search index...
    interface FormattedQuizResult {
        answers?: FormattedAnswer[];
        attemptNumber: number;
        completedAt?: string;
        courseId: string;
        duration: number;
        durationText: string;
        id: string;
        maxScore: number;
        metrics?: QuizMetrics;
        passed: boolean;
        passingScore: number;
        percentage: number;
        questions?: FormattedQuestion[];
        quiz?: { id: string; questionCount?: number; title: string; type: string };
        quizId: string;
        score: number;
        startedAt?: string;
        user?: { email: string; id: string; name: string };
        userId: string;
    }
    Index

    Properties

    answers?: FormattedAnswer[]
    attemptNumber: number
    completedAt?: string
    courseId: string
    duration: number
    durationText: string
    id: string
    maxScore: number
    metrics?: QuizMetrics
    passed: boolean
    passingScore: number
    percentage: number
    questions?: FormattedQuestion[]
    quiz?: { id: string; questionCount?: number; title: string; type: string }
    quizId: string
    score: number
    startedAt?: string
    user?: { email: string; id: string; name: string }
    userId: string