Interface AssignedProductSelectionPagedQueryResponse

interface AssignedProductSelectionPagedQueryResponse {
    count: number;
    limit: number;
    offset: number;
    results: AssignedProductSelection[];
    total?: number;
}

Properties

count: number

Actual number of results returned.

limit: number

Number of results requested.

offset: number

Number of elements skipped.

References to ProductSelection that are assigned to the Product.

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