Creator

@Serializable
data class Creator(val alias: List<String> = emptyList(), val birth: LocalDate? = null, val comicvineId: Long? = null, val death: LocalDate? = null, val description: String? = null, val grandComicsDatabaseId: Long? = null, val id: Long, val image: String? = null, val modified: Instant, val name: String, val resourceUrl: String)

A data model representing a creator.

Constructors

Link copied to clipboard
constructor(alias: List<String> = emptyList(), birth: LocalDate? = null, comicvineId: Long? = null, death: LocalDate? = null, description: String? = null, grandComicsDatabaseId: Long? = null, id: Long, image: String? = null, modified: Instant, name: String, resourceUrl: String)

Properties

Link copied to clipboard

The aliases of the creator.

Link copied to clipboard
val birth: LocalDate? = null

The birthdate of the creator.

Link copied to clipboard
val comicvineId: Long? = null

The Comic Vine ID of the creator.

Link copied to clipboard
val death: LocalDate? = null

The death date of the creator.

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

The description of the creator.

Link copied to clipboard

The Grand Comics Database ID of the creator.

Link copied to clipboard
val id: Long

The unique identifier of the resource.

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

The image URL of the creator.

Link copied to clipboard

The date and time when the resource was last modified.

Link copied to clipboard

The name of the resource.

Link copied to clipboard

The URL of the creator resource.