BaseItemPerson

data class BaseItemPerson(val name: String? = null, val id: UUID, val role: String? = null, val type: PersonKind, val primaryImageTag: String? = null, val imageBlurHashes: Map<ImageType, Map<String, String>>? = null)

This is used by the api to get information about a Person within a BaseItem.

Constructors

Link copied to clipboard
constructor(name: String? = null, id: UUID, role: String? = null, type: PersonKind, primaryImageTag: String? = null, imageBlurHashes: Map<ImageType, Map<String, String>>? = null)

Properties

Link copied to clipboard
val id: UUID

The identifier.

Link copied to clipboard

The primary image blurhash.

Link copied to clipboard
val name: String? = null

The name.

Link copied to clipboard
val primaryImageTag: String? = null

The primary image tag.

Link copied to clipboard
val role: String? = null

The role.

Link copied to clipboard

The person kind.