@archastro/sdk
    Preparing search index...

    Interface CustomObjectListResponse

    A paginated page of custom objects returned by a list operation. Use the pagination fields to navigate through result sets.

    interface CustomObjectListResponse {
        data: CustomObject[];
        has_next: boolean;
        has_prev: boolean;
        page: number;
        page_size: number;
        total_entries: number;
        total_pages: number;
    }
    Index

    Properties

    data: CustomObject[]

    Array of custom objects for the current page.

    has_next: boolean

    true if a subsequent page of results exists; false if this is the last page.

    has_prev: boolean

    true if a preceding page of results exists; false if this is the first page.

    page: number

    The current page number (1-indexed).

    page_size: number

    Maximum number of results returned per page.

    total_entries: number

    Total number of custom objects matching the query across all pages.

    total_pages: number

    Total number of pages available for the current query.