/** * User Service API * Solomon AI User Service API - Manages user profiles and authentication * * The version of the OpenAPI document: 1.0 * Contact: yoanyomba@solomon-ai.co * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ApplicationTheme } from './applicationTheme'; import { DigitalWorkerSettings } from './digitalWorkerSettings'; import { FinancialPreferences } from './financialPreferences'; import { LikedDashboardPanels } from './likedDashboardPanels'; import { NotificationSettings } from './notificationSettings'; import { RiskToleranceSettings } from './riskToleranceSettings'; /** * Represents user-specific settings within the fintech application. */ export declare class Settings { /** * Unique identifier for the user settings. */ 'id'?: string; 'appTheme'?: ApplicationTheme; 'notificationSettings'?: NotificationSettings; /** * Preferred language for the application, e.g., \"en\" for English. */ 'preferredLanguage'?: string; 'riskTolerance'?: RiskToleranceSettings; /** * List of preferred dashboard panels for customization, allowing users to select specific widgets or reports. */ 'likedDashboardPanels'?: Array; 'digitalWorkerSettings'?: DigitalWorkerSettings; 'financialPreferences'?: FinancialPreferences; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace Settings { }