56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
/**
|
|
* 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 branding options.
|
|
*/
|
|
export class BrandingOptions {
|
|
/**
|
|
* Gets or sets the login disclaimer.
|
|
*/
|
|
'loginDisclaimer'?: string | null;
|
|
/**
|
|
* Gets or sets the custom CSS.
|
|
*/
|
|
'customCss'?: string | null;
|
|
/**
|
|
* Gets or sets a value indicating whether to enable the splashscreen.
|
|
*/
|
|
'splashscreenEnabled'?: boolean;
|
|
|
|
static discriminator: string | undefined = undefined;
|
|
|
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
{
|
|
"name": "loginDisclaimer",
|
|
"baseName": "LoginDisclaimer",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "customCss",
|
|
"baseName": "CustomCss",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "splashscreenEnabled",
|
|
"baseName": "SplashscreenEnabled",
|
|
"type": "boolean"
|
|
} ];
|
|
|
|
static getAttributeTypeMap() {
|
|
return BrandingOptions.attributeTypeMap;
|
|
}
|
|
}
|
|
|