# 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] | | **asset** | **String** | The asset code the quote was requested for. Populated for savings quotes. | [optional] | | **side** | **String** | The direction of the quote: either 'buy' or 'sell' for trade quotes; 'deposit' or 'withdrawal' for savings 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 and currency is always \"asset\" for savings 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 and currency is always \"asset\" for savings quotes. | [optional] | | **fee** | **Integer** | The fee associated with the trade. Denominated in \"counter_asset\" base units for trade quotes and \"asset\" for savings 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] | | **product_provider** | **String** | The provider for the product being quoted. Populated for savings quotes. | [optional] | ## Example ```ruby require 'cybrid_api_bank_ruby' instance = CybridApiBank::QuoteBankModel.new( guid: null, product_type: null, customer_guid: null, symbol: null, asset: null, side: null, receive_amount: null, deliver_amount: null, fee: null, issued_at: null, expires_at: null, product_provider: null ) ```