# DepositAccountInterestRateTier

Represents information about how interest rate is calculated.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**encodedKey** | **string** | The encoded key of the interest rate tier, auto generated, unique | [optional] [readonly] [default to undefined]
**endingBalance** | **number** | The top-limit value for the account balance in order to determine if this tier is used or not | [optional] [default to undefined]
**endingDay** | **number** |  | [optional] [default to undefined]
**interestRate** | **number** | The rate used for computing the interest for an account which has the balance less than the ending balance | [default to undefined]

## Example

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

const instance: DepositAccountInterestRateTier = {
    encodedKey,
    endingBalance,
    endingDay,
    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)
