# DepositAffectedAmounts

The amounts affected after completing the deposit transaction

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**courtesyAmount** | **number** | The part of overdraft amount covered by courtesy pay for this transaction | [optional] [default to undefined]
**feesAmount** | **number** | Amount of fees involved in a transaction that affects an account with positive balance | [optional] [default to undefined]
**fractionAmount** | **number** | In the case of an LOAN_FRACTION_BOUGHT this represent the fraction amount which was bought from another investor | [optional] [default to undefined]
**fundsAmount** | **number** | Balance change amount involved in a transaction that affects an account with positive balance | [optional] [default to undefined]
**interestAmount** | **number** | Amount of interest involved in a transaction that affects an account with positive balance | [optional] [default to undefined]
**overdraftAmount** | **number** | The amount of money that was added/subtracted from the account by this transaction as overdraft | [optional] [default to undefined]
**overdraftFeesAmount** | **number** | Fees amount involved in a transaction that affects an overdraft | [optional] [default to undefined]
**overdraftInterestAmount** | **number** | Interest amount involved in a transaction that affects an overdraft | [optional] [default to undefined]
**protectionAmount** | **number** | The part of overdraft amount covered by overdraft limit/protection for this transaction | [optional] [default to undefined]
**technicalOverdraftAmount** | **number** | The amount of money that was added/subtracted from the account by this transaction as technical overdraft | [optional] [default to undefined]
**technicalOverdraftInterestAmount** | **number** | The amount of money that was added/subtracted from the account by this transaction as technical overdraft interest | [optional] [default to undefined]
**totalOverdraftAmount** | **number** | The total overdraft amount for this transaction | [optional] [default to undefined]

## Example

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

const instance: DepositAffectedAmounts = {
    courtesyAmount,
    feesAmount,
    fractionAmount,
    fundsAmount,
    interestAmount,
    overdraftAmount,
    overdraftFeesAmount,
    overdraftInterestAmount,
    protectionAmount,
    technicalOverdraftAmount,
    technicalOverdraftInterestAmount,
    totalOverdraftAmount,
};
```

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