# SeizeBlockAmount

Represents the information for seizing a block amount on a deposit account.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The amount of the block fund | [optional] [default to undefined]
**blockId** | **string** | The id of the block fund | [default to undefined]
**externalId** | **string** | The external id of the current transaction, customizable, unique | [optional] [default to undefined]
**notes** | **string** | Extra notes about the current transaction | [optional] [default to undefined]
**transactionChannelId** | **string** | The id of the channel through which the transaction is done. | [default to undefined]

## Example

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

const instance: SeizeBlockAmount = {
    amount,
    blockId,
    externalId,
    notes,
    transactionChannelId,
};
```

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