Sha256: c62b04b822cb80655c3c9eb5be961c09b0a02f5d9d03084582fc1bfecde2db61
Contents?: true
Size: 1.01 KB
Versions: 3
Compression:
Stored size: 1.01 KB
Contents
# Buildium::BankAccountDepositMessage ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **id** | **Integer** | Deposit unique identifier. | [optional] | | **entry_date** | **Date** | Date the deposit was recorded. | [optional] | | **memo** | **String** | Memo associated with the deposit, if applicable. | [optional] | | **total_amount** | **Float** | Sum of all `Journal.Lines.Amount` entries in the deposit. | [optional] | | **lines** | [**Array<BankAccountDepositLineMessage>**](BankAccountDepositLineMessage.md) | A collection of line items associated with the deposit. | [optional] | | **payment_transaction_ids** | **Array<Integer>** | A collection of payment transaction identifiers that were included in this deposit transaction. | [optional] | ## Example ```ruby require 'buildium-ruby' instance = Buildium::BankAccountDepositMessage.new( id: null, entry_date: null, memo: null, total_amount: null, lines: null, payment_transaction_ids: null ) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
buildium-ruby-3.0.0 | docs/BankAccountDepositMessage.md |
buildium-ruby-2.1.0 | docs/BankAccountDepositMessage.md |
buildium-ruby-2.0.1 | docs/BankAccountDepositMessage.md |