/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetThreeDSecureResponse } from './getThreeDSecureResponse'; /** Payment Authentication response */ export interface GetPaymentAuthenticationResponse { type?: string | null; /** 3D-S payment authentication response */ threedSecure?: GetThreeDSecureResponse | null; } export declare const getPaymentAuthenticationResponseSchema: Schema;