/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; export interface CreateCashPaymentRequest { /** Description */ description: string; /** Indicates whether cash collection will be confirmed in the act of creation */ confirm: boolean; } export declare const createCashPaymentRequestSchema: Schema;