Sha256: b59b7decce21e8722bcdd4d5376e19381d7c767925ffbea7d424c4c540fcabf4
Contents?: true
Size: 1.55 KB
Versions: 1054
Compression:
Stored size: 1.55 KB
Contents
# CybridApiBank::TradeBankModel ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **guid** | **String** | Auto-generated unique identifier for the trade. | [optional] | | **customer_guid** | **String** | The associated customer's identifier. | [optional] | | **quote_guid** | **String** | The associated quote's identifier. | [optional] | | **symbol** | **String** | The trade symbol the pricing is related to. Format is asset-counter_asset, e.g., BTC-USD. | [optional] | | **side** | **String** | The direction of the quote: either 'buy' or 'sell'. | [optional] | | **state** | **String** | The trade's state | [optional] | | **receive_amount** | **Integer** | The amount to be received in base units of the currency: currency is \"asset\" for buy and \"counter_asset\" for sell. | [optional] | | **deliver_amount** | **Integer** | The amount to be delivered in base units of the currency: currency is \"counter_asset\" for buy and \"asset\" for sell. | [optional] | | **fee** | **Integer** | The fee associated with the trade. Denominated in \"counter_asset\" base units | [optional] | | **created_at** | **Time** | ISO8601 datetime the bank was created at. | [optional] | ## Example ```ruby require 'cybrid_api_bank_ruby' instance = CybridApiBank::TradeBankModel.new( guid: null, customer_guid: null, quote_guid: null, symbol: null, side: null, state: null, receive_amount: null, deliver_amount: null, fee: null, created_at: null ) ```
Version data entries
1,054 entries across 1,054 versions & 1 rubygems