# CustomPaymentAmount

Custom payment amount for a specific element type

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The amount of the payment paid in the transaction for the given type. | [default to undefined]
**customPaymentAmountType** | **string** | The type of the custom payment | [default to undefined]
**predefinedFeeKey** | **string** | The encodedKey of the predefined fee to be paid. | [optional] [default to undefined]
**taxOnAmount** | **number** | The amount of the taxes paid in the transaction for the given type. | [optional] [default to undefined]

## Example

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

const instance: CustomPaymentAmount = {
    amount,
    customPaymentAmountType,
    predefinedFeeKey,
    taxOnAmount,
};
```

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