import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ThreeDSecureScenarioConditions } from "./threedsecurescenarioconditions.js"; import { ThreeDSecureScenarioOutcome } from "./threedsecurescenariooutcome.js"; export type ThreeDSecureScenario = { /** * Always `three-d-secure-scenario`. */ type: "three-d-secure-scenario"; /** * Unique identifier for the 3DS scenario */ id: string; /** * ID of the associated merchant account */ merchantAccountId: string; /** * The date and time when this 3DS scenario was first created in our system. */ createdAt: Date; /** * The date and time when this 3DS scenario was last updated in our system. */ updatedAt: Date; conditions: ThreeDSecureScenarioConditions; outcome: ThreeDSecureScenarioOutcome; }; /** @internal */ export declare const ThreeDSecureScenario$inboundSchema: z.ZodType; export declare function threeDSecureScenarioFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=threedsecurescenario.d.ts.map