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. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

Generated using TypeDoc