/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { 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 declare const createCardOptionsRequestSchema: Schema;