UNPKG

open-banking-pfm-sdk

Version:

The Open Banking PFM SDK uses Client classes and with **Promises** to get responses from the Open Banking PFM API in an easier way and structured as data models.

27 lines (26 loc) 593 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class BankAggStatus { constructor({ bankId, userId, status }) { this._bankId = bankId; this._userId = userId; this._status = status; } get bankId() { return this._bankId; } get userId() { return this._userId; } get status() { return this._status; } toObject() { return { bankId: this._bankId, userId: this._userId, status: this._status }; } } exports.default = BankAggStatus;