VirtualFolderInfo

@Serializable
data class VirtualFolderInfo(val name: String? = null, val locations: List<String>? = null, val collectionType: CollectionTypeOptions? = null, val libraryOptions: LibraryOptions? = null, val itemId: String? = null, val primaryImageItemId: String? = null, val refreshProgress: Double? = null, val refreshStatus: String? = null)

Used to hold information about a user's list of configured virtual folders.

Constructors

Link copied to clipboard
constructor(name: String? = null, locations: List<String>? = null, collectionType: CollectionTypeOptions? = null, libraryOptions: LibraryOptions? = null, itemId: String? = null, primaryImageItemId: String? = null, refreshProgress: Double? = null, refreshStatus: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "CollectionType")
val collectionType: CollectionTypeOptions?

The type of the collection.

Link copied to clipboard
@SerialName(value = "ItemId")
val itemId: String?

The item identifier.

Link copied to clipboard
@SerialName(value = "LibraryOptions")
val libraryOptions: LibraryOptions?
Link copied to clipboard
@SerialName(value = "Locations")
val locations: List<String>?

The locations.

Link copied to clipboard
@SerialName(value = "Name")
val name: String?

The name.

Link copied to clipboard
@SerialName(value = "PrimaryImageItemId")
val primaryImageItemId: String?

The primary image item identifier.

Link copied to clipboard
@SerialName(value = "RefreshProgress")
val refreshProgress: Double?
Link copied to clipboard
@SerialName(value = "RefreshStatus")
val refreshStatus: String?