# PlannedInstallmentFee

The planned fee details holds the information related to the installment key, predefined fee key and amount

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The amount of the planned fee. | [optional] [default to undefined]
**applyOnDate** | **string** | The date when a planned fee should be applied, overriding installment\&#39;s due date. It should match the interval of the installment. If it belong to first installment, it should be between disbursement date and installment due date. | [optional] [default to undefined]
**encodedKey** | **string** | The encoded key of the planned installment fee, auto generated, unique. | [optional] [readonly] [default to undefined]
**installmentKey** | **string** | The encoded key of the installment on which the predefined fee is planned. | [optional] [default to undefined]
**installmentNumber** | **number** | The number of the installment on which the predefined fee is planned. It is used only in the case when fees are created at the same time with the loan account creation or during preview schedule, before account creation, otherwise this should be empty and installmentKey will be used to identify an installment. | [optional] [default to undefined]
**predefinedFeeKey** | **string** | The encoded key of the predefined fee which is planned. | [default to undefined]

## Example

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

const instance: PlannedInstallmentFee = {
    amount,
    applyOnDate,
    encodedKey,
    installmentKey,
    installmentNumber,
    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)
