/** * 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 { BankAccount } from './bankAccount'; import { CategoryMetricsFinancialSubProfile } from './categoryMetricsFinancialSubProfile'; import { CreditAccount } from './creditAccount'; import { ExpenseMetricsFinancialSubProfileMetrics } from './expenseMetricsFinancialSubProfileMetrics'; import { FinancialUserProfileType } from './financialUserProfileType'; import { IncomeMetricsFinancialSubProfile } from './incomeMetricsFinancialSubProfile'; import { InvestmentAccount } from './investmentAccount'; import { LocationFinancialSubProfile } from './locationFinancialSubProfile'; import { MerchantMetricsFinancialSubProfile } from './merchantMetricsFinancialSubProfile'; import { MortgageAccount } from './mortgageAccount'; import { PaymentChannelMetricsFinancialSubProfile } from './paymentChannelMetricsFinancialSubProfile'; import { StudentLoanAccount } from './studentLoanAccount'; /** * MelodyFinancialContext represents the financial context of a user. This message is used to represent the financial context of a user. */ export declare class MelodyFinancialContext { 'categories'?: Array; 'expenses'?: Array; 'income'?: Array; 'locations'?: Array; 'merchants'?: Array; 'paymentChannels'?: Array; 'bankAccounts'?: Array; 'investmentAccounts'?: Array; 'creditAccounts'?: Array; 'mortgageLoanAccounts'?: Array; 'studentLoanAccounts'?: Array; 'financialUserProfileType'?: FinancialUserProfileType; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace MelodyFinancialContext { }