@ukkidney/ukrdc-axios-ts
    Preparing search index...

    Interface SurveyQuestionSchema

    Information about a single survey question

    interface SurveyQuestionSchema {
        id: string;
        questionGroup?: string | null;
        questionType?: string | null;
        questiontypecode: string;
        response: string;
        responseText?: string | null;
    }
    Index
    id: string

    Question ID

    questionGroup?: string | null
    questionType?: string | null
    questiontypecode: string

    Question type code

    response: string

    Question response

    responseText?: string | null