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 Profile = { /** * 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 Profile$inboundSchema: z.ZodType; /** @internal */ export type Profile$Outbound = { first_name: string; last_name: string; email: string; phone?: string | undefined; }; /** @internal */ export declare const Profile$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 Profile$ { /** @deprecated use `Profile$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Profile$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Profile$Outbound` instead. */ type Outbound = Profile$Outbound; } export declare function profileToJSON(profile: Profile): string; export declare function profileFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=profile.d.ts.map