PagedResponseMetadata Data Type

Metadata of a PagedResponse.

  • limit – Maximum number of items per page as requested by the client. null indicates that no limit was applied and all matching items are returned.
  • offset – Zero-based starting position of this page within the total result set.
  • totalCount – Total number of items matching the applied filters, regardless of pagination.

Properties
name data type constraints description
limit number  
offset number required int
totalCount number required long

Example

{
  "limit" : 12345,
  "offset" : 12345,
  "totalCount" : 12345
}