UNPKG

@jellyfin/sdk

Version:
60 lines (59 loc) 1.6 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 { CollectionType } from './collection-type'; import type { CountryInfo } from './country-info'; import type { CultureDto } from './culture-dto'; import type { ExternalIdInfo } from './external-id-info'; import type { NameValuePair } from './name-value-pair'; import type { ParentalRating } from './parental-rating'; /** * * @export * @interface MetadataEditorInfo */ export interface MetadataEditorInfo { /** * * @type {Array<ParentalRating>} * @memberof MetadataEditorInfo */ 'ParentalRatingOptions'?: Array<ParentalRating>; /** * * @type {Array<CountryInfo>} * @memberof MetadataEditorInfo */ 'Countries'?: Array<CountryInfo>; /** * * @type {Array<CultureDto>} * @memberof MetadataEditorInfo */ 'Cultures'?: Array<CultureDto>; /** * * @type {Array<ExternalIdInfo>} * @memberof MetadataEditorInfo */ 'ExternalIdInfos'?: Array<ExternalIdInfo>; /** * * @type {CollectionType} * @memberof MetadataEditorInfo */ 'ContentType'?: CollectionType; /** * * @type {Array<NameValuePair>} * @memberof MetadataEditorInfo */ 'ContentTypeOptions'?: Array<NameValuePair>; }