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

    Interface FormsQuestionResponse

    Response model for the detailed structure of a question.

    interface FormsQuestionResponse {
        choices?: FormsChoice[];
        createdAt: string;
        description: string;
        id: string;
        oauthConnect?: AuthOAuthProviders;
        required: boolean;
        scale?: FormsScaleOption;
        sectionId: string;
        sourceId?: string;
        title: string;
        type: FormsQuestionTypes;
        updatedAt: string;
        uploadFile?: FormsUploadFileOption;
    }
    Index

    Properties

    choices?: FormsChoice[]

    Available choice options for single_choice, multiple_choice, dropdown, and ranking questions.

    createdAt: string

    The creation timestamp of the question.

    description: string

    More details of this question.

    id: string

    The question's unique identifier.

    oauthConnect?: AuthOAuthProviders

    Available options for OAuth connect questions.

    required: boolean

    Whether the question is required to answer or not.

    Available options for linear scale and rating questions.

    sectionId: string

    The section's id that the question belongs to.

    sourceId?: string

    If set, choices are dynamically generated from answers to this question.

    title: string

    What is the question.

    The type of the question.

    updatedAt: string

    The updated timestamp of the question.

    Available options for file upload questions.