Issue

Issue(**data: Any)

Bases: BaseModel

The Issue object contains information for an issue.

ATTRIBUTE DESCRIPTION
aliases

List of names used by the Issue, separated by ~\r\n.

TYPE: Optional[str]

alternative_images

List of different images associated with the Issue.

TYPE: List[AlternativeImageEntry]

api_url

Url to the resource in the Comicvine API.

TYPE: str

characters

List of characters in the Issue.

TYPE: List[GenericEntry]

concepts

List of concepts in the Issue.

TYPE: List[GenericEntry]

cover_date

Date on the cover of the Issue.

TYPE: Optional[date]

creators

List of creators in the Issue.

TYPE: List[CreatorEntry]

date_added

Date and time when the Issue was added.

TYPE: datetime

date_last_updated

Date and time when the Issue was last updated.

TYPE: datetime

deaths

List of characters who died in the Issue.

TYPE: List[GenericEntry]

description

Long description of the Issue.

TYPE: Optional[str]

first_appearance_characters

List of characters who first appear in the Issue.

TYPE: List[GenericEntry]

first_appearance_concepts

List of concepts which first appear in the Issue.

TYPE: List[GenericEntry]

first_appearance_locations

List of locations which first appear in the Issue.

TYPE: List[GenericEntry]

first_appearance_objects

List of objects which first appear in the Issue.

TYPE: List[GenericEntry]

first_appearance_story_arcs

List of story arcs which first appear in the Issue.

TYPE: List[GenericEntry]

first_appearance_teams

List of teams who first appear in the Issue.

TYPE: List[GenericEntry]

issue_id

Identifier used by Comicvine.

TYPE: int

image

Different sized images, posters and thumbnails for the Issue.

TYPE: ImageEntry

locations

List of locations in the Issue.

TYPE: List[GenericEntry]

name

Name/Title of the Issue.

TYPE: Optional[str]

number

The Issue number

TYPE: Optional[str]

objects

List of objects in the Issue.

TYPE: List[GenericEntry]

site_url

Url to the resource in Comicvine.

TYPE: str

store_date

Date the Issue went on sale on stores.

TYPE: Optional[date]

story_arcs

List of story arcs in the Issue.

TYPE: List[GenericEntry]

summary

Short description of the Issue.

TYPE: Optional[str]

teams

List of teams in the Issue.

TYPE: List[GenericEntry]

teams_disbanded

List of teams who disbanded in the Issue.

TYPE: List[GenericEntry]

volume

The volume the Issue is in.

TYPE: GenericEntry

Attributes

alias_list: List[str] property

List of aliases the Issue has used.

RETURNS DESCRIPTION
List[str]

List of aliases, split by ~\r\n

Functions

validate_date_fields(v: str) -> Optional[date]

Convert date fields to date or None.

PARAMETER DESCRIPTION
v

String value of the date fields in isoformat

TYPE: str

RETURNS DESCRIPTION
Optional[date]

date value of field or None

IssueEntry

Bases: BaseModel

The IssueEntry object contains information for an issue.

ATTRIBUTE DESCRIPTION
aliases

List of names used by the IssueEntry, separated by ~\r\n.

TYPE: Optional[str]

alternative_images

List of different images associated with the IssueEntry.

TYPE: List[AlternativeImageEntry]

api_url

Url to the resource in the Comicvine API.

TYPE: str

cover_date

Date on the cover of the IssueEntry.

TYPE: Optional[date]

date_added

Date and time when the IssueEntry was added.

TYPE: datetime

date_last_updated

Date and time when the IssueEntry was last updated.

TYPE: datetime

description

Long description of the IssueEntry.

TYPE: Optional[str]

issue_id

Identifier used by Comicvine.

TYPE: int

image

Different sized images, posters and thumbnails for the IssueEntry.

TYPE: ImageEntry

name

Name/Title of the IssueEntry.

TYPE: Optional[str]

number

The IssueEntry number.

TYPE: Optional[str]

site_url

Url to the resource in Comicvine.

TYPE: str

store_date

Date the IssueEntry went on sale on stores.

TYPE: Optional[date]

summary

Short description of the IssueEntry.

TYPE: Optional[str]

volume

The volume the IssueEntry is in.

TYPE: GenericEntry

Attributes

alias_list: List[str] property

List of aliases the Issue has used.

RETURNS DESCRIPTION
List[str]

List of aliases, split by ~\r\n

Functions

validate_date_fields(v: str) -> Optional[date]

Convert date fields to date or None.

PARAMETER DESCRIPTION
v

String value of the date fields in isoformat

TYPE: str

RETURNS DESCRIPTION
Optional[date]

date value of field or None