Bittrex v3.0.0 Bittrex.Deposit View Source
A Bittrex Deposit.
Link to this section Summary
Types
id
: unique ID for this deposit.currency_symbol
: unique symbol of the currency being deposited to.quantity
: quantity to deposit.address
: crypto address for this deposit.tx_id
: TxID for the deposit.confirmations
: current count of confirmations.created_at
: time stamp when this deposit was initiated.updated_at
: time stamp when this deposit was last updated.status
: current status of this deposit
Link to this section Types
Link to this type
t()
View Source
t()
View Source
t() :: %Bittrex.Deposit{
address: String.t(),
confirmations: integer(),
created_at: NaiveDateTime.t(),
currency_symbol: String.t(),
id: String.t(),
quantity: number(),
status: String.t(),
tx_id: String.t(),
updated_at: NaiveDateTime.t()
}
t() :: %Bittrex.Deposit{ address: String.t(), confirmations: integer(), created_at: NaiveDateTime.t(), currency_symbol: String.t(), id: String.t(), quantity: number(), status: String.t(), tx_id: String.t(), updated_at: NaiveDateTime.t() }
id
: unique ID for this deposit.currency_symbol
: unique symbol of the currency being deposited to.quantity
: quantity to deposit.address
: crypto address for this deposit.tx_id
: TxID for the deposit.confirmations
: current count of confirmations.created_at
: time stamp when this deposit was initiated.updated_at
: time stamp when this deposit was last updated.status
: current status of this deposit.