/** * 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 cash transaction */ export interface GetCashTransactionResponse extends GetTransactionResponse { /** Description */ description?: string | null; } export declare const getCashTransactionResponseSchema: Schema;