# AccountInterestRateSettings

Adjustable interest rates settings for loan account

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**encodedKey** | **string** | The encoded key of the interest rate settings, auto generated, unique | [optional] [readonly] [default to undefined]
**indexSourceKey** | **string** | Index rate source key. | [optional] [default to undefined]
**interestRate** | **number** | Interest rate value. | [optional] [default to undefined]
**interestRateCeilingValue** | **number** | Maximum value allowed for index based interest rate. Valid only for index interest rate. | [optional] [default to undefined]
**interestRateFloorValue** | **number** | Minimum value allowed for index based interest rate. Valid only for index interest rate. | [optional] [default to undefined]
**interestRateReviewCount** | **number** | Interest rate review frequency unit count. Valid only for index interest rate. | [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. | [default to undefined]
**interestSpread** | **number** | Interest spread value. | [optional] [default to undefined]
**validFrom** | **string** | Date since an interest rate is valid | [default to undefined]

## Example

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

const instance: AccountInterestRateSettings = {
    encodedKey,
    indexSourceKey,
    interestRate,
    interestRateCeilingValue,
    interestRateFloorValue,
    interestRateReviewCount,
    interestRateReviewUnit,
    interestRateSource,
    interestSpread,
    validFrom,
};
```

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