SurveyAuthoringBodyDto: {
    allowResubmit?: boolean;
    description?: string | null;
    isAnonymous?: boolean;
    questions: {
        attachmentFileIds?: string[];
        description?: string;
        id?: string;
        isRequired?: boolean;
        options?: {
            attachmentFileIds?: string[];
            id?: string;
            isEtc?: boolean;
            label: string;
        }[];
        scaleMax?: number;
        scaleMaxLabel?: string;
        scaleMin?: number;
        scaleMinLabel?: string;
        title: string;
        type:
            | "SHORT_TEXT"
            | "LONG_TEXT"
            | "SINGLE_SELECT"
            | "MULTI_SELECT"
            | "DROPDOWN"
            | "LINEAR_SCALE";
    }[];
}