# LockSettings

Settings applied when transitioning accounts to Locked state

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**cappingConstraintType** | **string** | Specifies constraint types for capping charges. | [optional] [default to undefined]
**cappingMethod** | **string** | Specifies how principal will be used when calculating capping charges. | [optional] [default to undefined]
**cappingPercentage** | **number** | Specifies the percentage of principal that cannot be exceeded by the sum of interest, fees and penalty balances. | [optional] [default to undefined]
**lockPeriodDays** | **number** | Specifies the number of days for in which the account will be locked if it stays in arrears. | [optional] [default to undefined]

## Example

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

const instance: LockSettings = {
    cappingConstraintType,
    cappingMethod,
    cappingPercentage,
    lockPeriodDays,
};
```

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