/** * 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 { ExternalIdMediaType } from './externalIdMediaType'; /** * Represents the external id information for serialization to the client. */ export class ExternalIdInfo { /** * Gets or sets the display name of the external id provider (IE: IMDB, MusicBrainz, etc). */ 'name'?: string; /** * Gets or sets the unique key for this id. This key should be unique across all providers. */ 'key'?: string; 'type'?: ExternalIdMediaType | null; /** * Gets or sets the URL format string. */ 'urlFormatString'?: string | null; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "name", "baseName": "Name", "type": "string" }, { "name": "key", "baseName": "Key", "type": "string" }, { "name": "type", "baseName": "Type", "type": "ExternalIdMediaType" }, { "name": "urlFormatString", "baseName": "UrlFormatString", "type": "string" } ]; static getAttributeTypeMap() { return ExternalIdInfo.attributeTypeMap; } } export namespace ExternalIdInfo { }