import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Name detail used for Dow Jones Profile details */ export type NameDetail = { /** * Dow Jones persons first name */ givenName?: string | undefined; /** * Dow Jones persons middle name */ middleNames?: string | undefined; /** * Dow Jones persons name suffix */ nameSuffix?: string | undefined; /** * Dow Jones persons name type */ nameType?: string | undefined; /** * Dow Jones persons last name */ surname?: string | undefined; /** * Dow Jones persons title */ titleHonorific?: string | undefined; }; /** @internal */ export declare const NameDetail$inboundSchema: z.ZodType; /** @internal */ export type NameDetail$Outbound = { given_name?: string | undefined; middle_names?: string | undefined; name_suffix?: string | undefined; name_type?: string | undefined; surname?: string | undefined; title_honorific?: string | undefined; }; /** @internal */ export declare const NameDetail$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 NameDetail$ { /** @deprecated use `NameDetail$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `NameDetail$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `NameDetail$Outbound` instead. */ type Outbound = NameDetail$Outbound; } export declare function nameDetailToJSON(nameDetail: NameDetail): string; export declare function nameDetailFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=namedetail.d.ts.map