jellyfin-discord-bot/jellyfin/model/imageInfo.ts
2023-04-15 22:02:40 +02:00

101 lines
2.2 KiB
TypeScript

/**
* 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.
*/
import { RequestFile } from './models';
import { ImageType } from './imageType';
/**
* Class ImageInfo.
*/
export class ImageInfo {
'imageType'?: ImageType;
/**
* Gets or sets the index of the image.
*/
'imageIndex'?: number | null;
/**
* Gets or sets the image tag.
*/
'imageTag'?: string | null;
/**
* Gets or sets the path.
*/
'path'?: string | null;
/**
* Gets or sets the blurhash.
*/
'blurHash'?: string | null;
/**
* Gets or sets the height.
*/
'height'?: number | null;
/**
* Gets or sets the width.
*/
'width'?: number | null;
/**
* Gets or sets the size.
*/
'size'?: number;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "imageType",
"baseName": "ImageType",
"type": "ImageType"
},
{
"name": "imageIndex",
"baseName": "ImageIndex",
"type": "number"
},
{
"name": "imageTag",
"baseName": "ImageTag",
"type": "string"
},
{
"name": "path",
"baseName": "Path",
"type": "string"
},
{
"name": "blurHash",
"baseName": "BlurHash",
"type": "string"
},
{
"name": "height",
"baseName": "Height",
"type": "number"
},
{
"name": "width",
"baseName": "Width",
"type": "number"
},
{
"name": "size",
"baseName": "Size",
"type": "number"
} ];
static getAttributeTypeMap() {
return ImageInfo.attributeTypeMap;
}
}
export namespace ImageInfo {
}