/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { CreateThreeDSecureRequest } from './createThreeDSecureRequest'; /** The payment authentication request */ export interface CreatePaymentAuthenticationRequest { /** The Authentication type */ type: string; /** The 3D-S authentication object */ threedSecure: CreateThreeDSecureRequest; } export declare const createPaymentAuthenticationRequestSchema: Schema;