/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { number, object, Schema } from '../schema'; /** Options for card installment */ export interface CreateCheckoutCardInstallmentOptionRequest { /** Installment quantity */ number: number; /** Total amount */ total: number; } export const createCheckoutCardInstallmentOptionRequestSchema: Schema = object( { number: ['number', number()], total: ['total', number()] } );