UpdateQuizDto
Backend-источник: feature.learningservice/Feature.LearningService/Nuget.LearningApiClient/Dto/Quiz/Requests/UpdateQuizDto.cs (feature.learningservice).
Поля
| Поле | Тип (TS) | Обязательное | Описание | Тип (C#) |
|---|---|---|---|---|
id | number | да | — | — |
courseId | number | null | нет | — | int? |
title | string | null | нет | — | string? |
passingScorePercent | number | null | нет | — | int? |
maxAttempts | number | null | нет | — | int? |
requireRecording | boolean | null | нет | — | bool? |
requireVerification | boolean | null | нет | — | bool? |
proctorMetrics | string[] | да | — | List<string>? |
proctorThreshold | number | null | нет | — | double? |
proctorTimeoutMinutes | number | null | нет | — | int? |
Пример
json
{
"id": 0,
"courseId": 0,
"title": "string",
"passingScorePercent": 0,
"maxAttempts": 0,
"requireRecording": false,
"requireVerification": false,
"proctorMetrics": [],
"proctorThreshold": 0,
"proctorTimeoutMinutes": 0
}