Sha256: 732d66ab642a0df5fcb858bf25a1c82b3bc70036fee53b55117e20f5a106f010
Contents?: true
Size: 1.92 KB
Versions: 127
Compression:
Stored size: 1.92 KB
Contents
# CybridApiBank::PostQuoteBankModel ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **product_type** | **String** | The type of product the quote is for. | [optional][default to 'trading'] | | **bank_guid** | **String** | The unique identifier for the bank. | [optional] | | **customer_guid** | **String** | The unique identifier for the customer. | [optional] | | **asset** | **String** | The asset code the quote was requested for. Populated for funding, book transfer and crypto transfer 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'. The direction for crypto transfer quotes: 'withdrawal'. Book transfers do not require a side. They are all 'deposit's. | [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] | | **fees** | [**Array<PostFeeBankModel>**](PostFeeBankModel.md) | The custom fees associated with the quote | [optional] | ## Example ```ruby require 'cybrid_api_bank_ruby' instance = CybridApiBank::PostQuoteBankModel.new( product_type: null, bank_guid: null, customer_guid: null, asset: null, symbol: null, side: null, receive_amount: null, deliver_amount: null, fees: null ) ```
Version data entries
127 entries across 127 versions & 1 rubygems