Skip to content

Generic

ComicFormat

Bases: Enum

CoverType

Bases: IntEnum

GenericComic(**data: Any)

Bases: BaseModel

The GenericIssue object contains the base for related/link issues.

ATTRIBUTE DESCRIPTION
count_pulls

TYPE: int

cover

TYPE: int

date_foc

The date on the Front of Cover

TYPE: Annotated[date | None, BeforeValidator(validate_date)]

date_collected

TYPE: Annotated[date | None, BeforeValidator(validate_date)]

date_modified

Date and time when the Issue was last updated.

TYPE: datetime

date_release

The date the Issue was released.

TYPE: date

description

Description of the Issue.

TYPE: Annotated[str | None, BeforeValidator(validate_str)]

format

Type of Issue.

TYPE: ComicFormat

id

Identifier used by League of Comic Geeks.

TYPE: int

is_enabled

TYPE: Annotated[bool, Field(alias=enabled), BeforeValidator(validate_bool)]

is_variant

Issue has been marked as Variant.

TYPE: Annotated[bool, Field(alias=variant), BeforeValidator(validate_bool)]

parent_id

If it is a variant Issue, id of the original Issue, else None.

TYPE: Annotated[int | None, BeforeValidator(validate_int)]

parent_title

If it is a variant Issue, title of the original Issue, else None.

TYPE: Annotated[str | None, BeforeValidator(validate_str)]

price

Price of the Issue.

TYPE: Annotated[Decimal | None, BeforeValidator(validate_decimal)]

publisher_id

The publisher id of the Issue.

TYPE: int

publisher_name

The publisher name of the Issue.

TYPE: str

series_begin

The year the Series started.

TYPE: int

series_end

The year the Series ended.

TYPE: Annotated[int | None, BeforeValidator(validate_int)]

series_id

Identifier used by League of Comic Geeks.

TYPE: int

series_name

Name / Title of the Series.

TYPE: str

series_volume

Series volume number.

TYPE: Annotated[int | None, BeforeValidator(validate_int)]

title

Name/Title of the Issue.

TYPE: str

GenericCover(**data: Any)

Bases: GenericComic

The GenericCover object extends GenericIssue by including the type of cover used.

ATTRIBUTE DESCRIPTION
cover_type

TYPE: CoverType