UNPKG

@jellyfin/sdk

Version:
44 lines (43 loc) 1.25 kB
/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * Do not edit the class manually. * * Jellyfin API * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ import type { ExternalIdMediaType } from './external-id-media-type'; /** * Represents the external id information for serialization to the client. * @export * @interface ExternalIdInfo */ export interface ExternalIdInfo { /** * Gets or sets the display name of the external id provider (IE: IMDB, MusicBrainz, etc). * @type {string} * @memberof ExternalIdInfo */ 'Name'?: string; /** * Gets or sets the unique key for this id. This key should be unique across all providers. * @type {string} * @memberof ExternalIdInfo */ 'Key'?: string; /** * * @type {ExternalIdMediaType} * @memberof ExternalIdInfo */ 'Type'?: ExternalIdMediaType; /** * Gets or sets the URL format string. * @type {string} * @memberof ExternalIdInfo * @deprecated */ 'UrlFormatString'?: string | null; }