import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CardScheme } from "./cardscheme.js"; export type ThreeDSecureDataV1 = { /** * The cardholder authentication value or AAV. */ cavv: string; /** * The ecommerce indicator for the 3DS transaction. */ eci: string; /** * The version of 3-D Secure that was used. */ version: string; /** * For 3-D Secure version 1, the enrolment response. For 3-D Secure version 2 and above, the transaction status from the `ARes`. */ directoryResponse: string; /** * The scheme/brand of the card that is used for 3-D Secure. */ scheme?: CardScheme | null | undefined; /** * The response for the 3DS authentication call. */ authenticationResponse: string; /** * The CAVV algorithm used. */ cavvAlgorithm: string; /** * The transaction identifier. */ xid: string; }; /** @internal */ export declare const ThreeDSecureDataV1$inboundSchema: z.ZodType; /** @internal */ export type ThreeDSecureDataV1$Outbound = { cavv: string; eci: string; version: string; directory_response: string; scheme?: string | null | undefined; authentication_response: string; cavv_algorithm: string; xid: string; }; /** @internal */ export declare const ThreeDSecureDataV1$outboundSchema: z.ZodType; export declare function threeDSecureDataV1ToJSON(threeDSecureDataV1: ThreeDSecureDataV1): string; export declare function threeDSecureDataV1FromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=threedsecuredatav1.d.ts.map