interface StandalonePricePagedQueryResponse {
    count: number;
    limit: number;
    offset: number;
    results: StandalonePrice[];
    total?: number;
}

Properties

count: number

Actual number of results returned.

limit: number

Number of requested results.

offset: number

Offset supplied by the client or server default. It is the number of elements skipped, not a page number.

results: StandalonePrice[]

StandalonePrices matching the query.

total?: number

Total number of results matching the query. This number is an estimation that is not strongly consistent. This field is returned by default. For improved performance, calculating this field can be deactivated by using the query parameter withTotal=false. When the results are filtered with a Query Predicate, total is subject to a limit.

Generated using TypeDoc