# DepositInterestAccruedAmounts

Represents the accrued interest amounts for an Interest Applied deposit transaction.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**interestAccrued** | **number** | The amount of positive interest accrued since last interest application/activation date and applied within Interest Applied transaction | [optional] [default to undefined]
**negativeInterestAccrued** | **number** | The amount of negative interest accrued since last interest application/activation date and applied within Interest Applied transaction | [optional] [default to undefined]
**overdraftInterestAccrued** | **number** | The amount of overdraft interest accrued since last interest application/activation date and applied within Interest Applied transaction | [optional] [default to undefined]
**technicalOverdraftInterestAccrued** | **number** | The amount of technical overdraft interest accrued since last interest application/activation date and applied within Interest Applied transaction | [optional] [default to undefined]

## Example

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

const instance: DepositInterestAccruedAmounts = {
    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)
