import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { V3ChallengeIndividualRequest, V3ChallengeIndividualRequest$Outbound } from "./v3challengeindividualrequest.js"; export type V3ChallengeResponse = { /** * The evaluation result for the policy. This is an upcoming field but is not yet enabled. */ evaluation?: { [k: string]: any; } | undefined; individual?: V3ChallengeIndividualRequest | undefined; /** * The next set of allowed calls in the same flow. */ next: { [k: string]: string; }; /** * True if the challenge was accepted and user info retrieved. */ success: boolean; }; /** @internal */ export declare const V3ChallengeResponse$inboundSchema: z.ZodType; /** @internal */ export type V3ChallengeResponse$Outbound = { evaluation?: { [k: string]: any; } | undefined; individual?: V3ChallengeIndividualRequest$Outbound | undefined; next: { [k: string]: string; }; success: boolean; }; /** @internal */ export declare const V3ChallengeResponse$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 V3ChallengeResponse$ { /** @deprecated use `V3ChallengeResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3ChallengeResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3ChallengeResponse$Outbound` instead. */ type Outbound = V3ChallengeResponse$Outbound; } export declare function v3ChallengeResponseToJSON(v3ChallengeResponse: V3ChallengeResponse): string; export declare function v3ChallengeResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3challengeresponse.d.ts.map