@dvelop-sdk
    Preparing search index...

    Interface GetBoEntitiesResultPage<E>

    Page of a searchResult. There might be more than one page.

    interface GetBoEntitiesResultPage<E = any> {
        getNextPage?: () => Promise<GetBoEntitiesResultPage<E>>;
        value: E[];
    }

    Type Parameters

    • E = any
    Index

    Properties

    Properties

    getNextPage?: () => Promise<GetBoEntitiesResultPage<E>>

    Function that returns the next page. Undefined if there is none.

    value: E[]

    Array of entities found