jellyfin-discord-bot/server/jellyfin/models/PluginStatus.ts

44 lines
1.1 KiB
TypeScript

/* tslint:disable */
/* eslint-disable */
/**
* 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.
*/
/**
* Plugin load status.
* @export
*/
export const PluginStatus = {
Active: 'Active',
Restart: 'Restart',
Deleted: 'Deleted',
Superceded: 'Superceded',
Malfunctioned: 'Malfunctioned',
NotSupported: 'NotSupported',
Disabled: 'Disabled'
} as const;
export type PluginStatus = typeof PluginStatus[keyof typeof PluginStatus];
export function PluginStatusFromJSON(json: any): PluginStatus {
return PluginStatusFromJSONTyped(json, false);
}
export function PluginStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): PluginStatus {
return json as PluginStatus;
}
export function PluginStatusToJSON(value?: PluginStatus | null): any {
return value as any;
}