# DepositAccountInterestRateSettings

Represents information about the interest rate settings for deposit accounts.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**encodedKey** | **string** | The encoded key for the set of interest settings, which is auto-generated and unique. | [optional] [readonly] [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]
**interestChargeFrequencyCount** | **number** | The number of times to apply interest in a time period. | [optional] [default to undefined]
**interestRate** | **number** | The interest rate for the deposit account. | [optional] [default to undefined]
**interestRateReviewCount** | **number** | The number of times to review the interest rate in a time period. | [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] [readonly] [default to undefined]
**interestRateTerms** | **string** | The terms for how interest rate is determined when accruing for an account. | [optional] [default to undefined]
**interestRateTiers** | [**Array&lt;DepositAccountInterestRateTier&gt;**](DepositAccountInterestRateTier.md) | The list of interest rate tiers, which hold the values to define how interest is calculated. | [optional] [default to undefined]
**interestSpread** | **number** | The index interest rate that is used to calculate the interest rate that is applied to accounts. | [optional] [default to undefined]

## Example

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

const instance: DepositAccountInterestRateSettings = {
    encodedKey,
    interestChargeFrequency,
    interestChargeFrequencyCount,
    interestRate,
    interestRateReviewCount,
    interestRateReviewUnit,
    interestRateSource,
    interestRateTerms,
    interestRateTiers,
    interestSpread,
};
```

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