# LoanAffectedAmounts

The amounts affected after completing the loan transaction

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**creditBalanceChangeAmount** | **number** | How much credit balance was added/removed in account, within this transaction. | [optional] [default to undefined]
**deferredInterestAmount** | **number** | How much interest pre-paid was added/removed in account, within this transaction (including taxes). | [optional] [default to undefined]
**feesAmount** | **number** |  How much fees was added/removed in account, within this transaction. | [optional] [default to undefined]
**fundersInterestAmount** | **number** | How much interest is given to the investors, within this transaction (only for p2p products) | [optional] [default to undefined]
**interestAmount** | **number** | How much interest was added/removed in account, within this transaction (including taxes). If there is any deferred interest amount set in this transaction, that amount should be included in this field. | [optional] [default to undefined]
**interestFromArrearsAmount** | **number** | How much interest from arrears was added/removed in account, within this transaction (including taxes). | [optional] [default to undefined]
**organizationCommissionAmount** | **number** | How much interest is given to the organization, within this transaction (only for p2p products) | [optional] [default to undefined]
**paymentHolidaysInterestAmount** | **number** | How much Payment Holidays interest was added/removed in account, within this transaction (including taxes). | [optional] [default to undefined]
**penaltyAmount** | **number** | How much penalties was added/removed in account, within this transaction. | [optional] [default to undefined]
**principalAmount** | **number** | How much principal was added/removed in account, within this transaction. | [optional] [default to undefined]

## Example

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

const instance: LoanAffectedAmounts = {
    creditBalanceChangeAmount,
    deferredInterestAmount,
    feesAmount,
    fundersInterestAmount,
    interestAmount,
    interestFromArrearsAmount,
    organizationCommissionAmount,
    paymentHolidaysInterestAmount,
    penaltyAmount,
    principalAmount,
};
```

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