# CustomPredefinedFee

The custom predefined fees, they may be used as the expected predefined fees that will be applied on the disbursement.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The amount of the custom fee. | [optional] [default to undefined]
**encodedKey** | **string** | The encoded key of the custom predefined fee, auto generated, unique. | [optional] [readonly] [default to undefined]
**percentage** | **number** | The percentage of the custom fee. | [optional] [default to undefined]
**predefinedFeeEncodedKey** | **string** | The encoded key of the predefined fee | [optional] [default to undefined]

## Example

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

const instance: CustomPredefinedFee = {
    amount,
    encodedKey,
    percentage,
    predefinedFeeEncodedKey,
};
```

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