39 lines
958 B
TypeScript
39 lines
958 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.
|
||
|
*/
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Enum SeriesStatus.
|
||
|
* @export
|
||
|
*/
|
||
|
export const SeriesStatus = {
|
||
|
Continuing: 'Continuing',
|
||
|
Ended: 'Ended'
|
||
|
} as const;
|
||
|
export type SeriesStatus = typeof SeriesStatus[keyof typeof SeriesStatus];
|
||
|
|
||
|
|
||
|
export function SeriesStatusFromJSON(json: any): SeriesStatus {
|
||
|
return SeriesStatusFromJSONTyped(json, false);
|
||
|
}
|
||
|
|
||
|
export function SeriesStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): SeriesStatus {
|
||
|
return json as SeriesStatus;
|
||
|
}
|
||
|
|
||
|
export function SeriesStatusToJSON(value?: SeriesStatus | null): any {
|
||
|
return value as any;
|
||
|
}
|
||
|
|