# DepositProductInterestSettings

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

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**collectInterestWhenLocked** | **boolean** | Whether locked accounts still collect Interest or not | [optional] [default to undefined]
**daysInYear** | **string** | How many days in a year should be used for interest calculations | [optional] [default to undefined]
**interestCalculationBalance** | **string** | The balance which is used for the Interest calculation | [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]
**interestPaidIntoAccount** | **boolean** | If interest should be payed into the deposit account | [optional] [default to undefined]
**interestPaymentSettings** | [**InterestPaymentSettings**](InterestPaymentSettings.md) |  | [optional] [default to undefined]
**interestRateSettings** | [**DepositProductInterestRateSettings**](DepositProductInterestRateSettings.md) |  | [optional] [default to undefined]
**maximumBalance** | **number** | The maximum balance used for Interest calculation | [optional] [default to undefined]

## Example

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

const instance: DepositProductInterestSettings = {
    collectInterestWhenLocked,
    daysInYear,
    interestCalculationBalance,
    interestGainsProvidedEndDate,
    interestGainsProvidedStartDate,
    interestPaidIntoAccount,
    interestPaymentSettings,
    interestRateSettings,
    maximumBalance,
};
```

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