PaginatedResponse_SeriesDto
Generic paginated response wrapper
data object[]required
The data items for this page
Array [
bookCountinteger<int64>required
Example:
4createdAtstring<date-time>required
Example:
2024-01-01T00:00:00ZhasCustomCoverboolean | nullnullable
Example:
falseidstring<uuid>required
Example:
550e8400-e29b-41d4-a716-446655440002libraryIdstring<uuid>required
Example:
550e8400-e29b-41d4-a716-446655440000libraryNamestringrequired
Name of the library this series belongs to
Example:
Comicspathstring | nullnullable
Example:
/media/comics/Batman - Year Onepublisherstring | nullnullable
Example:
DC ComicsselectedCoverSourcestring | nullnullable
Example:
first_booksummarystring | nullnullable
Summary/description from series_metadata
Example:
The definitive origin story of Batman, following Bruce Wayne's first year as a vigilante.titlestringrequired
Series title from series_metadata
Example:
Batman: Year OnetitleSortstring | nullnullable
Sort title from series_metadata (for ordering)
Example:
batman year oneunreadCountinteger,null<int64>nullable
Example:
2updatedAtstring<date-time>required
Example:
2024-01-15T10:30:00Zyearinteger,null<int32>nullable
Example:
1987]
pageinteger<int64>required
Current page number (0-indexed)
Possible values: >= 0
Example:
0pageSizeinteger<int64>required
Number of items per page
Possible values: >= 0
Example:
20totalinteger<int64>required
Total number of items across all pages
Possible values: >= 0
Example:
150totalPagesinteger<int64>required
Total number of pages
Possible values: >= 0
Example:
8PaginatedResponse_SeriesDto
{
"data": [
{
"bookCount": 4,
"createdAt": "2024-01-01T00:00:00Z",
"hasCustomCover": false,
"id": "550e8400-e29b-41d4-a716-446655440002",
"libraryId": "550e8400-e29b-41d4-a716-446655440000",
"libraryName": "Comics",
"path": "/media/comics/Batman - Year One",
"publisher": "DC Comics",
"selectedCoverSource": "first_book",
"summary": "The definitive origin story of Batman, following Bruce Wayne's first year as a vigilante.",
"title": "Batman: Year One",
"titleSort": "batman year one",
"unreadCount": 2,
"updatedAt": "2024-01-15T10:30:00Z",
"year": 1987
}
],
"page": 0,
"pageSize": 20,
"total": 150,
"totalPages": 8
}