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

    Interface ResponsesUpdateResponse

    Response model for updating a form response

    interface ResponsesUpdateResponse {
        answers: (
            | ResponsesDateAnswer
            | ResponsesScaleAnswer
            | ResponsesStringAnswer
            | ResponsesStringArrayAnswer
        )[];
        id: string;
        updatedAt: string;
    }
    Index

    Properties

    Properties

    The updated answer data.

    id: string

    The response's unique identifier.

    updatedAt: string

    The last updated timestamp of the response.