# DepositAccountOverdraftSettings

Represents information about a deposit account\'s overdraft settings.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**allowOverdraft** | **boolean** | &#x60;TRUE&#x60; if this account supports overdraft, &#x60;FALSE&#x60; otherwise. | [optional] [default to undefined]
**overdraftExpiryDate** | **string** | The expiration date of an overdraft. | [optional] [default to undefined]
**overdraftLimit** | **number** | The limit amount that may be taken out as overdraft, where null means 0. | [optional] [default to undefined]

## Example

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

const instance: DepositAccountOverdraftSettings = {
    allowOverdraft,
    overdraftExpiryDate,
    overdraftLimit,
};
```

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