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.
15 lines (14 loc) • 348 B
TypeScript
export default interface IAccount {
id: number;
providerId?: string | null;
nature: string;
name: string;
number: string;
balance: number;
chargeable: boolean;
dateCreated: number;
lastUpdated: number;
isBankAggregation: boolean;
financialEntityId: number;
extra_data?: Map<string, string> | null;
}