import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Address detail used for Dow Jones Profile details */ export type AddressDetail = { /** * Dow Jones persons address city */ addressCity?: string | undefined; /** * Dow Jones persons address line */ addressLine?: string | undefined; /** * Dow Jones persons address administrative area */ administrativeArea?: string | undefined; /** * Dow Jones persons address postal code */ postalCode?: string | undefined; /** * Two character region code, complies with https://cldr.unicode.org/index Example values: "US", "CA" */ regionCode?: string | undefined; }; /** @internal */ export declare const AddressDetail$inboundSchema: z.ZodType; /** @internal */ export type AddressDetail$Outbound = { address_city?: string | undefined; address_line?: string | undefined; administrative_area?: string | undefined; postal_code?: string | undefined; region_code?: string | undefined; }; /** @internal */ export declare const AddressDetail$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 AddressDetail$ { /** @deprecated use `AddressDetail$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AddressDetail$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AddressDetail$Outbound` instead. */ type Outbound = AddressDetail$Outbound; } export declare function addressDetailToJSON(addressDetail: AddressDetail): string; export declare function addressDetailFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=addressdetail.d.ts.map