# DepositAccountBalances

Represents information about the balances of a deposit account.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**availableBalance** | **number** | The current available balance for deposit transactions. | [optional] [readonly] [default to undefined]
**blockedBalance** | **number** | The sum of all the blocked amounts on an account. | [optional] [readonly] [default to undefined]
**feesDue** | **number** | The amount of fees due to be paid on this account. | [optional] [readonly] [default to undefined]
**forwardAvailableBalance** | **number** | The sum of all the authorization hold amounts that have &#x60;CRDT&#x60; as the &#x60;creditDebitIndicator&#x60; for an account. | [optional] [readonly] [default to undefined]
**holdBalance** | **number** | The sum of all the authorization hold amounts that have &#x60;DBIT&#x60; as the &#x60;creditDebitIndicator&#x60; for an account. | [optional] [readonly] [default to undefined]
**lockedBalance** | **number** | The locked amount that is not available for withdrawal in the account. For more information, see [Deposit Account Overview Details](https://docs.mambu.com/docs/deposit-account-overview-details/). | [optional] [readonly] [default to undefined]
**overdraftAmount** | **number** | The overdraft amount that has been taken out in the account. For more information, see [Overdraft Products](https://docs.mambu.com/docs/overdraft-products). | [optional] [readonly] [default to undefined]
**overdraftInterestDue** | **number** | The amount of interest due to be paid on an account as a result of an authorized overdraft. | [optional] [readonly] [default to undefined]
**technicalOverdraftAmount** | **number** | The technical overdraft amount that has been taken out in the account. For more information, see [Technical Overdraft](https://docs.mambu.com/docs/overdraft-products/#technical-overdraft). | [optional] [readonly] [default to undefined]
**technicalOverdraftInterestDue** | **number** | The amount of interest due to be paid on an account as a result of a technical overdraft. | [optional] [readonly] [default to undefined]
**totalBalance** | **number** | The current balance of the account. | [optional] [readonly] [default to undefined]

## Example

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

const instance: DepositAccountBalances = {
    availableBalance,
    blockedBalance,
    feesDue,
    forwardAvailableBalance,
    holdBalance,
    lockedBalance,
    overdraftAmount,
    overdraftInterestDue,
    technicalOverdraftAmount,
    technicalOverdraftInterestDue,
    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)
