/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetPaymentAuthenticationResponse } from './getPaymentAuthenticationResponse'; export interface GetCheckoutDebitCardPaymentResponse { /** Descrição na fatura */ statementDescriptor?: string | null; /** Payment Authentication response object data */ authentication?: GetPaymentAuthenticationResponse | null; } export declare const getCheckoutDebitCardPaymentResponseSchema: Schema;