Interface QuizOptionsSubmissionResponseDTO

interface QuizOptionsSubmissionResponseDTO {
    checkedOptions: string[];
    id: string;
    isCompleted: boolean;
    points: number;
    submittedAt: number;
    type: QUIZ_OPTIONS;
}

Hierarchy (view full)

Properties

checkedOptions: string[]
id: string
isCompleted: boolean
points: number
submittedAt: number