Sha256: 43cb1731ea918873f0dde5338eb61da4f696f78616f8ee637e1cfaef37065fad

Contents?: true

Size: 1.41 KB

Versions: 4

Compression:

Stored size: 1.41 KB

Contents

# Plaid::AccountAssetsAllOf

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **days_available** | **Float** | The duration of transaction history available for this Item, typically defined as the time since the date of the earliest transaction in that account. Only returned by Assets endpoints. | [optional] |
| **transactions** | [**Array<AssetReportTransaction>**](AssetReportTransaction.md) | Transaction history associated with the account. Only returned by Assets endpoints. Transaction history returned by endpoints such as `/transactions/get` or `/investments/transactions/get` will be returned in the top-level `transactions` field instead. | [optional] |
| **owners** | [**Array<Owner>**](Owner.md) | Data returned by the financial institution about the account owner or owners. Only returned by Identity or Assets endpoints. Multiple owners on a single account will be represented in the same `owner` object, not in multiple owner objects within the array. |  |
| **historical_balances** | [**Array<HistoricalBalance>**](HistoricalBalance.md) | Calculated data about the historical balances on the account. Only returned by Assets endpoints. | [optional] |

## Example

```ruby
require 'plaid'

instance = Plaid::AccountAssetsAllOf.new(
  days_available: null,
  transactions: null,
  owners: null,
  historical_balances: null
)
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
plaid-14.0.0.beta.4 docs/AccountAssetsAllOf.md
plaid-14.0.0.beta.3 docs/AccountAssetsAllOf.md
plaid-14.0.0.beta.2 docs/AccountAssetsAllOf.md
plaid-14.0.0.beta.1 docs/AccountAssetsAllOf.md