import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AccountGoalsUpdate, AccountGoalsUpdate$Outbound } from "./accountgoalsupdate.js"; import { CustomerProfileUpdate, CustomerProfileUpdate$Outbound } from "./customerprofileupdate.js"; /** * Investor profile. */ export type InvestmentProfileUpdate = { /** * The account goals on an investor profile. */ accountGoals?: AccountGoalsUpdate | undefined; /** * A detailed summary of financial and personal details of an investor, to help understand the investor's financial standing, investment experience and risk tolerance. */ customerProfile?: CustomerProfileUpdate | undefined; }; /** @internal */ export declare const InvestmentProfileUpdate$inboundSchema: z.ZodType; /** @internal */ export type InvestmentProfileUpdate$Outbound = { account_goals?: AccountGoalsUpdate$Outbound | undefined; customer_profile?: CustomerProfileUpdate$Outbound | undefined; }; /** @internal */ export declare const InvestmentProfileUpdate$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace InvestmentProfileUpdate$ { /** @deprecated use `InvestmentProfileUpdate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `InvestmentProfileUpdate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `InvestmentProfileUpdate$Outbound` instead. */ type Outbound = InvestmentProfileUpdate$Outbound; } export declare function investmentProfileUpdateToJSON(investmentProfileUpdate: InvestmentProfileUpdate): string; export declare function investmentProfileUpdateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=investmentprofileupdate.d.ts.map