Sha256: e057b149a50816b8a110002271519d99296ef9c5fc2537616ae32c881049b1bb
Contents?: true
Size: 1.79 KB
Versions: 5
Compression:
Stored size: 1.79 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 book transfer quotes: either 'deposit' or 'withdrawal'. The direction for crypto transfer quotes: '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, bank_guid: null, customer_guid: null, asset: null, symbol: null, side: null, receive_amount: null, deliver_amount: null ) ```
Version data entries
5 entries across 5 versions & 1 rubygems