Interface ProductSelectionProductPagedQueryResponse

interface ProductSelectionProductPagedQueryResponse {
    count: number;
    limit: number;
    offset: number;
    results: AssignedProductReference[];
    total?: number;
}

Properties

count: number

Actual number of results returned.

limit: number

Number of results requested.

offset: number

Number of elements skipped.

References to Products that are assigned to the ProductSelection.

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.