/** * 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'; export class RemoteSubtitleInfo { 'threeLetterISOLanguageName'?: string | null; 'id'?: string | null; 'providerName'?: string | null; 'name'?: string | null; 'format'?: string | null; 'author'?: string | null; 'comment'?: string | null; 'dateCreated'?: Date | null; 'communityRating'?: number | null; 'downloadCount'?: number | null; 'isHashMatch'?: boolean | null; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "threeLetterISOLanguageName", "baseName": "ThreeLetterISOLanguageName", "type": "string" }, { "name": "id", "baseName": "Id", "type": "string" }, { "name": "providerName", "baseName": "ProviderName", "type": "string" }, { "name": "name", "baseName": "Name", "type": "string" }, { "name": "format", "baseName": "Format", "type": "string" }, { "name": "author", "baseName": "Author", "type": "string" }, { "name": "comment", "baseName": "Comment", "type": "string" }, { "name": "dateCreated", "baseName": "DateCreated", "type": "Date" }, { "name": "communityRating", "baseName": "CommunityRating", "type": "number" }, { "name": "downloadCount", "baseName": "DownloadCount", "type": "number" }, { "name": "isHashMatch", "baseName": "IsHashMatch", "type": "boolean" } ]; static getAttributeTypeMap() { return RemoteSubtitleInfo.attributeTypeMap; } }