# TransactionInterestSettings

The interest settings, holds all the properties regarding interests for the loan account.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**indexInterestRate** | **number** | The value of the index interest rate | [optional] [default to undefined]
**interestRate** | **number** | The interest rate. Represents the interest rate for the loan account. The interest on loans is accrued on a daily basis, which allows charging the clients only for the days they actually used the loan amount. | [optional] [default to undefined]

## Example

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

const instance: TransactionInterestSettings = {
    indexInterestRate,
    interestRate,
};
```

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