Interface CoinbaseAccount

interface CoinbaseAccount {
    active: boolean;
    available_on_consumer?: true;
    balance: string;
    currency: string;
    destination_tag_name?: string;
    destination_tag_regex?: string;
    hold_balance?: string;
    hold_currency?: string;
    id: string;
    name: string;
    primary: boolean;
    sepa_deposit_information?: SEPADepositInformation;
    type: AccountType;
    wire_deposit_information?: WireDepositInformation;
}

Properties

active: boolean
available_on_consumer?: true
balance: string
currency: string
destination_tag_name?: string
destination_tag_regex?: string
hold_balance?: string
hold_currency?: string
id: string
name: string
primary: boolean
sepa_deposit_information?: SEPADepositInformation
type: AccountType
wire_deposit_information?: WireDepositInformation