Type Alias QuizAttemptListResponseDto

QuizAttemptListResponseDto: {
    attempts: {
        attemptId: string;
        displayName: string | null;
        hasPendingManual: boolean;
        passed: boolean | null;
        profileId: string;
        score: number | null;
        scoringCompletedAt: string | null;
        submittedAt: string | null;
    }[];
    nextCursor: string | null;
}