# FundingSettings

The funding settings, holds the settings regarding the funding for the loan product.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**enabled** | **boolean** | Indicates whether the product has the investor funds enabled or not. | [optional] [default to undefined]
**funderInterestCommission** | [**DecimalConstraints**](DecimalConstraints.md) |  | [optional] [default to undefined]
**funderInterestCommissionAllocationType** | **string** | Define how the Interest is allocated to the investors(if the investors can define their own percentages for their own contribution to the loan, or if all of them are using the same percentage). | [optional] [default to undefined]
**lockFundsAtApproval** | **boolean** | Shows whether investor funds are locked or not at the loan account\&#39;s approval. | [optional] [default to undefined]
**organizationInterestCommission** | [**DecimalConstraints**](DecimalConstraints.md) |  | [optional] [default to undefined]
**requiredFunds** | **number** | The required investor funds percentage, for opening an account with external funding. If null, the investor funds are not enabled. | [optional] [default to undefined]

## Example

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

const instance: FundingSettings = {
    enabled,
    funderInterestCommission,
    funderInterestCommissionAllocationType,
    lockFundsAtApproval,
    organizationInterestCommission,
    requiredFunds,
};
```

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