# PeriodicPayment

For fixed term loans there is the possibility to define a payment plan. A payment plan consists of multiple periodic payments. This class holds information about a periodic payment.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The PMT value used in periodic payment | [default to undefined]
**encodedKey** | **string** | The encoded key of the periodic payment, auto generated, unique. | [optional] [readonly] [default to undefined]
**toInstallment** | **number** | The installment\&#39;s position up to which the PMT will be used | [default to undefined]

## Example

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

const instance: PeriodicPayment = {
    amount,
    encodedKey,
    toInstallment,
};
```

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