/** * 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 { CountryInfo } from './countryInfo'; import { CultureDto } from './cultureDto'; import { ExternalIdInfo } from './externalIdInfo'; import { NameValuePair } from './nameValuePair'; import { ParentalRating } from './parentalRating'; export class MetadataEditorInfo { 'parentalRatingOptions'?: Array; 'countries'?: Array; 'cultures'?: Array; 'externalIdInfos'?: Array; 'contentType'?: string | null; 'contentTypeOptions'?: Array; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "parentalRatingOptions", "baseName": "ParentalRatingOptions", "type": "Array" }, { "name": "countries", "baseName": "Countries", "type": "Array" }, { "name": "cultures", "baseName": "Cultures", "type": "Array" }, { "name": "externalIdInfos", "baseName": "ExternalIdInfos", "type": "Array" }, { "name": "contentType", "baseName": "ContentType", "type": "string" }, { "name": "contentTypeOptions", "baseName": "ContentTypeOptions", "type": "Array" } ]; static getAttributeTypeMap() { return MetadataEditorInfo.attributeTypeMap; } }