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