# AccountLinkConfiguration

Represents the settings for linking a deposit account.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**enabled** | **boolean** | &#x60;TRUE&#x60; if the loan accounts created using this loan product can be linked to a deposit account, &#x60;FALSE&#x60; otherwise. | [optional] [default to undefined]
**linkableDepositProductId** | **string** | If defined, loan accounts created for this loan product can only be linked to deposit accounts that use the deposit product with this ID. If null, the loan accounts for this loan product can be linked to any deposit account. | [optional] [default to undefined]
**linkedAccountOptions** | **Set&lt;string&gt;** | A set of linked account options. | [optional] [default to undefined]
**settlementMethod** | **string** | The type of of automated transfer that should be made from linked deposit accounts into loan accounts created from this loan product. | [optional] [default to undefined]

## Example

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

const instance: AccountLinkConfiguration = {
    enabled,
    linkableDepositProductId,
    linkedAccountOptions,
    settlementMethod,
};
```

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