Skip to content

CreateQuizDto

← Learning DTO

Backend-источник: feature.learningservice/Feature.LearningService/Nuget.LearningApiClient/Dto/Quiz/Requests/CreateQuizDto.cs (feature.learningservice).

Поля

ПолеТип (TS)ОбязательноеОписаниеТип (C#)
courseIdnumberдаint
titlestringдаstring
passingScorePercentnumberдаint
maxAttemptsnumberдаint
requireRecordingbooleanдаbool
requireVerificationbooleanдаbool
proctorMetricsstring[]даList<string>?
proctorThresholdnumber | nullнетdouble?
proctorTimeoutMinutesnumber | nullнетint?

Пример

json
{
  "courseId": 0,
  "title": "string",
  "passingScorePercent": 0,
  "maxAttempts": 0,
  "requireRecording": false,
  "requireVerification": false,
  "proctorMetrics": [],
  "proctorThreshold": 0,
  "proctorTimeoutMinutes": 0
}