Issue
Credit
Bases: BaseModel
A class representing a credit with ID, creator, and role.
| ATTRIBUTE | DESCRIPTION |
|---|---|
id |
The ID of the credit.
TYPE:
|
creator |
The creator associated with the credit.
TYPE:
|
role |
The role of the credit.
TYPE:
|
CreditPost
Bases: BaseModel
A data model representing a credit to be created.
| ATTRIBUTE | DESCRIPTION |
|---|---|
issue |
The ID of the issue.
TYPE:
|
creator |
The ID of the creator.
TYPE:
|
role |
The IDs of the roles.
TYPE:
|
CreditPostResponse
Bases: CreditPost
A data model representing the response after creating a credit.
| ATTRIBUTE | DESCRIPTION |
|---|---|
id |
The ID of the credit.
TYPE:
|
issue |
The ID of the issue.
TYPE:
|
creator |
The ID of the creator.
TYPE:
|
role |
The IDs of the roles.
TYPE:
|
modified |
The date and time when the credit was modified.
TYPE:
|
BasicSeries
Bases: BaseModel
A class representing a basic series with name, volume, and year began.
| ATTRIBUTE | DESCRIPTION |
|---|---|
name |
The name of the series.
TYPE:
|
volume |
The volume of the series.
TYPE:
|
year_began |
The year the series began.
TYPE:
|
IssueSeries
Bases: BaseModel
A data model representing an issue series.
| ATTRIBUTE | DESCRIPTION |
|---|---|
id |
The unique identifier of the issue series.
TYPE:
|
name |
The name of the issue series.
TYPE:
|
sort_name |
The name used for sorting the issue series.
TYPE:
|
volume |
The volume number of the issue series.
TYPE:
|
year_began |
The year the issue's series began.
TYPE:
|
series_type |
The type of the issue series.
TYPE:
|
genres |
The genres associated with the issue series.
TYPE:
|
CommonIssue
Bases: BaseModel
A data model representing a common issue.
| ATTRIBUTE | DESCRIPTION |
|---|---|
id |
The unique identifier of the common issue.
TYPE:
|
number |
The number of the common issue.
TYPE:
|
cover_date |
The cover date of the common issue.
TYPE:
|
store_date |
The store date of the common issue.
TYPE:
|
foc_date |
The final order cutoff date of the issue.
TYPE:
|
image |
The image URL of the common issue.
TYPE:
|
cover_hash |
The hash value of the common issue cover.
TYPE:
|
modified |
The date and time when the common issue was last modified.
TYPE:
|
BaseIssue
Bases: CommonIssue
A data model representing a base issue that extends CommonIssue.
| ATTRIBUTE | DESCRIPTION |
|---|---|
issue_name |
The name of the base issue.
TYPE:
|
series |
The basic series associated with the base issue.
TYPE:
|
Issue
Bases: CommonIssue
A data model representing an issue that extends CommonIssue.
| ATTRIBUTE | DESCRIPTION |
|---|---|
publisher |
The publisher of the issue.
TYPE:
|
imprint |
The imprint of the issue or None.
TYPE:
|
series |
The series to which the issue belongs.
TYPE:
|
alt_number |
The alternative number of the issue.
TYPE:
|
collection_title |
The title of the issue collection.
TYPE:
|
story_titles |
The titles of the stories in the issue.
TYPE:
|
price |
The price of the issue.
TYPE:
|
price_currency |
The currency type for the price field.
TYPE:
|
rating |
The rating of the issue.
TYPE:
|
sku |
The stock keeping unit (SKU) of the issue.
TYPE:
|
isbn |
The International Standard Book Number (ISBN) of the issue.
TYPE:
|
upc |
The Universal Product Code (UPC) of the issue.
TYPE:
|
page_count |
The number of pages in the issue.
TYPE:
|
desc |
The description of the issue.
TYPE:
|
arcs |
The arcs associated with the issue.
TYPE:
|
credits |
The credits for the issue.
TYPE:
|
characters |
The characters featured in the issue.
TYPE:
|
teams |
The teams involved in the issue.
TYPE:
|
universes |
The universes related to the issue.
TYPE:
|
reprints |
The reprints of the issue.
TYPE:
|
variants |
The variants of the issue.
TYPE:
|
cv_id |
The Comic Vine ID of the issue.
TYPE:
|
gcd_id |
The Grand Comics Database ID of the issue.
TYPE:
|
resource_url |
The URL of the issue resource.
TYPE:
|
IssuePost
Bases: BaseModel
A data model representing an issue to be created.
| ATTRIBUTE | DESCRIPTION |
|---|---|
series |
The ID of the series to which the issue belongs.
TYPE:
|
number |
The number of the issue.
TYPE:
|
alt_number |
The alternative number of the issue.
TYPE:
|
title |
The collection title of the issue.
TYPE:
|
name |
The story titles of the issue.
TYPE:
|
cover_date |
The cover date of the issue.
TYPE:
|
store_date |
The store date of the issue.
TYPE:
|
foc_date |
The final order cutoff date of the issue.
TYPE:
|
price |
The price of the issue. Pass a plain Decimal for USD or a PricePost object for non-USD currencies (e.g. GBP).
TYPE:
|
rating |
The ID of the rating of the issue.
TYPE:
|
sku |
The SKU of the issue.
TYPE:
|
isbn |
The ISBN of the issue.
TYPE:
|
upc |
The UPC of the issue.
TYPE:
|
page |
The number of pages in the issue.
TYPE:
|
desc |
The description of the issue.
TYPE:
|
image |
The image URL of the issue.
TYPE:
|
arcs |
The IDs of the arcs associated with the issue.
TYPE:
|
characters |
The IDs of the characters featured in the issue.
TYPE:
|
teams |
The IDs of the teams involved in the issue.
TYPE:
|
universes |
The IDs of the universes related to the issue.
TYPE:
|
reprints |
The IDs of the reprints of the issue.
TYPE:
|
cv_id |
The Comic Vine ID of the issue.
TYPE:
|
gcd_id |
The Grand Comics Database ID of the issue.
TYPE:
|
IssuePostResponse
Bases: IssuePost
A data model representing the response from creating an issue.
| ATTRIBUTE | DESCRIPTION |
|---|---|
id |
The ID of the issue.
TYPE:
|
series |
The ID of the series to which the issue belongs.
TYPE:
|
number |
The number of the issue.
TYPE:
|
alt_number |
The alternative number of the issue.
TYPE:
|
title |
The collection title of the issue.
TYPE:
|
name |
The story titles of the issue.
TYPE:
|
cover_date |
The cover date of the issue.
TYPE:
|
store_date |
The store date of the issue.
TYPE:
|
foc_date |
The final order cutoff date of the issue.
TYPE:
|
price |
The price of the issue.
TYPE:
|
rating |
The ID of the rating of the issue.
TYPE:
|
sku |
The SKU of the issue.
TYPE:
|
isbn |
The ISBN of the issue.
TYPE:
|
upc |
The UPC of the issue.
TYPE:
|
page |
The number of pages in the issue.
TYPE:
|
desc |
The description of the issue.
TYPE:
|
image |
The image URL of the issue.
TYPE:
|
arcs |
The IDs of the arcs associated with the issue.
TYPE:
|
characters |
The IDs of the characters featured in the issue.
TYPE:
|
teams |
The IDs of the teams involved in the issue.
TYPE:
|
universes |
The IDs of the universes related to the issue.
TYPE:
|
reprints |
The IDs of the reprints of the issue.
TYPE:
|
cv_id |
The Comic Vine ID of the issue.
TYPE:
|
gcd_id |
The Grand Comics Database ID of the issue.
TYPE:
|
resource_url |
The URL of the issue resource.
TYPE:
|