Skip to content

Pull List

PullListAddSeries

Bases: BaseModel

A data model representing a request to add a series to the pull list.

ATTRIBUTE DESCRIPTION
series_id

The unique identifier of the series to add.

TYPE: int

PullListIssue

Bases: BaseModel

A data model representing an issue on the pull list.

ATTRIBUTE DESCRIPTION
id

The unique identifier of the issue.

TYPE: int

series

The series associated with the issue.

TYPE: BasicSeries

number

The issue number.

TYPE: str

issue

The full issue name/display string.

TYPE: str

cover_date

The cover date of the issue.

TYPE: date

store_date

The in-store date of the issue.

TYPE: date

image

The cover image URL.

TYPE: HttpUrl

modified

The date and time when the issue was last modified.

TYPE: datetime

PullListRead

Bases: BaseModel

A data model representing a user's pull list.

ATTRIBUTE DESCRIPTION
id

The unique identifier of the pull list.

TYPE: int

series_count

Number of series on the pull list.

TYPE: int

series_url

URL to retrieve the pull list series.

TYPE: str

modified

The date and time when the pull list was last modified.

TYPE: datetime

PullListSeries

Bases: BaseModel

A data model representing a series on the pull list.

ATTRIBUTE DESCRIPTION
id

The unique identifier of the pull list series entry.

TYPE: int

series

The series details.

TYPE: PullListSeriesDetail

added_on

The date and time when the series was added to the pull list.

TYPE: datetime

PullListSeriesDetail

Bases: BaseModel

A data model representing series details within a pull list entry.

ATTRIBUTE DESCRIPTION
id

The unique identifier of the series.

TYPE: int

name

The name of the series.

TYPE: str

year_began

The year the series began.

TYPE: int

year_end

The year the series ended.

TYPE: int

volume

The volume number of the series.

TYPE: int

modified

The date and time when the series was last modified.

TYPE: datetime