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

    Interface ViewsViewResponse

    Response model for a single form view.

    interface ViewsViewResponse {
        columns: ViewsColumn[];
        createdAt: string;
        id: string;
        locked: boolean;
        order: number;
        title: string;
        updatedAt: string;
    }
    Index

    Properties

    columns: ViewsColumn[]

    The columns of the filters.

    createdAt: string

    The creation timestamp of the view.

    id: string

    The view's unique identifier.

    locked: boolean

    Whether this view is locked from editing.

    order: number

    The order of the current view among all views. Views are ordered in ascending order based on this field.

    title: string

    The display title of the view.

    updatedAt: string

    The last updated timestamp of the view.