FolderStorageDto

data class FolderStorageDto(val path: String, val freeSpace: Long, val usedSpace: Long, val storageType: String? = null, val deviceId: String? = null)

Contains information about a specific folder.

Constructors

Link copied to clipboard
constructor(path: String, freeSpace: Long, usedSpace: Long, storageType: String? = null, deviceId: String? = null)

Properties

Link copied to clipboard
val deviceId: String? = null

The Device Identifier.

Link copied to clipboard

The free space of the underlying storage device of the Jellyfin.Api.Models.SystemInfoDtos.FolderStorageDto.Path.

Link copied to clipboard

The path of the folder in question.

Link copied to clipboard
val storageType: String? = null

The kind of storage device of the Jellyfin.Api.Models.SystemInfoDtos.FolderStorageDto.Path.

Link copied to clipboard

The used space of the underlying storage device of the Jellyfin.Api.Models.SystemInfoDtos.FolderStorageDto.Path.