Series

@Serializable
data class Series(val associated: List<Series.Associated> = emptyList(), val comicvineId: Long? = null, val description: String? = null, val genres: List<GenericItem> = emptyList(), val grandComicsDatabaseId: Long? = null, val id: Long, val imprint: GenericItem? = null, val issueCount: Int, val modified: Instant, val name: String, val publisher: GenericItem, val resourceUrl: String, val seriesType: GenericItem, val status: String, val sortName: String, val volume: Int, val yearBegan: Int, val yearEnd: Int? = null)

A data model representing a series.

Constructors

Link copied to clipboard
constructor(associated: List<Series.Associated> = emptyList(), comicvineId: Long? = null, description: String? = null, genres: List<GenericItem> = emptyList(), grandComicsDatabaseId: Long? = null, id: Long, imprint: GenericItem? = null, issueCount: Int, modified: Instant, name: String, publisher: GenericItem, resourceUrl: String, seriesType: GenericItem, status: String, sortName: String, volume: Int, yearBegan: Int, yearEnd: Int? = null)

Types

Link copied to clipboard
@Serializable
data class Associated(val id: Long, val name: String)

A data model representing an associated series.

Properties

Link copied to clipboard

The associated series.

Link copied to clipboard
val comicvineId: Long? = null

The Comic Vine ID of the series.

Link copied to clipboard
@Serializable(with = NullableStringSerializer::class)
val description: String? = null

The description of the series.

Link copied to clipboard

The genres associated with the series.

Link copied to clipboard

The Grand Comics Database ID of the series.

Link copied to clipboard
val id: Long

The unique identifier of the series.

Link copied to clipboard
val imprint: GenericItem? = null

The imprint of the series or None.

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

The publisher of the series.

Link copied to clipboard

The URL of the series resource.

Link copied to clipboard

The type of series.

Link copied to clipboard

The name used for sorting the series.

Link copied to clipboard

The status 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.

Link copied to clipboard
val yearEnd: Int? = null

The year the series ended.