import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AccountGoalsCreate, AccountGoalsCreate$Outbound } from "./accountgoalscreate.js"; import { CustomerProfileCreate, CustomerProfileCreate$Outbound } from "./customerprofilecreate.js"; /** * Investor profile. */ export type InvestmentProfileCreate = { /** * The account goals on an investor profile. */ accountGoals?: AccountGoalsCreate | 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?: CustomerProfileCreate | undefined; }; /** @internal */ export declare const InvestmentProfileCreate$inboundSchema: z.ZodType; /** @internal */ export type InvestmentProfileCreate$Outbound = { account_goals?: AccountGoalsCreate$Outbound | undefined; customer_profile?: CustomerProfileCreate$Outbound | undefined; }; /** @internal */ export declare const InvestmentProfileCreate$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 InvestmentProfileCreate$ { /** @deprecated use `InvestmentProfileCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `InvestmentProfileCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `InvestmentProfileCreate$Outbound` instead. */ type Outbound = InvestmentProfileCreate$Outbound; } export declare function investmentProfileCreateToJSON(investmentProfileCreate: InvestmentProfileCreate): string; export declare function investmentProfileCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=investmentprofilecreate.d.ts.map