Sha256: 98091067a3f2f49ad4e152de1ffd50be898fad64b57e4569a4b867acf0f0fcbb
Contents?: true
Size: 1.5 KB
Versions: 29
Compression:
Stored size: 1.5 KB
Contents
# CybridApiBank::TransferBankModel ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **guid** | **String** | Auto-generated unique identifier for the trade. | [optional] | | **transfer_type** | **String** | The type of transfer. | [optional] | | **customer_guid** | **String** | The associated customer's identifier. | [optional] | | **quote_guid** | **String** | The associated quote's identifier. | [optional] | | **asset** | **String** | The asset the transfer is related to, e.g., USD. | [optional] | | **side** | **String** | The direction of the quote: 'deposit' or 'withdrawal'. | [optional] | | **state** | **String** | The trade's state | [optional] | | **amount** | **Integer** | The amount being transferred. | [optional] | | **fee** | **Integer** | The fee associated with the trade. | [optional] | | **network_fee** | **Integer** | The network fee in base units of network_fee_asset. Only present on `crypto` transfers. | [optional] | | **network_fee_asset** | **String** | The asset code of the network fee. | [optional] | | **created_at** | **Time** | ISO8601 datetime the bank was created at. | [optional] | ## Example ```ruby require 'cybrid_api_bank_ruby' instance = CybridApiBank::TransferBankModel.new( guid: null, transfer_type: null, customer_guid: null, quote_guid: null, asset: null, side: null, state: null, amount: null, fee: null, network_fee: null, network_fee_asset: null, created_at: null ) ```
Version data entries
29 entries across 29 versions & 1 rubygems