@runloop/api-client - v1.18.1
    Preparing search index...

    Interface ObjectListView

    A paginated list of Objects.

    interface ObjectListView {
        has_more: boolean;
        objects: ObjectView[];
        total_count?: number | null;
    }
    Index

    Properties

    has_more: boolean

    True if there are more results available beyond this page.

    objects: ObjectView[]

    List of Object entities.

    total_count?: number | null

    Total number of Objects across all pages.