42 lines
1.0 KiB
TypeScript
42 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 PlayCommand.
|
||
|
* @export
|
||
|
*/
|
||
|
export const PlayCommand = {
|
||
|
PlayNow: 'PlayNow',
|
||
|
PlayNext: 'PlayNext',
|
||
|
PlayLast: 'PlayLast',
|
||
|
PlayInstantMix: 'PlayInstantMix',
|
||
|
PlayShuffle: 'PlayShuffle'
|
||
|
} as const;
|
||
|
export type PlayCommand = typeof PlayCommand[keyof typeof PlayCommand];
|
||
|
|
||
|
|
||
|
export function PlayCommandFromJSON(json: any): PlayCommand {
|
||
|
return PlayCommandFromJSONTyped(json, false);
|
||
|
}
|
||
|
|
||
|
export function PlayCommandFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlayCommand {
|
||
|
return json as PlayCommand;
|
||
|
}
|
||
|
|
||
|
export function PlayCommandToJSON(value?: PlayCommand | null): any {
|
||
|
return value as any;
|
||
|
}
|
||
|
|