View Source BitpandaApi.Entity.FiatWallet.Transaction (Bitpanda API v0.1.0)

This entity defines a transaction in a fiat wallet

Link to this section Summary

Types

Describes the transaction direction

Defines the status of a transaction

t()

Defines a crypto wallet transaction

Describes the transaction type

Link to this section Types

@type in_or_out() :: :incoming | :outgoing

Describes the transaction direction

@type status() :: :pending | :processing | :finished | :canceled

Defines the status of a transaction

@type t() :: %BitpandaApi.Entity.FiatWallet.Transaction{
  amount: Decimal.t(),
  datetime: DateTime.t(),
  fee: Decimal.t(),
  fiat_id: String.t(),
  id: String.t(),
  in_or_out: in_or_out(),
  status: status(),
  to_eur_rate: Decimal.t(),
  transaction_type: transaction_type(),
  user_id: String.t(),
  wallet_id: String.t()
}

Defines a crypto wallet transaction

@type transaction_type() ::
  :buy | :sell | :deposit | :withdrawal | :transfer | :refund

Describes the transaction type