# AccountLinkSettings

Defines the settings for account linking.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**enabled** | **boolean** | Shows whether the loan accounts created using this product can be linked to a savings account. | [default to undefined]
**linkableDepositProductKey** | **string** | Loan accounts created for this product can only be linked the the savings accounts that use the savings product with this key. If null, the loan accounts for this product can be linked to any savings account. | [optional] [default to undefined]
**linkedAccountOptions** | **Set&lt;string&gt;** | A set of linked account options. | [optional] [default to undefined]
**settlementMethod** | **string** | Set the option of automated transfer that should be made from linked deposit accounts into loan accounts create from this product. | [optional] [default to undefined]

## Example

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

const instance: AccountLinkSettings = {
    enabled,
    linkableDepositProductKey,
    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)
