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

    Interface ResponsesAnswerPayload

    Contains the details of an answer for a specific question in a response

    interface ResponsesAnswerPayload {
        answer:
            | ResponsesDateAnswer
            | ResponsesOauthAnswer
            | ResponsesScaleAnswer
            | ResponsesStringAnswer
            | ResponsesStringArrayAnswer;
        createdAt: string;
        displayValue: string;
        responseId: string;
        updatedAt: string;
    }
    Index

    Properties

    The answer data. Type depends on the question type.

    createdAt: string

    The creation timestamp of the answer.

    displayValue: string

    The formatted answer value for display.

    responseId: string

    The response this answer belongs to.

    updatedAt: string

    The last updated timestamp of the answer.