89 lines
2.4 KiB
TypeScript
89 lines
2.4 KiB
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* 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 { exists, mapValues } from '../runtime';
|
|
import type { LiveTvServiceInfo } from './LiveTvServiceInfo';
|
|
import {
|
|
LiveTvServiceInfoFromJSON,
|
|
LiveTvServiceInfoFromJSONTyped,
|
|
LiveTvServiceInfoToJSON,
|
|
} from './LiveTvServiceInfo';
|
|
|
|
/**
|
|
*
|
|
* @export
|
|
* @interface LiveTvInfo
|
|
*/
|
|
export interface LiveTvInfo {
|
|
/**
|
|
* Gets or sets the services.
|
|
* @type {Array<LiveTvServiceInfo>}
|
|
* @memberof LiveTvInfo
|
|
*/
|
|
services?: Array<LiveTvServiceInfo>;
|
|
/**
|
|
* Gets or sets a value indicating whether this instance is enabled.
|
|
* @type {boolean}
|
|
* @memberof LiveTvInfo
|
|
*/
|
|
isEnabled?: boolean;
|
|
/**
|
|
* Gets or sets the enabled users.
|
|
* @type {Array<string>}
|
|
* @memberof LiveTvInfo
|
|
*/
|
|
enabledUsers?: Array<string>;
|
|
}
|
|
|
|
/**
|
|
* Check if a given object implements the LiveTvInfo interface.
|
|
*/
|
|
export function instanceOfLiveTvInfo(value: object): boolean {
|
|
let isInstance = true;
|
|
|
|
return isInstance;
|
|
}
|
|
|
|
export function LiveTvInfoFromJSON(json: any): LiveTvInfo {
|
|
return LiveTvInfoFromJSONTyped(json, false);
|
|
}
|
|
|
|
export function LiveTvInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): LiveTvInfo {
|
|
if ((json === undefined) || (json === null)) {
|
|
return json;
|
|
}
|
|
return {
|
|
|
|
'services': !exists(json, 'Services') ? undefined : ((json['Services'] as Array<any>).map(LiveTvServiceInfoFromJSON)),
|
|
'isEnabled': !exists(json, 'IsEnabled') ? undefined : json['IsEnabled'],
|
|
'enabledUsers': !exists(json, 'EnabledUsers') ? undefined : json['EnabledUsers'],
|
|
};
|
|
}
|
|
|
|
export function LiveTvInfoToJSON(value?: LiveTvInfo | null): any {
|
|
if (value === undefined) {
|
|
return undefined;
|
|
}
|
|
if (value === null) {
|
|
return null;
|
|
}
|
|
return {
|
|
|
|
'Services': value.services === undefined ? undefined : ((value.services as Array<any>).map(LiveTvServiceInfoToJSON)),
|
|
'IsEnabled': value.isEnabled,
|
|
'EnabledUsers': value.enabledUsers,
|
|
};
|
|
}
|
|
|