/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetFineResponse } from './getFineResponse'; import { GetInterestResponse } from './getInterestResponse'; /** Response object for getting a boleto */ export interface GetSubscriptionBoletoResponse { /** Interest */ interest?: GetInterestResponse | null; /** Fine */ fine?: GetFineResponse | null; maxDaysToPayPastDue?: number | null; } export declare const getSubscriptionBoletoResponseSchema: Schema;