# DepositAccountInternalControls

Represents information about internal controls.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**maxDepositBalance** | **number** | The maximum deposit balance of the account. | [optional] [default to undefined]
**maxWithdrawalAmount** | **number** | The maximum amount allowed for a withdrawal. | [optional] [default to undefined]
**recommendedDepositAmount** | **number** | The recommended amount for a deposit. | [optional] [default to undefined]
**targetAmount** | **number** | The target amount for a deposit made towards a savings goal. | [optional] [default to undefined]

## Example

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

const instance: DepositAccountInternalControls = {
    maxDepositBalance,
    maxWithdrawalAmount,
    recommendedDepositAmount,
    targetAmount,
};
```

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