/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { CreateCheckoutCardInstallmentOptionRequest } from './createCheckoutCardInstallmentOptionRequest'; import { CreatePaymentAuthenticationRequest } from './createPaymentAuthenticationRequest'; /** Checkout card payment request */ export interface CreateCheckoutCreditCardPaymentRequest { /** Card invoice text descriptor */ statementDescriptor?: string; /** Payment installment options */ installments?: CreateCheckoutCardInstallmentOptionRequest[]; /** Creates payment authentication */ authentication?: CreatePaymentAuthenticationRequest; /** Authorize and capture? */ capture?: boolean; } export declare const createCheckoutCreditCardPaymentRequestSchema: Schema;