import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * An account's identifying information. */ export type ProfileCreationData = { /** * Whether or not an account should be created. */ createAccount: boolean; /** * The given name of the person associated with this profile. */ firstName: string; /** * The last name of the person associated with this profile. */ lastName: string; /** * The email address asscoiated with this profile. */ email: string; /** * The phone number associated with this profile. */ phone?: string | undefined; }; /** @internal */ export declare const ProfileCreationData$inboundSchema: z.ZodType; /** @internal */ export type ProfileCreationData$Outbound = { create_account: boolean; first_name: string; last_name: string; email: string; phone?: string | undefined; }; /** @internal */ export declare const ProfileCreationData$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 ProfileCreationData$ { /** @deprecated use `ProfileCreationData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ProfileCreationData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ProfileCreationData$Outbound` instead. */ type Outbound = ProfileCreationData$Outbound; } export declare function profileCreationDataToJSON(profileCreationData: ProfileCreationData): string; export declare function profileCreationDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=profilecreationdata.d.ts.map