finance-mgn - v1.4.1
    Preparing search index...

    Represents the account statement returned by the FIO API.

    type AccountStatement = {
        accountStatement: {
            info: {
                accountId: string;
                bankId: string;
                bic: string;
                closingBalance: number;
                currency: string;
                dateEnd: string;
                dateStart: string;
                iban: string;
                idFrom: number;
                idLastDownload: number | null;
                idList: null | number[];
                idTo: number;
                openingBalance: number;
                yearList: null | string[];
            };
            transactionList: { transaction: FioTransaction[] };
        };
    }
    Index

    Properties

    Properties

    accountStatement: {
        info: {
            accountId: string;
            bankId: string;
            bic: string;
            closingBalance: number;
            currency: string;
            dateEnd: string;
            dateStart: string;
            iban: string;
            idFrom: number;
            idLastDownload: number | null;
            idList: null | number[];
            idTo: number;
            openingBalance: number;
            yearList: null | string[];
        };
        transactionList: { transaction: FioTransaction[] };
    }