# PrincipalPaymentConfiguration

Defines the principal payment settings constraints for the loans that will be created based on this product.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | [**LoanProductDecimalConstraintsConfiguration**](LoanProductDecimalConstraintsConfiguration.md) |  | [optional] [default to undefined]
**defaultPrincipalRepaymentInterval** | **number** | How many repayments the principal has to be paid | [optional] [default to undefined]
**includeFeesInFloorAmount** | **boolean** | If true, the interest will be included along with the principal in the repayment floor amount, for a revolving credit account | [optional] [default to undefined]
**percentage** | [**LoanProductDecimalConstraintsConfiguration**](LoanProductDecimalConstraintsConfiguration.md) |  | [optional] [default to undefined]
**principalCeilingValue** | **number** | The maximum principal due amount a repayment made with this settings can have | [optional] [default to undefined]
**principalFloorValue** | **number** | The minimum principal due amount a repayment made with this settings can have | [optional] [default to undefined]
**principalPaymentMethod** | **string** | The principal payment method | [optional] [default to undefined]
**totalDueAmountFloor** | **number** | The minimum total due amount a repayment made with this settings can have | [optional] [default to undefined]
**totalDuePayment** | **string** | The principal payment method | [optional] [default to undefined]

## Example

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

const instance: PrincipalPaymentConfiguration = {
    amount,
    defaultPrincipalRepaymentInterval,
    includeFeesInFloorAmount,
    percentage,
    principalCeilingValue,
    principalFloorValue,
    principalPaymentMethod,
    totalDueAmountFloor,
    totalDuePayment,
};
```

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