interface CustomerPagedSearchResponse {
    limit: number;
    offset: number;
    results: CustomerSearchResult[];
    total: number;
}

Properties

limit: number

Number of results requested.

offset: number

Number of elements skipped.

Search result containing the Customers matching the search query.

total: number

Total number of results matching the query.