# DepositProductOverdraftInterestConfiguration

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

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**allowOverdraft** | **boolean** | Whether the accounts for this product may have overdraft. | [optional] [default to undefined]
**allowTechnicalOverdraft** | **boolean** | Whether the accounts for this product may have technical overdraft. | [optional] [default to undefined]
**calculationBalance** | **string** | Shows the possible values for the calculation balance methods. | [optional] [default to undefined]
**daysInYear** | **string** | Shows how many days in a year should be used for calculations. | [optional] [default to undefined]
**interestRateSettings** | [**DepositProductOverdraftInterestRateConfiguration**](DepositProductOverdraftInterestRateConfiguration.md) |  | [optional] [default to undefined]
**maxOverdraftLimit** | **number** | How much money may be taken out for the account to go negative. | [optional] [default to undefined]

## Example

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

const instance: DepositProductOverdraftInterestConfiguration = {
    allowOverdraft,
    allowTechnicalOverdraft,
    calculationBalance,
    daysInYear,
    interestRateSettings,
    maxOverdraftLimit,
};
```

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