FolderStorageDto

@Serializable
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
@SerialName(value = "DeviceId")
val deviceId: String?

The Device Identifier.

Link copied to clipboard
@SerialName(value = "FreeSpace")
val freeSpace: Long

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

Link copied to clipboard
@SerialName(value = "Path")
val path: String

The path of the folder in question.

Link copied to clipboard
@SerialName(value = "StorageType")
val storageType: String?

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

Link copied to clipboard
@SerialName(value = "UsedSpace")
val usedSpace: Long

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