jellyfin-discord-bot/jellyfin/model/iPlugin.ts

92 lines
2.2 KiB
TypeScript
Raw Normal View History

2023-04-15 22:02:40 +02:00
/**
* Jellyfin API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 10.8.9
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { RequestFile } from './models';
/**
* Defines the MediaBrowser.Common.Plugins.IPlugin.
*/
export class IPlugin {
/**
* Gets the name of the plugin.
*/
'name'?: string | null;
/**
* Gets the Description.
*/
'description'?: string | null;
/**
* Gets the unique id.
*/
'id'?: string;
/**
* Gets the plugin version.
*/
'version'?: string | null;
/**
* Gets the path to the assembly file.
*/
'assemblyFilePath'?: string | null;
/**
* Gets a value indicating whether the plugin can be uninstalled.
*/
'canUninstall'?: boolean;
/**
* Gets the full path to the data folder, where the plugin can store any miscellaneous files needed.
*/
'dataFolderPath'?: string | null;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "name",
"baseName": "Name",
"type": "string"
},
{
"name": "description",
"baseName": "Description",
"type": "string"
},
{
"name": "id",
"baseName": "Id",
"type": "string"
},
{
"name": "version",
"baseName": "Version",
"type": "string"
},
{
"name": "assemblyFilePath",
"baseName": "AssemblyFilePath",
"type": "string"
},
{
"name": "canUninstall",
"baseName": "CanUninstall",
"type": "boolean"
},
{
"name": "dataFolderPath",
"baseName": "DataFolderPath",
"type": "string"
} ];
static getAttributeTypeMap() {
return IPlugin.attributeTypeMap;
}
}