# SecuritySettings

The settings and constraints for securities.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**isCollateralEnabled** | **boolean** | Shows whether collateral (assets or other goods) are accepted in order to reach required securities percentage from loan amount, as defined in this product. | [optional] [default to undefined]
**isGuarantorsEnabled** | **boolean** | Shows whether guarantors (other clients) are accepted in order to reach the required securities percentage from loan amount, as defined in this product. | [optional] [default to undefined]
**requiredGuaranties** | **number** | The securities percentage from loan amount that is needed in order for this account to be approved. Null if the securities are not required. | [optional] [default to undefined]

## Example

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

const instance: SecuritySettings = {
    isCollateralEnabled,
    isGuarantorsEnabled,
    requiredGuaranties,
};
```

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