KomgaPage_KomgaReadListDto
Komga paginated response wrapper (Spring Data Page format)
This matches the exact structure Komic expects from Komga.
content object[]required
The content items for this page
Book IDs in the read list
Created timestamp (ISO 8601)
Whether this read list is filtered from the user's view
Read list unique identifier
Last modified timestamp (ISO 8601)
Read list name
Whether the read list is ordered
Read list summary/description
Whether the page is empty
Whether this is the first page
Whether this is the last page
Current page number (0-indexed)
Number of elements on this page
pageable objectrequired
Pageable information
Offset from start (page_number * page_size)
Current page number (0-indexed)
Page size (number of items per page)
Whether the pageable is paged (always true for paginated results)
sort objectrequired
Sort information
Whether the sort is empty
Whether the results are sorted in ascending or descending order
Whether the results are unsorted
Whether the pageable is unpaged (always false for paginated results)
Page size
sort objectrequired
Sort information
Whether the sort is empty
Whether the results are sorted in ascending or descending order
Whether the results are unsorted
Total number of elements across all pages
Total number of pages
{
"content": [
{
"bookIds": [
"string"
],
"createdDate": "string",
"filtered": true,
"id": "string",
"lastModifiedDate": "string",
"name": "string",
"ordered": true,
"summary": "string"
}
],
"empty": true,
"first": true,
"last": true,
"number": 0,
"numberOfElements": 0,
"pageable": {
"offset": 0,
"pageNumber": 0,
"pageSize": 0,
"paged": true,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"unpaged": true
},
"size": 0,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"totalElements": 0,
"totalPages": 0
}