/** * 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 debit card transaction */ export interface GetDebitCardTransactionResponse extends GetTransactionResponse { /** Text that will appear on the debit card's statement */ statementDescriptor?: string | null; /** Acquirer name */ acquirerName?: string | null; /** Aquirer affiliation code */ acquirerAffiliationCode?: string | null; /** Acquirer TID */ acquirerTid?: string | null; /** Acquirer NSU */ acquirerNsu?: string | null; /** 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; /** Merchant Plugin */ mpi?: string | null; /** Electronic Commerce Indicator (ECI) */ eci?: string | null; /** Authentication type */ authenticationType?: string | 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; } export declare const getDebitCardTransactionResponseSchema: Schema;