@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
114 lines (113 loc) • 2.32 kB
TypeScript
/**
* 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 RemoteSubtitleInfo
*/
export interface RemoteSubtitleInfo {
/**
*
* @type {string}
* @memberof RemoteSubtitleInfo
*/
'ThreeLetterISOLanguageName'?: string | null;
/**
*
* @type {string}
* @memberof RemoteSubtitleInfo
*/
'Id'?: string | null;
/**
*
* @type {string}
* @memberof RemoteSubtitleInfo
*/
'ProviderName'?: string | null;
/**
*
* @type {string}
* @memberof RemoteSubtitleInfo
*/
'Name'?: string | null;
/**
*
* @type {string}
* @memberof RemoteSubtitleInfo
*/
'Format'?: string | null;
/**
*
* @type {string}
* @memberof RemoteSubtitleInfo
*/
'Author'?: string | null;
/**
*
* @type {string}
* @memberof RemoteSubtitleInfo
*/
'Comment'?: string | null;
/**
*
* @type {string}
* @memberof RemoteSubtitleInfo
*/
'DateCreated'?: string | null;
/**
*
* @type {number}
* @memberof RemoteSubtitleInfo
*/
'CommunityRating'?: number | null;
/**
*
* @type {number}
* @memberof RemoteSubtitleInfo
*/
'FrameRate'?: number | null;
/**
*
* @type {number}
* @memberof RemoteSubtitleInfo
*/
'DownloadCount'?: number | null;
/**
*
* @type {boolean}
* @memberof RemoteSubtitleInfo
*/
'IsHashMatch'?: boolean | null;
/**
*
* @type {boolean}
* @memberof RemoteSubtitleInfo
*/
'AiTranslated'?: boolean | null;
/**
*
* @type {boolean}
* @memberof RemoteSubtitleInfo
*/
'MachineTranslated'?: boolean | null;
/**
*
* @type {boolean}
* @memberof RemoteSubtitleInfo
*/
'Forced'?: boolean | null;
/**
*
* @type {boolean}
* @memberof RemoteSubtitleInfo
*/
'HearingImpaired'?: boolean | null;
}