# InstallmentFeeDetails

Represents fee details for an installment.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | [**AmountWithReduced**](AmountWithReduced.md) |  | [optional] [default to undefined]
**encodedKey** | **string** | The encoded key of the predefined fee, auto generated, unique | [optional] [readonly] [default to undefined]
**id** | **string** | The id of the fee, provided by the client | [optional] [default to undefined]
**name** | **string** | The name of the fee | [optional] [default to undefined]
**tax** | [**AmountWithReduced**](AmountWithReduced.md) |  | [optional] [default to undefined]

## Example

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

const instance: InstallmentFeeDetails = {
    amount,
    encodedKey,
    id,
    name,
    tax,
};
```

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