VersionInfo

@Serializable
data class VersionInfo(val version: String, val versionNumber: String, val changelog: String? = null, val targetAbi: String? = null, val sourceUrl: String? = null, val checksum: String? = null, val timestamp: String? = null, val repositoryName: String, val repositoryUrl: String)

Defines the MediaBrowser.Model.Updates.VersionInfo class.

Constructors

Link copied to clipboard
constructor(version: String, versionNumber: String, changelog: String? = null, targetAbi: String? = null, sourceUrl: String? = null, checksum: String? = null, timestamp: String? = null, repositoryName: String, repositoryUrl: String)

Properties

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

The changelog for this version.

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

A checksum for the binary.

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

The repository name.

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

The repository url.

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

The source URL.

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

The ABI that this version was built against.

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

A timestamp of when the binary was built.

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

The version.

Link copied to clipboard
@SerialName(value = "VersionNumber")
val versionNumber: String

The version as a System.Version.