Interface QuestionInfo

interface QuestionInfo {
    question_id: string;
    text: string;
    text_cs?: null | string;
    answer_type?: string;
    options?: { value: string; label?: string }[];
    targets?: string[];
    is_red_flag?: boolean;
    branch_id?: null | string;
}

Properties

question_id: string
text: string
text_cs?: null | string
answer_type?: string
options?: { value: string; label?: string }[]
targets?: string[]
is_red_flag?: boolean
branch_id?: null | string