Sha256: 4546e4fadc84e44f1d0960742b32ded33d642ddcccd99d753344c084f07eec19
Contents?: true
Size: 1.7 KB
Versions: 219
Compression:
Stored size: 1.7 KB
Contents
# CybridApiBank::QuoteBankModel ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **guid** | **String** | Auto-generated unique identifier for the quote. | [optional] | | **product_type** | **String** | The type of product the quote is for. | [optional] | | **customer_guid** | **String** | The unique identifier for the customer. | [optional] | | **symbol** | **String** | Symbol the quote was requested for. Format is \"asset-counter_asset\" in uppercase. Populated for trade quotes. | [optional] | | **side** | **String** | The direction of the quote: either 'buy' or 'sell' for trade quotes. | [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 for trade quotes. | [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 for trade quotes. | [optional] | | **fee** | **Integer** | The fee associated with the trade. Denominated in \"counter_asset\" base units for trade quotes. | [optional] | | **issued_at** | **Time** | ISO8601 datetime the quote was created at. | [optional] | | **expires_at** | **Time** | ISO8601 datetime the quote is expiring at. Populated for trading quotes. | [optional] | ## Example ```ruby require 'cybrid_api_bank_ruby' instance = CybridApiBank::QuoteBankModel.new( guid: null, product_type: null, customer_guid: null, symbol: null, side: null, receive_amount: null, deliver_amount: null, fee: null, issued_at: null, expires_at: null ) ```
Version data entries
219 entries across 219 versions & 1 rubygems