finerio-pfm-unnax
Version:
This SDK lets you connect to [Finerio PFM API Unnax](http://ec2-3-16-174-50.us-east-2.compute.amazonaws.com:8082/swagger-ui/index.html#/) in an easier way.
60 lines (59 loc) • 1.48 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class AccountPayload {
constructor(_financialEntityId, _nature, _name, _number, _balance, _chargeable) {
this._financialEntityId = _financialEntityId;
this._nature = _nature;
this._name = _name;
this._number = _number;
this._balance = _balance;
this._chargeable = _chargeable;
}
get financialEntityId() {
return this._financialEntityId;
}
set financialEntityId(value) {
this._financialEntityId = value;
}
get nature() {
return this._nature;
}
set nature(value) {
this._nature = value;
}
get name() {
return this._name;
}
set name(value) {
this._name = value;
}
get number() {
return this._number;
}
set number(value) {
this._number = value;
}
get balance() {
return this._balance;
}
set balance(value) {
this._balance = value;
}
get chargeable() {
return this._chargeable;
}
set chargeable(value) {
this._chargeable = value;
}
get plainObject() {
return {
financialEntityId: this._financialEntityId,
nature: this._nature,
name: this._name,
number: this._number,
balance: this._balance,
chargeable: this._chargeable,
};
}
}
exports.default = AccountPayload;