Skip to content

Series

Series

Bases: BaseModel

The Series object contains information for a series.

ATTRIBUTE DESCRIPTION
banner

TYPE: int

cover_id

ID to use as series cover.

TYPE: int

date_added

Date and time when the Series was added.

TYPE: datetime

date_modified

Date and time when the Series was last updated.

TYPE: datetime

description

Description of the Series.

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

first_issue_id

ID of the first Issue in the Series.

TYPE: int

id

Identifier used by League of Comic Geeks.

TYPE: int

is_enabled

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

language_id

TYPE: int

map_to_id

TYPE: int

publisher_id

The publisher id of the Series.

TYPE: int

publisher_name

The publisher name of the Series.

TYPE: str

publisher_slug

The publisher name slugged to be usable in a url.

TYPE: str

series_string

String showing the year period for this Series.

TYPE: str

title

Name / Title of the Series.

TYPE: str

title_sort

The sort name of the Series.

TYPE: str

type_id

TYPE: int

volume

Volume number.

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

year_begin

The year the Series started.

TYPE: int

year_end

The year the Series ended.

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