# Fee

An amount of predefined fee that was applied or paid on an account.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The amount of the fee that was applied/paid in the transaction for the given predefined fee. | [optional] [default to undefined]
**name** | **string** | The name of the predefined fee | [optional] [readonly] [default to undefined]
**predefinedFeeKey** | **string** | The encoded key of the predefined fee, auto generated, unique | [default to undefined]
**taxAmount** | **number** | The amount of the taxes on fee that was applied/paid in the transaction. | [optional] [default to undefined]
**trigger** | **string** | Shows the event that will trigger a fee | [optional] [readonly] [default to undefined]

## Example

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

const instance: Fee = {
    amount,
    name,
    predefinedFeeKey,
    taxAmount,
    trigger,
};
```

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