jellyfin-discord-bot/server/jellyfin/models/GroupShuffleMode.ts

39 lines
1006 B
TypeScript
Raw Normal View History

2023-05-04 23:34:53 +02:00
/* 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 GroupShuffleMode.
* @export
*/
export const GroupShuffleMode = {
Sorted: 'Sorted',
Shuffle: 'Shuffle'
} as const;
export type GroupShuffleMode = typeof GroupShuffleMode[keyof typeof GroupShuffleMode];
export function GroupShuffleModeFromJSON(json: any): GroupShuffleMode {
return GroupShuffleModeFromJSONTyped(json, false);
}
export function GroupShuffleModeFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupShuffleMode {
return json as GroupShuffleMode;
}
export function GroupShuffleModeToJSON(value?: GroupShuffleMode | null): any {
return value as any;
}