/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { ApiResponse, RequestOptions } from '../core'; import { GetPayableResponse } from '../models/getPayableResponse'; import { ListPayablesResponse } from '../models/listPayablesResponse'; import { BaseController } from './baseController'; export declare class PayablesController extends BaseController { /** * @param type * @param splitId * @param bulkAnticipationId * @param installment * @param status * @param recipientId * @param amount * @param chargeId * @param paymentDateUntil * @param paymentDateSince * @param updatedUntil * @param updatedSince * @param createdUntil * @param createdSince * @param liquidationArrangementId * @param page * @param size * @param gatewayId * @return Response from the API call */ getPayables(type?: string, splitId?: string, bulkAnticipationId?: string, installment?: number, status?: string, recipientId?: string, amount?: number, chargeId?: string, paymentDateUntil?: string, paymentDateSince?: string, updatedUntil?: string, updatedSince?: string, createdUntil?: string, createdSince?: string, liquidationArrangementId?: string, page?: number, size?: number, gatewayId?: bigint, requestOptions?: RequestOptions): Promise>; /** * @param id * @return Response from the API call */ getPayableById(id: bigint, requestOptions?: RequestOptions): Promise>; }