import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { V3CompleteAddressEntryRequest, V3CompleteAddressEntryRequest$Outbound } from "./v3completeaddressentryrequest.js"; export type V3CompleteIndividualRequest = { /** * Address of the individual. Note that though this is an array, only the first address in the array will be processed. */ addresses?: Array | undefined; /** * The date of birth of the individual in one of these formats: YYYY-MM-DD, YYYY-MM, or MM-DD. Acceptable characters are: numeric with symbol '-'. */ dob?: string | undefined; /** * Email address of the individual. Note that though this is an array, only the first email address in the array will be processed. */ emailAddresses?: Array | undefined; /** * The first name of the individual. */ firstName?: string | undefined; /** * The last name of the individual. */ lastName?: string | undefined; /** * The social security number of the individual. */ ssn?: string | undefined; }; /** @internal */ export declare const V3CompleteIndividualRequest$inboundSchema: z.ZodType; /** @internal */ export type V3CompleteIndividualRequest$Outbound = { addresses?: Array | undefined; dob?: string | undefined; emailAddresses?: Array | undefined; firstName?: string | undefined; lastName?: string | undefined; ssn?: string | undefined; }; /** @internal */ export declare const V3CompleteIndividualRequest$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 V3CompleteIndividualRequest$ { /** @deprecated use `V3CompleteIndividualRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3CompleteIndividualRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3CompleteIndividualRequest$Outbound` instead. */ type Outbound = V3CompleteIndividualRequest$Outbound; } export declare function v3CompleteIndividualRequestToJSON(v3CompleteIndividualRequest: V3CompleteIndividualRequest): string; export declare function v3CompleteIndividualRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3completeindividualrequest.d.ts.map