/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { boolean, object, Schema } from '../schema'; /** Options for creating the card */ export interface CreateCardOptionsRequest { /** Indicates if the card should be verified before creation. If true, executes an authorization before saving the card. */ verifyCard: boolean; } export const createCardOptionsRequestSchema: Schema = object( { verifyCard: ['verify_card', boolean()] } );