jellyfin-discord-bot/jellyfin/model/liveTvServiceInfo.ts

98 lines
2.4 KiB
TypeScript
Raw Normal View History

2023-04-15 22:02:40 +02:00
/**
* 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 { RequestFile } from './models';
import { LiveTvServiceStatus } from './liveTvServiceStatus';
/**
* Class ServiceInfo.
*/
export class LiveTvServiceInfo {
/**
* Gets or sets the name.
*/
'name'?: string | null;
/**
* Gets or sets the home page URL.
*/
'homePageUrl'?: string | null;
'status'?: LiveTvServiceStatus;
/**
* Gets or sets the status message.
*/
'statusMessage'?: string | null;
/**
* Gets or sets the version.
*/
'version'?: string | null;
/**
* Gets or sets a value indicating whether this instance has update available.
*/
'hasUpdateAvailable'?: boolean;
/**
* Gets or sets a value indicating whether this instance is visible.
*/
'isVisible'?: boolean;
'tuners'?: Array<string> | null;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "name",
"baseName": "Name",
"type": "string"
},
{
"name": "homePageUrl",
"baseName": "HomePageUrl",
"type": "string"
},
{
"name": "status",
"baseName": "Status",
"type": "LiveTvServiceStatus"
},
{
"name": "statusMessage",
"baseName": "StatusMessage",
"type": "string"
},
{
"name": "version",
"baseName": "Version",
"type": "string"
},
{
"name": "hasUpdateAvailable",
"baseName": "HasUpdateAvailable",
"type": "boolean"
},
{
"name": "isVisible",
"baseName": "IsVisible",
"type": "boolean"
},
{
"name": "tuners",
"baseName": "Tuners",
"type": "Array<string>"
} ];
static getAttributeTypeMap() {
return LiveTvServiceInfo.attributeTypeMap;
}
}
export namespace LiveTvServiceInfo {
}