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.
19 lines (18 loc) • 589 B
TypeScript
import { IFinancialEntity } from 'interfaces';
export default class FinancialEntity implements IFinancialEntity {
private _id;
private _name;
private _code;
private _imagePath;
private _isBankAggregation;
private _dateCreated;
private _lastUpdated;
constructor({ id, name, code, imagePath, isBankAggregation, dateCreated, lastUpdated }: IFinancialEntity);
get id(): number;
get name(): string;
get code(): string;
get imagePath(): string;
get isBankAggregation(): boolean;
get dateCreated(): number;
get lastUpdated(): number;
}