# PrincipalPaymentAccountSettings

The principal payment account settings, holds the required information for the principal payment process of an account.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | Fixed amount for being used for the repayments principal due. | [optional] [default to undefined]
**encodedKey** | **string** | The encoded key of the principal payment base settings, auto generated, unique. | [optional] [readonly] [default to undefined]
**includeFeesInFloorAmount** | **boolean** | Boolean flag, if true, the fees will be included along with the principal in the repayment floor amount, for a revolving credit account | [optional] [default to undefined]
**includeInterestInFloorAmount** | **boolean** | Boolean flag, 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** | **number** | Percentage of principal amount used for the repayments principal due. | [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 (for revolving credits) | [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 (for revolving credits) | [optional] [default to undefined]

## Example

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

const instance: PrincipalPaymentAccountSettings = {
    amount,
    encodedKey,
    includeFeesInFloorAmount,
    includeInterestInFloorAmount,
    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)
