# InterestSettings

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

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**accountInterestRateSettings** | [**Array&lt;AccountInterestRateSettings&gt;**](AccountInterestRateSettings.md) | Adjustable interest rates settings for loan account | [optional] [default to undefined]
**accrueInterestAfterMaturity** | **boolean** | The accrue interest after maturity. If the product support this option, specify if the interest should be accrued after the account maturity date. | [optional] [default to undefined]
**accrueLateInterest** | **boolean** | Indicates whether late interest is accrued for this loan account | [optional] [readonly] [default to undefined]
**effectiveInterestRate** | **number** | The effective interest rate. Represents the interest rate for the loan accounts with semi-annually compounding product. | [optional] [default to undefined]
**interestApplicationMethod** | **string** | The interest application method for a loan account. It shows the method used by the loans defining how the interest gets applied. | [optional] [default to undefined]
**interestBalanceCalculationMethod** | **string** | The interest balance calculation method for a loan account. Shows the possible methods for obtaining the balance based on which the interest will be calculated for loan repayment. | [optional] [default to undefined]
**interestCalculationMethod** | **string** | The interest calculation method for a loan account. Shows the different interest calculation methods. | [optional] [default to undefined]
**interestChargeFrequency** | **string** | The interest change frequency method for a loan account. Shows the possible methods for obtaining the balance based on which the interest will be calculated for loan repayment. | [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]
**interestRateReviewCount** | **number** | Interest rate update frequency unit count. | [optional] [default to undefined]
**interestRateReviewUnit** | **string** | The interest rate review unit values. Shows how often is index interest rate reviewed. | [optional] [default to undefined]
**interestRateSource** | **string** | The interest rate review unit values. Shows how often is index interest rate reviewed. | [optional] [default to undefined]
**interestSpread** | **number** | Interest to be added to active organization index interest rate in order to find out actual interest rate | [optional] [default to undefined]
**interestType** | **string** | The possible values for how we compute and apply the interest | [optional] [default to undefined]
**pmtAdjustmentThreshold** | [**PMTAdjustmentThreshold**](PMTAdjustmentThreshold.md) |  | [optional] [default to undefined]

## Example

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

const instance: InterestSettings = {
    accountInterestRateSettings,
    accrueInterestAfterMaturity,
    accrueLateInterest,
    effectiveInterestRate,
    interestApplicationMethod,
    interestBalanceCalculationMethod,
    interestCalculationMethod,
    interestChargeFrequency,
    interestRate,
    interestRateReviewCount,
    interestRateReviewUnit,
    interestRateSource,
    interestSpread,
    interestType,
    pmtAdjustmentThreshold,
};
```

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