/** * 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'; /** * Gets or sets the primary image blurhash. */ export class BaseItemPersonImageBlurHashes { 'primary'?: { [key: string]: string; }; 'art'?: { [key: string]: string; }; 'backdrop'?: { [key: string]: string; }; 'banner'?: { [key: string]: string; }; 'logo'?: { [key: string]: string; }; 'thumb'?: { [key: string]: string; }; 'disc'?: { [key: string]: string; }; 'box'?: { [key: string]: string; }; 'screenshot'?: { [key: string]: string; }; 'menu'?: { [key: string]: string; }; 'chapter'?: { [key: string]: string; }; 'boxRear'?: { [key: string]: string; }; 'profile'?: { [key: string]: string; }; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "primary", "baseName": "Primary", "type": "{ [key: string]: string; }" }, { "name": "art", "baseName": "Art", "type": "{ [key: string]: string; }" }, { "name": "backdrop", "baseName": "Backdrop", "type": "{ [key: string]: string; }" }, { "name": "banner", "baseName": "Banner", "type": "{ [key: string]: string; }" }, { "name": "logo", "baseName": "Logo", "type": "{ [key: string]: string; }" }, { "name": "thumb", "baseName": "Thumb", "type": "{ [key: string]: string; }" }, { "name": "disc", "baseName": "Disc", "type": "{ [key: string]: string; }" }, { "name": "box", "baseName": "Box", "type": "{ [key: string]: string; }" }, { "name": "screenshot", "baseName": "Screenshot", "type": "{ [key: string]: string; }" }, { "name": "menu", "baseName": "Menu", "type": "{ [key: string]: string; }" }, { "name": "chapter", "baseName": "Chapter", "type": "{ [key: string]: string; }" }, { "name": "boxRear", "baseName": "BoxRear", "type": "{ [key: string]: string; }" }, { "name": "profile", "baseName": "Profile", "type": "{ [key: string]: string; }" } ]; static getAttributeTypeMap() { return BaseItemPersonImageBlurHashes.attributeTypeMap; } }