PagedResult Data Type
- Abstract Type
| name | data type | constraints | description |
|---|---|---|---|
| count | number | required int | The total number of results. If this number exceeds the limit used, make another query with offset to fetch the additional results. |
| offset | number | required int | The offset used in the query |
| limit | number | required int | The limit used in the query. |
Example
{
"count" : 10,
"offset" : 0,
"limit" : 25
}