UNPKG

@jellyfin/sdk

Version:
49 lines (48 loc) 1.25 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 { SubtitleDeliveryMethod } from './subtitle-delivery-method'; /** * A class for subtitle profile information. * @export * @interface SubtitleProfile */ export interface SubtitleProfile { /** * Gets or sets the format. * @type {string} * @memberof SubtitleProfile */ 'Format'?: string | null; /** * * @type {SubtitleDeliveryMethod} * @memberof SubtitleProfile */ 'Method'?: SubtitleDeliveryMethod; /** * Gets or sets the DIDL mode. * @type {string} * @memberof SubtitleProfile */ 'DidlMode'?: string | null; /** * Gets or sets the language. * @type {string} * @memberof SubtitleProfile */ 'Language'?: string | null; /** * Gets or sets the container. * @type {string} * @memberof SubtitleProfile */ 'Container'?: string | null; }