getQuizNextQuestionCRT

suspend fun getQuizNextQuestionCRT(    quizId: String,     answers: List<List<String>>? = null,     quizVersionId: String? = null,     quizSessionId: String? = null,     sectionName: String? = null): QuizQuestionResponse

Return the next quiz question including options and attributes. This function should be called within a coroutine scope.

Example:

runBlocking {
launch {
try {
val answers = listOf(
listOf("1"),
listOf("1", "2"),
listOf("true"),
listOf("seen"),
)
val quizResults = constructorIo.getQuizNextQuestionCRT("quiz-id", answers, "version-id")
// Do something with quizResults
} catch (e: Exception) {
println(e)
}
}
}