/** * 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'; export class RemoteSearchResult { /** * Gets or sets the name. */ 'name'?: string | null; /** * Gets or sets the provider ids. */ 'providerIds'?: { [key: string]: string; } | null; /** * Gets or sets the year. */ 'productionYear'?: number | null; 'indexNumber'?: number | null; 'indexNumberEnd'?: number | null; 'parentIndexNumber'?: number | null; 'premiereDate'?: Date | null; 'imageUrl'?: string | null; 'searchProviderName'?: string | null; 'overview'?: string | null; 'albumArtist'?: RemoteSearchResult | null; 'artists'?: Array | null; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "name", "baseName": "Name", "type": "string" }, { "name": "providerIds", "baseName": "ProviderIds", "type": "{ [key: string]: string; }" }, { "name": "productionYear", "baseName": "ProductionYear", "type": "number" }, { "name": "indexNumber", "baseName": "IndexNumber", "type": "number" }, { "name": "indexNumberEnd", "baseName": "IndexNumberEnd", "type": "number" }, { "name": "parentIndexNumber", "baseName": "ParentIndexNumber", "type": "number" }, { "name": "premiereDate", "baseName": "PremiereDate", "type": "Date" }, { "name": "imageUrl", "baseName": "ImageUrl", "type": "string" }, { "name": "searchProviderName", "baseName": "SearchProviderName", "type": "string" }, { "name": "overview", "baseName": "Overview", "type": "string" }, { "name": "albumArtist", "baseName": "AlbumArtist", "type": "RemoteSearchResult" }, { "name": "artists", "baseName": "Artists", "type": "Array" } ]; static getAttributeTypeMap() { return RemoteSearchResult.attributeTypeMap; } }