/* 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 RepeatMode = { RepeatNone: 'RepeatNone', RepeatAll: 'RepeatAll', RepeatOne: 'RepeatOne' } as const; export type RepeatMode = typeof RepeatMode[keyof typeof RepeatMode]; export function RepeatModeFromJSON(json: any): RepeatMode { return RepeatModeFromJSONTyped(json, false); } export function RepeatModeFromJSONTyped(json: any, ignoreDiscriminator: boolean): RepeatMode { return json as RepeatMode; } export function RepeatModeToJSON(value?: RepeatMode | null): any { return value as any; }