@jellyfin/sdk
    Preparing search index...

    Interface PackageInfo

    Class PackageInfo.

    PackageInfo

    interface PackageInfo {
        category?: string;
        description?: string;
        guid?: string;
        imageUrl?: null | string;
        name?: string;
        overview?: string;
        owner?: string;
        versions?: VersionInfo[];
    }
    Index

    Properties

    category?: string

    Gets or sets the category.

    PackageInfo

    description?: string

    Gets or sets a long description of the plugin containing features or helpful explanations.

    PackageInfo

    guid?: string

    Gets or sets the guid of the assembly associated with this plugin. This is used to identify the proper item for automatic updates.

    PackageInfo

    imageUrl?: null | string

    Gets or sets the image url for the package.

    PackageInfo

    name?: string

    Gets or sets the name.

    PackageInfo

    overview?: string

    Gets or sets a short overview of what the plugin does.

    PackageInfo

    owner?: string

    Gets or sets the owner.

    PackageInfo

    versions?: VersionInfo[]

    Gets or sets the versions.

    PackageInfo