BasicSeries

@Serializable
data class BasicSeries(val id: Long, val issueCount: Int, val modified: Instant, val name: String, val volume: Int, val yearBegan: Int)

A data model representing a basic series.

Constructors

Link copied to clipboard
constructor(id: Long, issueCount: Int, modified: Instant, name: String, volume: Int, yearBegan: Int)

Properties

Link copied to clipboard
val id: Long

The unique identifier of the series.

Link copied to clipboard

The number of issues in the series.

Link copied to clipboard
val modified: Instant

The date and time when the series was last modified.

Link copied to clipboard

The name of the series.

Link copied to clipboard
val volume: Int

The volume number of the series.

Link copied to clipboard

The year the series began.