Bittrex v3.0.0 Bittrex.Withdrawal View Source
A Bittrex Withdrawal.
Link to this section Summary
Types
id
: unique ID for this withdrawal.currency_symbol
: unique symbol of currency to withdraw.quantity
: quantity to withdraw.address
: crypto address for this withdrawal.tx_cost
: TxCost of this withdrawal.tx_id
: TxID associated with this withdrawal.status
: current status of this withdrawal.created_at
: time stamp when this withdrawal was initiated.completed_at
: time stamp when this withdrawal was completed
Link to this section Types
Link to this type
t()
View Source
t()
View Source
t() :: %Bittrex.Withdrawal{
address: String.t(),
completed_at: NaiveDateTime.t(),
created_at: NaiveDateTime.t(),
currency_symbol: String.t(),
id: String.t(),
quantity: number(),
status: String.t(),
tx_cost: number(),
tx_id: String.t()
}
t() :: %Bittrex.Withdrawal{ address: String.t(), completed_at: NaiveDateTime.t(), created_at: NaiveDateTime.t(), currency_symbol: String.t(), id: String.t(), quantity: number(), status: String.t(), tx_cost: number(), tx_id: String.t() }
id
: unique ID for this withdrawal.currency_symbol
: unique symbol of currency to withdraw.quantity
: quantity to withdraw.address
: crypto address for this withdrawal.tx_cost
: TxCost of this withdrawal.tx_id
: TxID associated with this withdrawal.status
: current status of this withdrawal.created_at
: time stamp when this withdrawal was initiated.completed_at
: time stamp when this withdrawal was completed.