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