@archastro/sdk
    Preparing search index...

    Interface SolutionListResponse

    A paginated collection of Solution summaries, with page metadata for navigating the result set.

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

    Properties

    Array of Solution summary objects for the current page, in the order returned by the query.

    has_next: boolean

    true when a subsequent page exists; false when this is the last page.

    has_prev: boolean

    true when a preceding page exists; false when this is the first page.

    page: number

    1-based index of the current page.

    page_size: number

    Maximum number of results included per page.

    total_entries: number

    Total number of Solutions matching the query after deduplication by solution_id across owner scopes.

    total_pages: number

    Total number of pages available at the current page_size.