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

40 lines
1016 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 NotificationLevel = {
Normal: 'Normal',
Warning: 'Warning',
Error: 'Error'
} as const;
export type NotificationLevel = typeof NotificationLevel[keyof typeof NotificationLevel];
export function NotificationLevelFromJSON(json: any): NotificationLevel {
return NotificationLevelFromJSONTyped(json, false);
}
export function NotificationLevelFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationLevel {
return json as NotificationLevel;
}
export function NotificationLevelToJSON(value?: NotificationLevel | null): any {
return value as any;
}