# CollateralAssetFilter

Represents the input for the collateral assets reevaluation background task.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**branchKeys** | **Array&lt;string&gt;** | Assets of the loan accounts that will be filtered by the branch keys in the background process | [optional] [default to undefined]
**currencies** | **Array&lt;string&gt;** | Assets of the loan accounts that will be filtered by the currency codes in the background process | [optional] [default to undefined]
**productKeys** | **Array&lt;string&gt;** | Assets of the loan accounts that will be filtered by the product keys in the background process | [optional] [default to undefined]

## Example

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

const instance: CollateralAssetFilter = {
    branchKeys,
    currencies,
    productKeys,
};
```

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