Sha256: 5bf4cef6dd4eeaf0b51542bc57b7aae2456c71e89fc4803ffb74c98ede9ee389
Contents?: true
Size: 1.51 KB
Versions: 3
Compression:
Stored size: 1.51 KB
Contents
# CybridApiBank::PostQuoteBankModel ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **product_type** | **String** | The type of product the quote is for. | [optional][default to 'trading'] | | **customer_guid** | **String** | The unique identifier for the customer. | [optional] | | **asset** | **String** | The asset code the quote was requested for. Populated for funding quotes. | [optional] | | **symbol** | **String** | Symbol the quote is being requested for. Format is \"asset-counter_asset\" in uppercase. See the Symbols API for a complete list of cryptocurrencies supported. Populated for trade quotes. | [optional] | | **side** | **String** | The direction for trade quotes: either 'buy' or 'sell'. The direction for funding quotes: either 'deposit' or 'withdrawal'. | | | **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] | ## Example ```ruby require 'cybrid_api_bank_ruby' instance = CybridApiBank::PostQuoteBankModel.new( product_type: null, customer_guid: null, asset: null, symbol: null, side: null, receive_amount: null, deliver_amount: null ) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
cybrid_api_bank_ruby-0.54.7 | docs/PostQuoteBankModel.md |
cybrid_api_bank_ruby-0.54.6 | docs/PostQuoteBankModel.md |
cybrid_api_bank_ruby-0.54.5 | docs/PostQuoteBankModel.md |