Series

@Serializable
data class Series(val genres: List<GenericItem> = emptyList(), val id: Long, val name: String, val seriesType: GenericItem, val sortName: String, val volume: Int, val yearBegan: Int)

A data model representing an issue series.

Constructors

Link copied to clipboard
constructor(genres: List<GenericItem> = emptyList(), id: Long, name: String, seriesType: GenericItem, sortName: String, volume: Int, yearBegan: Int)

Properties

Link copied to clipboard

The genres associated with the series.

Link copied to clipboard
val id: Long

The unique identifier of the series.

Link copied to clipboard

The name of the series.

Link copied to clipboard

The type of series.

Link copied to clipboard

The name used for sorting the series.

Link copied to clipboard
val volume: Int

The volume number of the series.

Link copied to clipboard

The year the series began.