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

    Interface ResponsesAnswerResponse

    Response model for a single answer in question answers view

    interface ResponsesAnswerResponse {
        answer:
            | ResponsesAnswerJSON
            | ResponsesOauthAnswerJSON
            | ResponsesScaleAnswerJSON;
        createdAt: string;
        id: string;
        responseId: string;
        submittedBy: string;
        updatedAt: string;
    }
    Index

    Properties

    The answer data. Type depends on the question type.

    createdAt: string

    The creation timestamp of the answer.

    id: string

    The answer's unique identifier.

    responseId: string

    The response this answer belongs to.

    submittedBy: string

    The user who submitted this answer.

    updatedAt: string

    The last updated timestamp of the answer.