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;
}
