interface ProductsInStorePagedQueryResponse {
    count: number;
    limit: number;
    offset: number;
    results: ProductSelectionAssignment[];
    total?: number;
}

Properties

count: number

Actual number of results returned.

limit: number

Number of results requested.

offset: number

Number of elements skipped.

ProductSelectionAssignments matching the query.

total?: number

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.