UNPKG

bankson-js-mb

Version:

Bankson.fi Node client, Mad Booster fork

15 lines 652 B
import BaseSubClient from '../baseSubClient.js'; import type { BaseResponse, InboundPaymentResponse, PaginationOptions } from '../types.js'; interface InboundPaymentFilters extends PaginationOptions { updated_after?: string | null; bank_account?: string | null; payment_date_min?: string | null; payment_date_max?: string | null; } export default class InboundPayments extends BaseSubClient { fetchV2(opts: InboundPaymentFilters): Promise<BaseResponse<InboundPaymentResponse>>; refreshV2(certificateId: string): void; batchV2(batchId: string, type?: string): void; } export {}; //# sourceMappingURL=inbound-payments.d.ts.map