39 lines
1.0 KiB
TypeScript
39 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.
|
||
|
*/
|
||
|
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @export
|
||
|
*/
|
||
|
export const ImageSavingConvention = {
|
||
|
Legacy: 'Legacy',
|
||
|
Compatible: 'Compatible'
|
||
|
} as const;
|
||
|
export type ImageSavingConvention = typeof ImageSavingConvention[keyof typeof ImageSavingConvention];
|
||
|
|
||
|
|
||
|
export function ImageSavingConventionFromJSON(json: any): ImageSavingConvention {
|
||
|
return ImageSavingConventionFromJSONTyped(json, false);
|
||
|
}
|
||
|
|
||
|
export function ImageSavingConventionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImageSavingConvention {
|
||
|
return json as ImageSavingConvention;
|
||
|
}
|
||
|
|
||
|
export function ImageSavingConventionToJSON(value?: ImageSavingConvention | null): any {
|
||
|
return value as any;
|
||
|
}
|
||
|
|