44 lines
1002 B
TypeScript
44 lines
1002 B
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.
|
||
|
*/
|
||
|
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @export
|
||
|
*/
|
||
|
export const LogLevel = {
|
||
|
Trace: 'Trace',
|
||
|
Debug: 'Debug',
|
||
|
Information: 'Information',
|
||
|
Warning: 'Warning',
|
||
|
Error: 'Error',
|
||
|
Critical: 'Critical',
|
||
|
None: 'None'
|
||
|
} as const;
|
||
|
export type LogLevel = typeof LogLevel[keyof typeof LogLevel];
|
||
|
|
||
|
|
||
|
export function LogLevelFromJSON(json: any): LogLevel {
|
||
|
return LogLevelFromJSONTyped(json, false);
|
||
|
}
|
||
|
|
||
|
export function LogLevelFromJSONTyped(json: any, ignoreDiscriminator: boolean): LogLevel {
|
||
|
return json as LogLevel;
|
||
|
}
|
||
|
|
||
|
export function LogLevelToJSON(value?: LogLevel | null): any {
|
||
|
return value as any;
|
||
|
}
|
||
|
|