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