@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
85 lines (84 loc) • 1.68 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/.
*/
import { MediaUrl } from './media-url';
/**
* Class BaseItem.
* @export
* @interface BaseItem
*/
export interface BaseItem {
/**
*
* @type {number}
* @memberof BaseItem
*/
'Size'?: number | null;
/**
*
* @type {string}
* @memberof BaseItem
*/
'Container'?: string | null;
/**
*
* @type {boolean}
* @memberof BaseItem
*/
'IsHD'?: boolean;
/**
*
* @type {boolean}
* @memberof BaseItem
*/
'IsShortcut'?: boolean;
/**
*
* @type {string}
* @memberof BaseItem
*/
'ShortcutPath'?: string | null;
/**
*
* @type {number}
* @memberof BaseItem
*/
'Width'?: number;
/**
*
* @type {number}
* @memberof BaseItem
*/
'Height'?: number;
/**
*
* @type {Array<string>}
* @memberof BaseItem
*/
'ExtraIds'?: Array<string> | null;
/**
*
* @type {string}
* @memberof BaseItem
*/
'DateLastSaved'?: string;
/**
* Gets or sets the remote trailers.
* @type {Array<MediaUrl>}
* @memberof BaseItem
*/
'RemoteTrailers'?: Array<MediaUrl> | null;
/**
*
* @type {boolean}
* @memberof BaseItem
*/
'SupportsExternalTransfer'?: boolean;
}