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.

11 lines (10 loc) 247 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Error { constructor(code, title, detail) { this.code = code; this.title = title; this.detail = detail; } } exports.default = Error;