@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
54 lines (53 loc) • 1.42 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/.
*/
/**
* The configuration page info.
* @export
* @interface ConfigurationPageInfo
*/
export interface ConfigurationPageInfo {
/**
* Gets or sets the name.
* @type {string}
* @memberof ConfigurationPageInfo
*/
'Name'?: string;
/**
* Gets or sets a value indicating whether the configurations page is enabled in the main menu.
* @type {boolean}
* @memberof ConfigurationPageInfo
*/
'EnableInMainMenu'?: boolean;
/**
* Gets or sets the menu section.
* @type {string}
* @memberof ConfigurationPageInfo
*/
'MenuSection'?: string | null;
/**
* Gets or sets the menu icon.
* @type {string}
* @memberof ConfigurationPageInfo
*/
'MenuIcon'?: string | null;
/**
* Gets or sets the display name.
* @type {string}
* @memberof ConfigurationPageInfo
*/
'DisplayName'?: string | null;
/**
* Gets or sets the plugin id.
* @type {string}
* @memberof ConfigurationPageInfo
*/
'PluginId'?: string | null;
}