/* tslint:disable */ /* eslint-disable */ /** * 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/. */ /** * * @export * @interface MusicVideoInfo */ export interface MusicVideoInfo { /** * Gets or sets the name. * @type {string} * @memberof MusicVideoInfo */ 'Name'?: string | null; /** * Gets or sets the original title. * @type {string} * @memberof MusicVideoInfo */ 'OriginalTitle'?: string | null; /** * Gets or sets the path. * @type {string} * @memberof MusicVideoInfo */ 'Path'?: string | null; /** * Gets or sets the metadata language. * @type {string} * @memberof MusicVideoInfo */ 'MetadataLanguage'?: string | null; /** * Gets or sets the metadata country code. * @type {string} * @memberof MusicVideoInfo */ 'MetadataCountryCode'?: string | null; /** * Gets or sets the provider ids. * @type {{ [key: string]: string; }} * @memberof MusicVideoInfo */ 'ProviderIds'?: { [key: string]: string; } | null; /** * Gets or sets the year. * @type {number} * @memberof MusicVideoInfo */ 'Year'?: number | null; /** * * @type {number} * @memberof MusicVideoInfo */ 'IndexNumber'?: number | null; /** * * @type {number} * @memberof MusicVideoInfo */ 'ParentIndexNumber'?: number | null; /** * * @type {string} * @memberof MusicVideoInfo */ 'PremiereDate'?: string | null; /** * * @type {boolean} * @memberof MusicVideoInfo */ 'IsAutomated'?: boolean; /** * * @type {Array} * @memberof MusicVideoInfo */ 'Artists'?: Array | null; }