/**
* 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 { ActionableInsight } from './actionableInsight';
import { FinancialUserProfileType } from './financialUserProfileType';
import { Link } from './link';
import { PersonalActionableInsight } from './personalActionableInsight';
import { SmartNote } from './smartNote';
import { StripeSubscription } from './stripeSubscription';
export declare class FinancialUserProfile {
'id'?: string;
'userId'?: string;
'stripeCustomerId'?: string;
'stripeSubscriptions'?: StripeSubscription;
'link'?: Array;
'actionableInsights'?: Array;
'email'?: string;
'actionablePersonalInsights'?: Array;
'profileType'?: FinancialUserProfileType;
'notes'?: Array;
'orgId': string;
'tenantId': string;
'createdAt'?: Date;
'deletedAt'?: Date;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export declare namespace FinancialUserProfile { }