101 lines
2.4 KiB
TypeScript
101 lines
2.4 KiB
TypeScript
|
/**
|
||
|
* 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';
|
||
|
import { PluginStatus } from './pluginStatus';
|
||
|
|
||
|
/**
|
||
|
* This is a serializable stub class that is used by the api to provide information about installed plugins.
|
||
|
*/
|
||
|
export class PluginInfo {
|
||
|
/**
|
||
|
* Gets or sets the name.
|
||
|
*/
|
||
|
'name'?: string;
|
||
|
/**
|
||
|
* Gets or sets the version.
|
||
|
*/
|
||
|
'version'?: string;
|
||
|
/**
|
||
|
* Gets or sets the name of the configuration file.
|
||
|
*/
|
||
|
'configurationFileName'?: string | null;
|
||
|
/**
|
||
|
* Gets or sets the description.
|
||
|
*/
|
||
|
'description'?: string;
|
||
|
/**
|
||
|
* Gets or sets the unique id.
|
||
|
*/
|
||
|
'id'?: string;
|
||
|
/**
|
||
|
* Gets or sets a value indicating whether the plugin can be uninstalled.
|
||
|
*/
|
||
|
'canUninstall'?: boolean;
|
||
|
/**
|
||
|
* Gets or sets a value indicating whether this plugin has a valid image.
|
||
|
*/
|
||
|
'hasImage'?: boolean;
|
||
|
'status'?: PluginStatus;
|
||
|
|
||
|
static discriminator: string | undefined = undefined;
|
||
|
|
||
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
||
|
{
|
||
|
"name": "name",
|
||
|
"baseName": "Name",
|
||
|
"type": "string"
|
||
|
},
|
||
|
{
|
||
|
"name": "version",
|
||
|
"baseName": "Version",
|
||
|
"type": "string"
|
||
|
},
|
||
|
{
|
||
|
"name": "configurationFileName",
|
||
|
"baseName": "ConfigurationFileName",
|
||
|
"type": "string"
|
||
|
},
|
||
|
{
|
||
|
"name": "description",
|
||
|
"baseName": "Description",
|
||
|
"type": "string"
|
||
|
},
|
||
|
{
|
||
|
"name": "id",
|
||
|
"baseName": "Id",
|
||
|
"type": "string"
|
||
|
},
|
||
|
{
|
||
|
"name": "canUninstall",
|
||
|
"baseName": "CanUninstall",
|
||
|
"type": "boolean"
|
||
|
},
|
||
|
{
|
||
|
"name": "hasImage",
|
||
|
"baseName": "HasImage",
|
||
|
"type": "boolean"
|
||
|
},
|
||
|
{
|
||
|
"name": "status",
|
||
|
"baseName": "Status",
|
||
|
"type": "PluginStatus"
|
||
|
} ];
|
||
|
|
||
|
static getAttributeTypeMap() {
|
||
|
return PluginInfo.attributeTypeMap;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export namespace PluginInfo {
|
||
|
}
|