@jellyfin/sdk
    Preparing search index...

    Interface VersionInfo

    Defines the MediaBrowser.Model.Updates.VersionInfo class.

    VersionInfo

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

    Properties

    changelog?: string | null

    Gets or sets the changelog for this version.

    VersionInfo

    checksum?: string | null

    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?: string | null

    Gets or sets the source URL.

    VersionInfo

    targetAbi?: string | null

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

    VersionInfo

    timestamp?: string | null

    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