# BlockFund

Represents the block fund amount that can be later seized on the account

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**accountKey** | **string** | The key of the account which block fund belongs to | [optional] [readonly] [default to undefined]
**amount** | **number** | The amount to be blocked | [default to undefined]
**creationDate** | **string** | The date at which the block fund was created | [optional] [readonly] [default to undefined]
**externalReferenceId** | **string** | The external reference ID to be used to reference the block fund in subsequent requests | [default to undefined]
**lastModifiedDate** | **string** | The date at which the block fund was created | [optional] [readonly] [default to undefined]
**notes** | **string** | Notes about this block fund | [optional] [default to undefined]
**seizedAmount** | **number** | The amount that has been seized | [optional] [readonly] [default to undefined]
**state** | **string** | The state of the block fund | [optional] [readonly] [default to undefined]

## Example

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

const instance: BlockFund = {
    accountKey,
    amount,
    creationDate,
    externalReferenceId,
    lastModifiedDate,
    notes,
    seizedAmount,
    state,
};
```

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