/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetTransferSourceResponse } from './getTransferSourceResponse'; import { GetTransferTargetResponse } from './getTransferTargetResponse'; export interface GetTransfer { id: string; gatewayId: string; amount: number; status: string; createdAt: string; updatedAt: string; metadata?: Record; fee?: number; fundingDate?: string; fundingEstimatedDate?: string; type: string; source: GetTransferSourceResponse; target: GetTransferTargetResponse; } export declare const getTransferSchema: Schema;