ReadingList
AttributionSource
Bases: str, Enum
Enumeration of attribution sources for reading lists.
| ATTRIBUTE | DESCRIPTION |
|---|---|
CBRO |
Comic Book Reading Orders
|
CMRO |
Complete Marvel Reading Orders
|
CBH |
Comic Book Herald
|
CBT |
Comic Book Treasury
|
MG |
Marvel Guides
|
HTLC |
How To Love Comics
|
LOCG |
League of ComicGeeks
|
OTHER |
Other sources
|
BaseReadingList
Bases: BaseModel
A data model representing a reading list in list view.
| ATTRIBUTE | DESCRIPTION |
|---|---|
id |
The unique identifier of the reading list.
TYPE:
|
name |
The name of the reading list.
TYPE:
|
slug |
The slug for the reading list.
TYPE:
|
user |
The user who owns the reading list.
TYPE:
|
list_type |
The type of the reading list.
TYPE:
|
is_private |
Whether this list is private (only visible to the owner).
TYPE:
|
attribution_source |
Source where this reading list information was obtained.
TYPE:
|
average_rating |
The average rating of the reading list.
TYPE:
|
rating_count |
The number of ratings for the reading list.
TYPE:
|
modified |
The date and time when the reading list was last modified.
TYPE:
|
EventType
Bases: str, Enum
Enumeration of event types for reading lists.
| ATTRIBUTE | DESCRIPTION |
|---|---|
EVENT |
Event
|
STORY |
Story
|
CHARACTERS |
Characters
|
TEAMS |
Teams
|
MASTER |
Master
|
ReadingList
Bases: BaseReadingList
A data model representing a reading list in detailed view.
| ATTRIBUTE | DESCRIPTION |
|---|---|
desc |
The description of the reading list.
TYPE:
|
attribution_url |
URL of the specific page where this reading list was obtained.
TYPE:
|
items_url |
URL to the paginated items' endpoint.
TYPE:
|
resource_url |
URL of the reading list resource.
TYPE:
|
ReadingListItem
Bases: BaseModel
A data model representing an item in a reading list.
| ATTRIBUTE | DESCRIPTION |
|---|---|
id |
The unique identifier of the reading list item.
TYPE:
|
issue |
The issue associated with this reading list item.
TYPE:
|
order |
Position of this issue in the reading list.
TYPE:
|
issue_type |
The type of the issue.
TYPE:
|