@archastro/sdk
    Preparing search index...

    Interface SolutionInstanceListResponse

    A forward cursor-paginated page of customer solution instances.

    interface SolutionInstanceListResponse {
        after_cursor?: string;
        before_cursor?: string;
        data: SolutionInstance[];
        has_more: boolean;
    }
    Index

    Properties

    after_cursor?: string

    Opaque cursor for the next page. null when this is the final page.

    before_cursor?: string

    Always null; this endpoint supports forward pagination only.

    Customer solution instances in stable customer-key order.

    has_more: boolean

    Whether another page exists after this one.