39 lines
1020 B
TypeScript
39 lines
1020 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 LiveTvServiceStatus = {
|
||
|
Ok: 'Ok',
|
||
|
Unavailable: 'Unavailable'
|
||
|
} as const;
|
||
|
export type LiveTvServiceStatus = typeof LiveTvServiceStatus[keyof typeof LiveTvServiceStatus];
|
||
|
|
||
|
|
||
|
export function LiveTvServiceStatusFromJSON(json: any): LiveTvServiceStatus {
|
||
|
return LiveTvServiceStatusFromJSONTyped(json, false);
|
||
|
}
|
||
|
|
||
|
export function LiveTvServiceStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): LiveTvServiceStatus {
|
||
|
return json as LiveTvServiceStatus;
|
||
|
}
|
||
|
|
||
|
export function LiveTvServiceStatusToJSON(value?: LiveTvServiceStatus | null): any {
|
||
|
return value as any;
|
||
|
}
|
||
|
|