UNPKG

bankson-js-mb

Version:

Bankson.fi Node client, Mad Booster fork

14 lines 448 B
import Qs from 'qs'; import BaseSubClient from '../baseSubClient.js'; export default class InboundPayments extends BaseSubClient { fetchV2(opts) { return this.base.get('/v2/inbound-payments?' + Qs.stringify(opts)); } refreshV2(certificateId) { throw new Error('Not implemented'); } batchV2(batchId, type = 'json') { throw new Error('Not implemented'); } } //# sourceMappingURL=inbound-payments.js.map