44 lines
1.1 KiB
TypeScript
44 lines
1.1 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.
|
||
|
*/
|
||
|
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @export
|
||
|
*/
|
||
|
export const RecordingStatus = {
|
||
|
New: 'New',
|
||
|
InProgress: 'InProgress',
|
||
|
Completed: 'Completed',
|
||
|
Cancelled: 'Cancelled',
|
||
|
ConflictedOk: 'ConflictedOk',
|
||
|
ConflictedNotOk: 'ConflictedNotOk',
|
||
|
Error: 'Error'
|
||
|
} as const;
|
||
|
export type RecordingStatus = typeof RecordingStatus[keyof typeof RecordingStatus];
|
||
|
|
||
|
|
||
|
export function RecordingStatusFromJSON(json: any): RecordingStatus {
|
||
|
return RecordingStatusFromJSONTyped(json, false);
|
||
|
}
|
||
|
|
||
|
export function RecordingStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): RecordingStatus {
|
||
|
return json as RecordingStatus;
|
||
|
}
|
||
|
|
||
|
export function RecordingStatusToJSON(value?: RecordingStatus | null): any {
|
||
|
return value as any;
|
||
|
}
|
||
|
|