/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { CreateAddressRequest } from './createAddressRequest'; import { CreateFineRequest } from './createFineRequest'; import { CreateInterestRequest } from './createInterestRequest'; /** Contains the settings for creating a boleto payment */ export interface CreateBoletoPaymentRequest { /** Number of retries */ retries: number; /** The bank code, containing three characters. The available codes are on the API specification */ bank?: string | null; /** The instructions field that will be printed on the boleto. */ instructions: string; /** Boleto due date */ dueAt?: string | null; /** Card's billing address */ billingAddress: CreateAddressRequest; /** The address id for the billing address */ billingAddressId?: string | null; /** Customer identification number with the bank */ nossoNumero?: string | null; /** Boleto identification */ documentNumber: string; /** Soft Descriptor */ statementDescriptor: string; interest?: CreateInterestRequest | null; fine?: CreateFineRequest | null; maxDaysToPayPastDue?: number | null; } export declare const createBoletoPaymentRequestSchema: Schema;