Paging Result Meta
data class PagingResultMeta(val numberOfRecords: Int?, val limit: Int?, val offset: Int?, val page: Int?)
Data class containing paging information regarding the returned records, when response is paginated. The input for paginated query contains two parameters:
limit - Тhe number of records to return. Defaults to 10 and maximum is 50.
offset - Тhe starting position of the response, where 0 is the first record. Default = 0.
The total number of records is not returned, to prevent queries spanning on all records. If numberOfRecords is smaller than limit, this means no further pages are available. On request of offset beyond the last record, the returned numberOfRecords is 0. The number of previous pages can be calculated by dividing offset by limit.