@apideck/node
Version:
Apideck Node.js SDK
70 lines (69 loc) • 1.97 kB
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* Theming options to change the look and feel of Vault.
* @export
* @interface SessionTheme
*/
export interface SessionTheme {
/**
* The URL to the favicon to use for Vault.
* @type {string}
* @memberof SessionTheme
*/
favicon?: string;
/**
* The URL to the logo to use for Vault.
* @type {string}
* @memberof SessionTheme
*/
logo?: string;
/**
* The primary color to use for Vault.
* @type {string}
* @memberof SessionTheme
*/
primary_color?: string;
/**
* The background color to use for the sidebar.
* @type {string}
* @memberof SessionTheme
*/
sidepanel_background_color?: string;
/**
* The text color to use for the sidebar.
* @type {string}
* @memberof SessionTheme
*/
sidepanel_text_color?: string;
/**
* The name that will be shown in the sidebar.
* @type {string}
* @memberof SessionTheme
*/
vault_name?: string;
/**
* The URL to the privacy policy that will be shown in the sidebar.
* @type {string}
* @memberof SessionTheme
*/
privacy_url?: string;
/**
* The URL to the terms and conditions that will be shown in the sidebar.
* @type {string}
* @memberof SessionTheme
*/
terms_url?: string;
}
export declare function SessionThemeFromJSON(json: any): SessionTheme;
export declare function SessionThemeFromJSONTyped(json: any, ignoreDiscriminator: boolean): SessionTheme;
export declare function SessionThemeToJSON(value?: SessionTheme | null): any;