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.
16 lines (15 loc) • 513 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class SignUpResponse {
constructor({ id, name, firstLastName, secondLastName, email, companyName, username, apiKey }) {
this.id = id;
this.name = name;
this.firstLastName = firstLastName;
this.secondLastName = secondLastName;
this.email = email;
this.companyName = companyName;
this.username = username;
this.apiKey = apiKey;
}
}
exports.default = SignUpResponse;