# FeeAppliedDepositTransactionInput

Represents the request payload for creating a transaction of type FEE_APPLIED.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The value of the fee applied on the account | [optional] [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]
**predefinedFeeKey** | **string** | The encodedKey of the predefined fee that defines the current fee | [optional] [default to undefined]

## Example

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

const instance: FeeAppliedDepositTransactionInput = {
    amount,
    externalId,
    notes,
    predefinedFeeKey,
};
```

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