@nycu-sdc/core-system-sdk
    Preparing search index...

    Interface ResponsesStringArrayAnswer

    Request model for submitting an individual answer

    interface ResponsesStringArrayAnswer {
        otherText?: string;
        questionId: string;
        questionType:
            | "SINGLE_CHOICE"
            | "MULTIPLE_CHOICE"
            | "DROPDOWN"
            | "DETAILED_MULTIPLE_CHOICE"
            | "RANKING";
        value: string[];
    }
    Index

    Properties

    otherText?: string

    The custom text entered for the 'Other' choice, if applicable.

    questionId: string

    The question being answered.

    questionType:
        | "SINGLE_CHOICE"
        | "MULTIPLE_CHOICE"
        | "DROPDOWN"
        | "DETAILED_MULTIPLE_CHOICE"
        | "RANKING"

    The type of the question being answered.

    value: string[]

    The answer value (format depends on questionType from questionId).