/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetTransactionResponse } from './getTransactionResponse'; /** Response object for getting a bank transfer transaction */ export interface GetBankTransferTransactionResponse extends GetTransactionResponse { /** Payment url */ url?: string; /** Transaction identifier for the bank */ bankTid?: string; /** Bank */ bank?: string; /** Payment date */ paidAt?: string; /** Paid amount */ paidAmount?: number; } export declare const getBankTransferTransactionResponseSchema: Schema;