# LockLoanAccountInput

Represents the information for locking an account.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**lockedAccountTotalDueType** | **string** | Type of total due amount for a locked account. | [optional] [default to undefined]
**lockedOperations** | **Array&lt;string&gt;** | A list with operations which are locked when the account is in substate AccountState.LOCKED. Allowed options are &#x60;APPLY_INTEREST&#x60;, &#x60;APPLY_PENALTIES&#x60;, and &#x60;APPLY_FEES&#x60;. | [optional] [default to undefined]
**notes** | **string** | The notes about the account locking operation. | [optional] [default to undefined]

## Example

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

const instance: LockLoanAccountInput = {
    lockedAccountTotalDueType,
    lockedOperations,
    notes,
};
```

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