40 lines
1.0 KiB
TypeScript
40 lines
1.0 KiB
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 GroupRepeatMode.
|
||
|
* @export
|
||
|
*/
|
||
|
export const GroupRepeatMode = {
|
||
|
RepeatOne: 'RepeatOne',
|
||
|
RepeatAll: 'RepeatAll',
|
||
|
RepeatNone: 'RepeatNone'
|
||
|
} as const;
|
||
|
export type GroupRepeatMode = typeof GroupRepeatMode[keyof typeof GroupRepeatMode];
|
||
|
|
||
|
|
||
|
export function GroupRepeatModeFromJSON(json: any): GroupRepeatMode {
|
||
|
return GroupRepeatModeFromJSONTyped(json, false);
|
||
|
}
|
||
|
|
||
|
export function GroupRepeatModeFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupRepeatMode {
|
||
|
return json as GroupRepeatMode;
|
||
|
}
|
||
|
|
||
|
export function GroupRepeatModeToJSON(value?: GroupRepeatMode | null): any {
|
||
|
return value as any;
|
||
|
}
|
||
|
|