/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { CreateCardRequest } from './createCardRequest'; /** The settings for creating a voucher payment */ export interface CreateVoucherPaymentRequest { /** The text that will be shown on the voucher's statement */ statementDescriptor?: string; /** Card id */ cardId?: string; /** Card token */ cardToken?: string; /** Card info */ card?: CreateCardRequest; /** Defines whether the card has been used one or more times. */ recurrencyCycle?: string; } export declare const createVoucherPaymentRequestSchema: Schema;