SubmitAttemptResultDto
Backend-источник: feature.learningservice/Feature.LearningService/Nuget.LearningApiClient/Dto/QuizAttempt/SubmitAttemptResultDto.cs (feature.learningservice).
Поля
| Поле | Тип (TS) | Обязательное | Описание | Тип (C#) |
|---|---|---|---|---|
scorePercent | number | да | — | int |
isPassed | boolean | да | — | bool |
correctCount | number | да | — | int |
totalCount | number | да | — | int |
attemptsLeft | number | null | нет | — | int? |
proctoring | ProctoringResultDto | null | нет | — | ProctoringResultDto? |
Пример
json
{
"scorePercent": 0,
"isPassed": false,
"correctCount": 0,
"totalCount": 0,
"attemptsLeft": 0,
"proctoring": "<proctoringresultdto>"
}