# DepositProductInterestConfiguration

The interest settings, defines constraints regarding interest that will be used on the deposit account based on this product.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**calculationBalance** | **string** | Shows the possible values for the calculation balance methods. | [optional] [default to undefined]
**collectInterestWhenLocked** | **boolean** | Whether locked accounts still collect Interest or not. | [optional] [default to undefined]
**daysInYear** | **string** | Shows how many days in a year should be used for calculations. | [optional] [default to undefined]
**interestGainsProvidedEndDate** | **string** | The date when the accounts under this product, will no longer have interest gains provided | [optional] [default to undefined]
**interestGainsProvidedStartDate** | **string** | The date when the accounts of this product will start to have interest gains provided. Starting with this date 0 interest rate is enforced on the accounts of this product. | [optional] [default to undefined]
**interestRateSettings** | [**DepositProductInterestRateConfiguration**](DepositProductInterestRateConfiguration.md) |  | [optional] [default to undefined]
**maximumBalance** | **number** | The maximum balance used for Interest calculation. | [optional] [default to undefined]
**paidIntoAccount** | **boolean** | If interest should be payed into the deposit account. | [optional] [default to undefined]
**paymentSettings** | [**DepositProductPaymentConfiguration**](DepositProductPaymentConfiguration.md) |  | [optional] [default to undefined]

## Example

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

const instance: DepositProductInterestConfiguration = {
    calculationBalance,
    collectInterestWhenLocked,
    daysInYear,
    interestGainsProvidedEndDate,
    interestGainsProvidedStartDate,
    interestRateSettings,
    maximumBalance,
    paidIntoAccount,
    paymentSettings,
};
```

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