Member Junction
    Preparing search index...

    Account balance information

    interface AccountBalance {
        accountCode: string;
        accountId: string;
        accountName: string;
        accountSubType: string;
        accountType: string;
        asOfDate: Date;
        balanceWithSubAccounts: number;
        currency: string;
        currentBalance: number;
        isActive: boolean;
        level: number;
        normalBalance: "Debit" | "Credit";
        parentAccountId?: string;
        parentAccountName?: string;
    }
    Index

    Properties

    accountCode: string
    accountId: string
    accountName: string
    accountSubType: string
    accountType: string
    asOfDate: Date
    balanceWithSubAccounts: number
    currency: string
    currentBalance: number
    isActive: boolean
    level: number
    normalBalance: "Debit" | "Credit"
    parentAccountId?: string
    parentAccountName?: string