# DepositAccountBalanceSummary

Represents balance summary for a deposit account including average, total, and minimum balances for a specific entry date.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**avgBalance** | **number** | The average balance for the entry date | [optional] [readonly] [default to undefined]
**encodedKey** | **string** | The encoded key of the deposit account | [optional] [readonly] [default to undefined]
**entryDate** | **string** | The date for which the balance summary are calculated | [optional] [readonly] [default to undefined]
**id** | **string** | The ID of the deposit account | [optional] [readonly] [default to undefined]
**minBalance** | **number** | The minimum balance for the entry date | [optional] [readonly] [default to undefined]
**totalBalance** | **number** | The total balance for the entry date | [optional] [readonly] [default to undefined]

## Example

```typescript
import { DepositAccountBalanceSummary } from './api';

const instance: DepositAccountBalanceSummary = {
    avgBalance,
    encodedKey,
    entryDate,
    id,
    minBalance,
    totalBalance,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
