import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { V3ChallengeAddressEntryRequest, V3ChallengeAddressEntryRequest$Outbound } from "./v3challengeaddressentryrequest.js"; export type V3ChallengeIndividualRequest = { /** * An array of addresses that belong to the individual. */ addresses?: Array | undefined; /** * The date of birth of the individual. */ dob?: string | undefined; /** * An array of email addresses that belong to the individual. */ 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 V3ChallengeIndividualRequest$inboundSchema: z.ZodType; /** @internal */ export type V3ChallengeIndividualRequest$Outbound = { addresses?: Array | undefined; dob?: string | undefined; emailAddresses?: Array | undefined; firstName?: string | undefined; lastName?: string | undefined; ssn?: string | undefined; }; /** @internal */ export declare const V3ChallengeIndividualRequest$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 V3ChallengeIndividualRequest$ { /** @deprecated use `V3ChallengeIndividualRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3ChallengeIndividualRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3ChallengeIndividualRequest$Outbound` instead. */ type Outbound = V3ChallengeIndividualRequest$Outbound; } export declare function v3ChallengeIndividualRequestToJSON(v3ChallengeIndividualRequest: V3ChallengeIndividualRequest): string; export declare function v3ChallengeIndividualRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3challengeindividualrequest.d.ts.map