export BalanceEntry

interface BalanceEntry {
    available?: number;
    currency?: null | string;
    formatted_available?: null | string;
    formatted_money_in?: null | string;
    formatted_money_out?: null | string;
    money_in?: number;
    money_out?: number;
    wallet_key?: null | string;
}

Properties

available?: number
currency?: null | string
formatted_available?: null | string
formatted_money_in?: null | string
formatted_money_out?: null | string
money_in?: number
money_out?: number
wallet_key?: null | string