# DepositAccountAccruedAmounts

Represents information about the accrued amounts of deposit accounts.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**interestAccrued** | **number** | The amount of positive interest that has been accrued in the account. | [optional] [readonly] [default to undefined]
**negativeInterestAccrued** | **number** | The amount of negative interest that has been accrued in the account. | [optional] [readonly] [default to undefined]
**overdraftInterestAccrued** | **number** | The amount of overdraft interest that has been accrued in the account. | [optional] [readonly] [default to undefined]
**technicalOverdraftInterestAccrued** | **number** | The amount of technical overdraft interest that has been accrued in the account. | [optional] [readonly] [default to undefined]

## Example

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

const instance: DepositAccountAccruedAmounts = {
    interestAccrued,
    negativeInterestAccrued,
    overdraftInterestAccrued,
    technicalOverdraftInterestAccrued,
};
```

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