QuizAttemptDto
Backend-источник: feature.learningservice/Feature.LearningService/Nuget.LearningApiClient/Dto/QuizAttempt/QuizAttemptDto.cs (feature.learningservice).
Поля
| Поле | Тип (TS) | Обязательное | Описание | Тип (C#) |
|---|---|---|---|---|
id | number | да | — | int |
quizId | number | да | — | int |
userId | number | да | — | int |
attemptNumber | number | да | — | int |
scorePercent | number | null | нет | — | int? |
isPassed | boolean | null | нет | — | bool? |
startedAt | string | да | — | DateTimeOffset |
finishedAt | string | null | нет | — | DateTimeOffset? |
snapshotPassingScore | number | да | — | int |
snapshotMaxAttempts | number | да | — | int |
createDateTime | string | да | — | DateTimeOffset |
proctoring | ProctoringResultDto | null | нет | — | ProctoringResultDto? |
Пример
json
{
"id": 0,
"quizId": 0,
"userId": 0,
"attemptNumber": 0,
"scorePercent": 0,
"isPassed": false,
"startedAt": "2026-05-05T08:00:00Z",
"finishedAt": "2026-05-05T08:00:00Z",
"snapshotPassingScore": 0,
"snapshotMaxAttempts": 0,
"createDateTime": "2026-05-05T08:00:00Z",
"proctoring": "<proctoringresultdto>"
}