-
Notifications
You must be signed in to change notification settings - Fork 0
QuizSubmissionQuestion
Represents a submitted quiz question.
.client (Client)
The client that initiated the object.
.id (Number)
The ID of the submitted quiz question.
.quiz_question_id (Number)
The ID of the quiz question.
.description (String)
The description of the submitted quiz question.
.options (Array<(String)>)
An array of options for the question.
.image (???)
The image of the question.
.correct_answer (String)
The correct answer of the submitted quiz question.
.attempt1 (QuizSubmissionAttempt)
The first attempt made to answer the submitted quiz question.
.attempt2 (QuizSubmissionAttempt)
The second attempt made to answer the submitted quiz question.
.attempt3 (QuizSubmissionAttempt)
The third attempt made to answer the submitted quiz question.
Set a question attempt as started. Returns Promise<QuizSubmissionQuestion>
Answer a question attempt. Returns Promise<QuizSubmissionQuestion>