# Installment

Represents a single installment details structure.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**carryForwardInterestSplit** | [**CarryForwardInterestSplit**](CarryForwardInterestSplit.md) |  | [optional] [default to undefined]
**customSettingDetails** | [**Array&lt;CustomSettingDetails&gt;**](CustomSettingDetails.md) | Custom settings associated with the installment. | [optional] [default to undefined]
**dueDate** | **string** | The installment due date. | [optional] [default to undefined]
**encodedKey** | **string** | The encoded key of the installment, which is auto generated, and unique. | [optional] [readonly] [default to undefined]
**expectedClosingBalance** | **number** | The expected closing balance is the remaining amount per installment only applicable for interest only equal installment products. | [optional] [default to undefined]
**fee** | [**InstallmentFee**](InstallmentFee.md) |  | [optional] [default to undefined]
**feeDetails** | [**Array&lt;InstallmentFeeDetails&gt;**](InstallmentFeeDetails.md) | The breakdown of the fee amounts that have been applied to the loan account. | [optional] [default to undefined]
**fundersInterestDue** | **number** | The amount of interest allocated to funders for P2P accounts only. | [optional] [default to undefined]
**interest** | [**InstallmentAllocationElementTaxableAmount**](InstallmentAllocationElementTaxableAmount.md) |  | [optional] [default to undefined]
**interestAccrued** | **number** | The interest accrued calculated on previous repayment closing balance only applicable interest only equal installment products. | [optional] [default to undefined]
**isPaymentHoliday** | **boolean** | &#x60;TRUE&#x60; if a payment holiday is offered for the installment, &#x60;FALSE&#x60; otherwise. | [optional] [default to undefined]
**lastPaidDate** | **string** | The installment last paid date. | [optional] [default to undefined]
**lastPenaltyAppliedDate** | **string** | The most recent date on which a penalty was applied to the account. | [optional] [default to undefined]
**nonScheduledPrincipalBalanceOverpayment** | **number** | The non-scheduled principal balance overpayment for the loan account | [optional] [default to undefined]
**notes** | **string** | Any comment or notes added to the installment. | [optional] [default to undefined]
**number** | **string** | The order number of an installment among all the installments generated for a loan. Loan installments are put in ascending order by due date. The order number only applies to the content of a particular JSON response therefore it is not unique. | [optional] [default to undefined]
**organizationCommissionDue** | **number** | The amount of interest allocated to organization as commission for P2P accounts only. | [optional] [default to undefined]
**parentAccountKey** | **string** | The parent account key of the installment. | [optional] [default to undefined]
**penalty** | [**InstallmentAllocationElementTaxableAmount**](InstallmentAllocationElementTaxableAmount.md) |  | [optional] [default to undefined]
**principal** | [**InstallmentAllocationElementAmount**](InstallmentAllocationElementAmount.md) |  | [optional] [default to undefined]
**repaidDate** | **string** | The installment repaid date. | [optional] [default to undefined]
**state** | **string** | The installment state. | [optional] [default to undefined]

## Example

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

const instance: Installment = {
    carryForwardInterestSplit,
    customSettingDetails,
    dueDate,
    encodedKey,
    expectedClosingBalance,
    fee,
    feeDetails,
    fundersInterestDue,
    interest,
    interestAccrued,
    isPaymentHoliday,
    lastPaidDate,
    lastPenaltyAppliedDate,
    nonScheduledPrincipalBalanceOverpayment,
    notes,
    number,
    organizationCommissionDue,
    parentAccountKey,
    penalty,
    principal,
    repaidDate,
    state,
};
```

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