41 lines
992 B
TypeScript
41 lines
992 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 KeepUntil = {
|
|
UntilDeleted: 'UntilDeleted',
|
|
UntilSpaceNeeded: 'UntilSpaceNeeded',
|
|
UntilWatched: 'UntilWatched',
|
|
UntilDate: 'UntilDate'
|
|
} as const;
|
|
export type KeepUntil = typeof KeepUntil[keyof typeof KeepUntil];
|
|
|
|
|
|
export function KeepUntilFromJSON(json: any): KeepUntil {
|
|
return KeepUntilFromJSONTyped(json, false);
|
|
}
|
|
|
|
export function KeepUntilFromJSONTyped(json: any, ignoreDiscriminator: boolean): KeepUntil {
|
|
return json as KeepUntil;
|
|
}
|
|
|
|
export function KeepUntilToJSON(value?: KeepUntil | null): any {
|
|
return value as any;
|
|
}
|
|
|