UpdateQuestionDto
Backend-источник: feature.learningservice/Feature.LearningService/Nuget.LearningApiClient/Dto/Quiz/Requests/UpdateQuestionDto.cs (feature.learningservice).
Поля
| Поле | Тип (TS) | Обязательное | Описание | Тип (C#) |
|---|---|---|---|---|
text | string | null | нет | — | string? |
type | QuestionTypeDto | null | нет | — | QuestionTypeDto? |
order | number | null | нет | — | int? |
options | UpdateAnswerOptionDto[] | да | — | List<UpdateAnswerOptionDto>? |
Пример
json
{
"text": "string",
"type": "<questiontypedto>",
"order": 0,
"options": []
}