UNPKG

mpp-sdk

Version:

SDK to talk to the Memento Payments Platform

15 lines (14 loc) 458 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const base_1 = require("./base"); const helpers_1 = require("../utils/helpers"); class NotificationsEndpoint extends base_1.BaseEndpoint { list(filters) { return this.doRequest({ url: "/notifications", method: "GET", params: (0, helpers_1.filtersToParams)(filters || {}), }); } } exports.default = NotificationsEndpoint;