/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetCardResponse } from './getCardResponse'; import { GetRetryTransactionInformationResponse } from './getRetryTransactionInformationResponse'; import { GetTransactionResponse } from './getTransactionResponse'; /** Response object for getting a credit card transaction */ export interface GetCreditCardTransactionResponse extends GetTransactionResponse { /** Text that will appear on the credit card's statement */ statementDescriptor?: string | null; /** Acquirer name */ acquirerName?: string; /** Aquirer affiliation code */ acquirerAffiliationCode?: string | null; /** Acquirer TID */ acquirerTid?: string; /** Acquirer NSU */ acquirerNsu?: string; /** Acquirer authorization code */ acquirerAuthCode?: string | null; /** Operation type */ operationType?: string | null; /** Card data */ card?: GetCardResponse | null; /** Acquirer message */ acquirerMessage?: string | null; /** Acquirer Return Code */ acquirerReturnCode?: string | null; /** Number of installments */ installments?: number | null; /** 3D-S authentication Url */ threedAuthenticationUrl?: string | null; /** Identify when a card is prepaid, credit or debit. */ fundingSource?: string | null; /** Retry transaction information */ retryInfo?: GetRetryTransactionInformationResponse | null; brandId?: string | null; /** Business model identifier */ indirectAcceptor?: string | null; } export declare const getCreditCardTransactionResponseSchema: Schema;