Defines the MediaBrowser.Model.Updates.VersionInfo class.

VersionInfo

interface VersionInfo {
    changelog?: null | string;
    checksum?: null | string;
    repositoryName?: string;
    repositoryUrl?: string;
    sourceUrl?: null | string;
    targetAbi?: null | string;
    timestamp?: null | string;
    version?: string;
    VersionNumber?: string;
}

Properties

changelog?: null | string

Gets or sets the changelog for this version.

VersionInfo

checksum?: null | string

Gets or sets a checksum for the binary.

VersionInfo

repositoryName?: string

Gets or sets the repository name.

VersionInfo

repositoryUrl?: string

Gets or sets the repository url.

VersionInfo

sourceUrl?: null | string

Gets or sets the source URL.

VersionInfo

targetAbi?: null | string

Gets or sets the ABI that this version was built against.

VersionInfo

timestamp?: null | string

Gets or sets a timestamp of when the binary was built.

VersionInfo

version?: string

Gets or sets the version.

VersionInfo

VersionNumber?: string

Gets the version as a System.Version.

VersionInfo