45 lines
1.1 KiB
TypeScript
45 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 ImageOrientation = {
|
||
|
TopLeft: 'TopLeft',
|
||
|
TopRight: 'TopRight',
|
||
|
BottomRight: 'BottomRight',
|
||
|
BottomLeft: 'BottomLeft',
|
||
|
LeftTop: 'LeftTop',
|
||
|
RightTop: 'RightTop',
|
||
|
RightBottom: 'RightBottom',
|
||
|
LeftBottom: 'LeftBottom'
|
||
|
} as const;
|
||
|
export type ImageOrientation = typeof ImageOrientation[keyof typeof ImageOrientation];
|
||
|
|
||
|
|
||
|
export function ImageOrientationFromJSON(json: any): ImageOrientation {
|
||
|
return ImageOrientationFromJSONTyped(json, false);
|
||
|
}
|
||
|
|
||
|
export function ImageOrientationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImageOrientation {
|
||
|
return json as ImageOrientation;
|
||
|
}
|
||
|
|
||
|
export function ImageOrientationToJSON(value?: ImageOrientation | null): any {
|
||
|
return value as any;
|
||
|
}
|
||
|
|