/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; /** Response object for getting an payable */ export interface GetPayableResponse { id?: bigint | null; status?: string | null; amount?: number | null; fee?: number | null; anticipationFee?: number | null; fraudCoverageFee?: number | null; installment?: number | null; gatewayId?: bigint | null; chargeId?: string | null; splitId?: string | null; bulkAnticipationId?: string | null; anticipationId?: string | null; recipientId?: string | null; originatorModel?: string | null; originatorModelId?: string | null; paymentDate?: string | null; originalPaymentDate?: string | null; type?: string | null; paymentMethod?: string | null; accrualAt?: string | null; createdAt?: string | null; liquidationArrangementId?: string | null; } export declare const getPayableResponseSchema: Schema;