PagesResponse
The response wrapper returned by GET /comics/:id/pages. All pages for the comic are returned in a single response.
| Field | Type | Required | Description |
|---|---|---|---|
pages | ComicPage[] | required | All ComicPage objects for this comic, ordered by page number. |
total | integer | required | Total number of pages in the comic. |
Example
{
"pages": [
{ "id": 1, "comic_id": "my-comic", "page_number": 1, ... },
{ "id": 2, "comic_id": "my-comic", "page_number": 2, ... }
],
"total": 120
}