KomgaPage_KomgaCollectionDto
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
Created timestamp (ISO 8601)
Whether this collection is filtered from the user's view
Collection unique identifier
Last modified timestamp (ISO 8601)
Collection name
Whether the collection is ordered
Series IDs in the collection
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": [
{
"createdDate": "string",
"filtered": true,
"id": "string",
"lastModifiedDate": "string",
"name": "string",
"ordered": true,
"seriesIds": [
"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
}