/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { EnrollmentStatus } from './enrollmentStatus.js'; import { PaResStatus } from './paResStatus.js'; /** Results of 3D Secure Authentication. */ export interface ThreeDSecureCardAuthenticationResponse { /** Transactions status result identifier. The outcome of the issuer's authentication. */ authenticationStatus?: PaResStatus; /** Status of Authentication eligibility. */ enrollmentStatus?: EnrollmentStatus; /** The externally received 3ds authentication id, to be returned in card detokenization response. */ authenticationId?: string; } export declare const threeDSecureCardAuthenticationResponseSchema: Schema; //# sourceMappingURL=threeDSecureCardAuthenticationResponse.d.ts.map