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

    Interface UnitUserForm

    Response model for listing user forms with status

    interface UnitUserForm {
        allowEditResponse: boolean;
        deadline: string;
        id: string;
        responseIds: string[];
        status: UnitUserFormStatus;
        title: string;
    }
    Index

    Properties

    allowEditResponse: boolean

    Whether the user can edit their responses to the form. This is true if the form is still open and the user has already started a response, allowing them to continue editing until the deadline.

    deadline: string

    The deadline of the form

    id: string

    The unique identifier of the form

    responseIds: string[]

    The user's response IDs for this form. Always present; empty when there are no responses. Order matches the backend list when aggregating the caller's responses (append order per form).

    The completion status of the form for the current user

    title: string

    The title of the form