BackupManifestDto

@Serializable
data class BackupManifestDto(val serverVersion: String, val backupEngineVersion: String, val dateCreated: DateTime, val path: String, val options: BackupOptionsDto)

Manifest type for backups internal structure.

Constructors

Link copied to clipboard
constructor(serverVersion: String, backupEngineVersion: String, dateCreated: DateTime, path: String, options: BackupOptionsDto)

Properties

Link copied to clipboard
@SerialName(value = "BackupEngineVersion")
val backupEngineVersion: String

The backup engine version this backup was created with.

Link copied to clipboard
@SerialName(value = "DateCreated")
val dateCreated: DateTime

The date this backup was created with.

Link copied to clipboard
@SerialName(value = "Options")
val options: BackupOptionsDto

The contents of the backup archive.

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

The path to the backup on the system.

Link copied to clipboard
@SerialName(value = "ServerVersion")
val serverVersion: String

The jellyfin version this backup was created with.