# Taxes

The taxes applied within a transaction.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**deferredTaxOnInterestAmount** | **number** | How much taxes on the interest that was pre-paid were added/removed in account, within this transaction. If there is any deferred tax on interest amount set in this transaction, that amount should be included in this field. | [optional] [default to undefined]
**taxOnFeesAmount** | **number** | How much taxes on the fees that were paid in this transaction were added/removed in account, within this transaction. | [optional] [default to undefined]
**taxOnInterestAmount** | **number** | How much taxes on the interest that was paid in this transaction were added/removed in account, within this transaction. | [optional] [default to undefined]
**taxOnInterestFromArrearsAmount** | **number** | The amount of taxes on the interest from arrears that were applied/paid in account, within this transaction. | [optional] [default to undefined]
**taxOnPaymentHolidaysInterest** | **number** | The amount of taxes on the Payment Holidays interest that were added/removed in account, within this transaction. | [optional] [default to undefined]
**taxOnPenaltyAmount** | **number** | How much taxes on the penalties that were paid in this transaction were added/removed in account, within this transaction. | [optional] [default to undefined]
**taxRate** | **number** | The tax rate that was set or changed in this transaction. | [optional] [default to undefined]

## Example

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

const instance: Taxes = {
    deferredTaxOnInterestAmount,
    taxOnFeesAmount,
    taxOnInterestAmount,
    taxOnInterestFromArrearsAmount,
    taxOnPaymentHolidaysInterest,
    taxOnPenaltyAmount,
    taxRate,
};
```

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