LibraryTypeOptionsDto

@Serializable
data class LibraryTypeOptionsDto(val type: String? = null, val metadataFetchers: List<LibraryOptionInfoDto>, val imageFetchers: List<LibraryOptionInfoDto>, val supportedImageTypes: List<ImageType>, val defaultImageOptions: List<ImageOption>)

Library type options dto.

Constructors

Link copied to clipboard
constructor(type: String? = null, metadataFetchers: List<LibraryOptionInfoDto>, imageFetchers: List<LibraryOptionInfoDto>, supportedImageTypes: List<ImageType>, defaultImageOptions: List<ImageOption>)

Properties

Link copied to clipboard
@SerialName(value = "DefaultImageOptions")
val defaultImageOptions: List<ImageOption>

The default image options.

Link copied to clipboard
@SerialName(value = "ImageFetchers")
val imageFetchers: List<LibraryOptionInfoDto>

The image fetchers.

Link copied to clipboard
@SerialName(value = "MetadataFetchers")
val metadataFetchers: List<LibraryOptionInfoDto>

The metadata fetchers.

Link copied to clipboard
@SerialName(value = "SupportedImageTypes")
val supportedImageTypes: List<ImageType>

The supported image types.

Link copied to clipboard
@SerialName(value = "Type")
val type: String?

The type.