/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetWithdrawSourceResponse } from './getWithdrawSourceResponse'; import { GetWithdrawTargetResponse } from './getWithdrawTargetResponse'; export interface GetWithdrawResponse { id?: string | null; gatewayId?: string | null; amount?: number | null; status?: string | null; createdAt?: string | null; updatedAt?: string | null; metadata?: string[] | null; fee?: number | null; fundingDate?: string | null; fundingEstimatedDate?: string | null; type?: string | null; source?: GetWithdrawSourceResponse | null; target?: GetWithdrawTargetResponse | null; } export declare const getWithdrawResponseSchema: Schema;