/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetBillingAddressResponse } from './getBillingAddressResponse'; import { GetTransactionResponse } from './getTransactionResponse'; /** Response object for getting a boleto transaction */ export interface GetBoletoTransactionResponse extends GetTransactionResponse { url?: string | null; barcode?: string | null; nossoNumero?: string | null; bank?: string | null; documentNumber?: string | null; instructions?: string | null; billingAddress?: GetBillingAddressResponse | null; dueAt?: string | null; qrCode?: string | null; line?: string | null; pdfPassword?: string | null; pdf?: string | null; paidAt?: string | null; paidAmount?: string | null; type?: string | null; creditAt?: string | null; /** Soft Descriptor */ statementDescriptor?: string | null; } export declare const getBoletoTransactionResponseSchema: Schema;