# DepositProductInterestRateTierConfiguration

Holds the values to define how the interest is computed

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**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** | The top-limit value for the account period since activation in order to determine if this tier is used or not | [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 { DepositProductInterestRateTierConfiguration } from './api';

const instance: DepositProductInterestRateTierConfiguration = {
    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)
