/* tslint:disable */ /* eslint-disable */ /** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * Do not edit the class manually. * * Jellyfin API * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /** * Defines the MediaBrowser.Common.Plugins.IPlugin. * @export * @interface IPlugin */ export interface IPlugin { /** * Gets the name of the plugin. * @type {string} * @memberof IPlugin */ 'Name'?: string | null; /** * Gets the Description. * @type {string} * @memberof IPlugin */ 'Description'?: string | null; /** * Gets the unique id. * @type {string} * @memberof IPlugin */ 'Id'?: string; /** * Gets the plugin version. * @type {string} * @memberof IPlugin */ 'Version'?: string | null; /** * Gets the path to the assembly file. * @type {string} * @memberof IPlugin */ 'AssemblyFilePath'?: string | null; /** * Gets a value indicating whether the plugin can be uninstalled. * @type {boolean} * @memberof IPlugin */ 'CanUninstall'?: boolean; /** * Gets the full path to the data folder, where the plugin can store any miscellaneous files needed. * @type {string} * @memberof IPlugin */ 'DataFolderPath'?: string | null; }