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

    Interface FormsHighlightResponse

    Response model for a form's highlight question statistics. When no highlight is configured, questionId is null and all other fields are null or empty.

    interface FormsHighlightResponse {
        choices: FormsHighlightChoice[];
        displayTitle: string | null;
        questionId: string | null;
        questionTitle: string | null;
    }
    Index

    Properties

    Response counts per choice option. Empty array if no highlight is configured.

    displayTitle: string | null

    The display title shown on the dashboard. Equals stored custom title if set, otherwise falls back to questionTitle. Null if no highlight is configured.

    questionId: string | null

    The highlighted question's unique identifier. Null if no highlight is configured.

    questionTitle: string | null

    The current title of the highlighted question, fetched from the question. Null if no highlight is configured.