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

    Interface ObjectListView

    A paginated list of Objects.

    interface ObjectListView {
        has_more: boolean;
        objects: ObjectView[];
        remaining_count: number;
        total_count: number;
    }
    Index

    Properties

    has_more: boolean

    True if there are more results available beyond this page.

    objects: ObjectView[]

    List of Object entities.

    remaining_count: number

    Number of Objects remaining after this page.

    total_count: number

    Total number of Objects across all pages.