import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3ValidateResponse = { /** * True if a DOB or SSN needs to be passed in on the next step. Only applicable to Pre-Fill. If implementing Prove Identity ignore this field. * * @remarks * It will always return false for this use case. */ challengeMissing: boolean; /** * The evaluation result for the policy. This is an upcoming field but is not yet enabled. */ evaluation?: { [k: string]: any; } | undefined; /** * The next set of allowed calls in the same flow. */ next: { [k: string]: string; }; /** * The number of the mobile phone for which validation was performed. */ phoneNumber?: string | undefined; /** * True if the phone number was validated. */ success: boolean; }; /** @internal */ export declare const V3ValidateResponse$inboundSchema: z.ZodType; /** @internal */ export type V3ValidateResponse$Outbound = { challengeMissing: boolean; evaluation?: { [k: string]: any; } | undefined; next: { [k: string]: string; }; phoneNumber?: string | undefined; success: boolean; }; /** @internal */ export declare const V3ValidateResponse$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 V3ValidateResponse$ { /** @deprecated use `V3ValidateResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3ValidateResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3ValidateResponse$Outbound` instead. */ type Outbound = V3ValidateResponse$Outbound; } export declare function v3ValidateResponseToJSON(v3ValidateResponse: V3ValidateResponse): string; export declare function v3ValidateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3validateresponse.d.ts.map