Sha256: 5f26e41c85fffdf7ded1d587da380dbea19b877874755710699623d12e3594f1

Contents?: true

Size: 1.36 KB

Versions: 3

Compression:

Stored size: 1.36 KB

Contents

# Buildium::BankAccountTransactionMessage

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **id** | **Integer** | Transaction unique identifier. | [optional] |
| **entry_date** | **Date** | Date of the transaction. | [optional] |
| **transaction_type** | **String** | Type of transaction. | [optional] |
| **check_number** | **String** | Check number associated with the transaction, if applicable. | [optional] |
| **memo** | **String** | Memo associated with the transaction, if applicable. | [optional] |
| **amount** | **Float** | The total amount of the transaction. | [optional] |
| **reconciliation_status** | **String** | Indicates the reconciliation status of the transaction. | [optional] |
| **paid_by** | [**Array<PaidByMessage>**](PaidByMessage.md) | The entity that made the payment. | [optional] |
| **paid_to** | [**Array<PayeeMessage>**](PayeeMessage.md) | The entity that received the payment. | [optional] |
| **balance** | **Float** | The bank account balance after this transaction was applied. | [optional] |

## Example

```ruby
require 'buildium-ruby'

instance = Buildium::BankAccountTransactionMessage.new(
  id: null,
  entry_date: null,
  transaction_type: null,
  check_number: null,
  memo: null,
  amount: null,
  reconciliation_status: null,
  paid_by: null,
  paid_to: null,
  balance: null
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
buildium-ruby-3.0.0 docs/BankAccountTransactionMessage.md
buildium-ruby-2.1.0 docs/BankAccountTransactionMessage.md
buildium-ruby-2.0.1 docs/BankAccountTransactionMessage.md