@shortcut/client
    Preparing search index...

    Interface IterationLabelEntityListWrapper

    interface IterationLabelEntityListWrapper {
        $schema: string;
        current_items: number;
        current_page: number;
        entities: Label[];
        next_page_url?: string;
        total_items: number;
        total_pages: number;
    }
    Index

    Properties

    $schema: string

    The URI for the json-schema for this response.

    2048

    ^https?://.+$

    current_items: number

    The number of items on the current page.

    int64

    current_page: number

    The number of the current page.

    int64

    entities: Label[]

    The entities for this page.

    next_page_url?: string

    A URL to get the next page. Will be absent on the last page.

    2048

    ^https?://.+$

    total_items: number

    The number of total items across all pages.

    int64

    total_pages: number

    The total number of pages.

    int64