/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetMovementObjectBaseResponse } from './getMovementObjectBaseResponse'; /** Generic response object for getting a BalanceOperation. */ export interface GetBalanceOperationResponse { id?: string | null; status?: string | null; balanceAmount?: string | null; balanceOldAmount?: string | null; type?: string | null; amount?: number | null; fee?: string | null; createdAt?: string | null; movementObject?: GetMovementObjectBaseResponse; } export declare const getBalanceOperationResponseSchema: Schema;