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

89 lines
2.2 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';
export class PublicSystemInfo {
/**
* Gets or sets the local address.
*/
'localAddress'?: string | null;
/**
* Gets or sets the name of the server.
*/
'serverName'?: string | null;
/**
* Gets or sets the server version.
*/
'version'?: string | null;
/**
* Gets or sets the product name. This is the AssemblyProduct name.
*/
'productName'?: string | null;
/**
* Gets or sets the operating system.
*/
'operatingSystem'?: string | null;
/**
* Gets or sets the id.
*/
'id'?: string | null;
/**
* Gets or sets a value indicating whether the startup wizard is completed.
*/
'startupWizardCompleted'?: boolean | null;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "localAddress",
"baseName": "LocalAddress",
"type": "string"
},
{
"name": "serverName",
"baseName": "ServerName",
"type": "string"
},
{
"name": "version",
"baseName": "Version",
"type": "string"
},
{
"name": "productName",
"baseName": "ProductName",
"type": "string"
},
{
"name": "operatingSystem",
"baseName": "OperatingSystem",
"type": "string"
},
{
"name": "id",
"baseName": "Id",
"type": "string"
},
{
"name": "startupWizardCompleted",
"baseName": "StartupWizardCompleted",
"type": "boolean"
} ];
static getAttributeTypeMap() {
return PublicSystemInfo.attributeTypeMap;
}
}