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

83 lines
2.0 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';
/**
* The configuration page info.
*/
export class ConfigurationPageInfo {
/**
* Gets or sets the name.
*/
'name'?: string;
/**
* Gets or sets a value indicating whether the configurations page is enabled in the main menu.
*/
'enableInMainMenu'?: boolean;
/**
* Gets or sets the menu section.
*/
'menuSection'?: string | null;
/**
* Gets or sets the menu icon.
*/
'menuIcon'?: string | null;
/**
* Gets or sets the display name.
*/
'displayName'?: string | null;
/**
* Gets or sets the plugin id.
*/
'pluginId'?: string | null;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "name",
"baseName": "Name",
"type": "string"
},
{
"name": "enableInMainMenu",
"baseName": "EnableInMainMenu",
"type": "boolean"
},
{
"name": "menuSection",
"baseName": "MenuSection",
"type": "string"
},
{
"name": "menuIcon",
"baseName": "MenuIcon",
"type": "string"
},
{
"name": "displayName",
"baseName": "DisplayName",
"type": "string"
},
{
"name": "pluginId",
"baseName": "PluginId",
"type": "string"
} ];
static getAttributeTypeMap() {
return ConfigurationPageInfo.attributeTypeMap;
}
}