import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IndividualNameUpdate = { /** * The individual's first given name. */ firstName?: string | undefined; /** * The individual's second given name, if any. */ middleName?: string | undefined; /** * The individual's family name. */ lastName?: string | undefined; /** * Suffix of a given name. */ suffix?: string | undefined; }; /** @internal */ export declare const IndividualNameUpdate$inboundSchema: z.ZodType; /** @internal */ export type IndividualNameUpdate$Outbound = { firstName?: string | undefined; middleName?: string | undefined; lastName?: string | undefined; suffix?: string | undefined; }; /** @internal */ export declare const IndividualNameUpdate$outboundSchema: z.ZodType; export declare function individualNameUpdateToJSON(individualNameUpdate: IndividualNameUpdate): string; export declare function individualNameUpdateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=individualnameupdate.d.ts.map