@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
67 lines (66 loc) • 1.73 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 type { LiveTvServiceStatus } from './live-tv-service-status';
/**
* Class ServiceInfo.
* @export
* @interface LiveTvServiceInfo
*/
export interface LiveTvServiceInfo {
/**
* Gets or sets the name.
* @type {string}
* @memberof LiveTvServiceInfo
*/
'Name'?: string | null;
/**
* Gets or sets the home page URL.
* @type {string}
* @memberof LiveTvServiceInfo
*/
'HomePageUrl'?: string | null;
/**
*
* @type {LiveTvServiceStatus}
* @memberof LiveTvServiceInfo
*/
'Status'?: LiveTvServiceStatus;
/**
* Gets or sets the status message.
* @type {string}
* @memberof LiveTvServiceInfo
*/
'StatusMessage'?: string | null;
/**
* Gets or sets the version.
* @type {string}
* @memberof LiveTvServiceInfo
*/
'Version'?: string | null;
/**
* Gets or sets a value indicating whether this instance has update available.
* @type {boolean}
* @memberof LiveTvServiceInfo
*/
'HasUpdateAvailable'?: boolean;
/**
* Gets or sets a value indicating whether this instance is visible.
* @type {boolean}
* @memberof LiveTvServiceInfo
*/
'IsVisible'?: boolean;
/**
*
* @type {Array<string>}
* @memberof LiveTvServiceInfo
*/
'Tuners'?: Array<string> | null;
}