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