/** * 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 { FinancialUserProfileType } from './financialUserProfileType'; /** * CreateUserProfileResponse represents the response object returned after a successful user profile creation request. This message encapsulates the essential information that confirms the creation of a new financial user profile. */ export declare class CreateUserProfileResponse1 { /** * The same supabase user ID that was provided in the request. This ID can be used for future operations and queries related to this financial profile. @output This field is populated by the server upon successful profile creation. @example \"fp_1234567890abcdef\" */ 'supabaseAuthUserId'?: string; /** * The unique identifier for the record. @output This field is populated by the server upon successful profile creation. @example \"1000\" */ 'userId'?: string; /** * Timestamp of financial user profile creation */ 'createdAt'?: Date; 'profileType'?: 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 CreateUserProfileResponse1 { }