Type Alias SurveyDetailDto
SurveyDetailDto: {
allowResubmit: boolean;
description: string | null;
isAnonymous: boolean;
questions: {
attachments: {
fileId: string;
url: string;
}[];
description: string | null;
id: string;
isRequired: boolean;
options: {
attachments: {
fileId: string;
url: string;
}[];
id: string;
isEtc: boolean;
label: string;
}[];
scaleMax: number | null;
scaleMaxLabel: string | null;
scaleMin: number | null;
scaleMinLabel: string | null;
title: string;
type:
| "SHORT_TEXT"
| "LONG_TEXT"
| "SINGLE_SELECT"
| "MULTI_SELECT"
| "DROPDOWN"
| "LINEAR_SCALE";
}[];
version: number;
}