# RepaymentLoanTransactionInput

Represents the request payload for creating a transaction of type REPAYMENT

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**advanceRepayment** | **boolean** | Sets if the repayment is an advance repayment | [optional] [default to undefined]
**amount** | **number** | The amount of the repayment | [default to undefined]
**bookingDate** | **string** | The booking date of the repayment (as Organization Time) | [optional] [default to undefined]
**customPaymentAmounts** | [**Array&lt;CustomPaymentAmount&gt;**](CustomPaymentAmount.md) | The list of custom amounts of the repayment | [optional] [default to undefined]
**externalId** | **string** | The external id of the repayment transaction, customizable, unique | [optional] [default to undefined]
**installmentEncodedKey** | **string** | The encoded key of the schedule installment to which this repayment is associated | [optional] [default to undefined]
**notes** | **string** | Extra notes about the repayment transaction. Notes can have at most 255 characters in length. | [optional] [default to undefined]
**originalCurrencyCode** | **string** | The currency code for the repayment transaction | [optional] [default to undefined]
**prepaymentRecalculationMethod** | **string** | The prepayment recalculation method types. | [optional] [default to undefined]
**principalOverpaymentAmount** | **number** | The amount of the principal overpayment | [optional] [default to undefined]
**transactionDetails** | [**LoanTransactionDetailsInput**](LoanTransactionDetailsInput.md) |  | [optional] [default to undefined]
**valueDate** | **string** | The entry date of the repayment (as Organization Time) | [optional] [default to undefined]

## Example

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

const instance: RepaymentLoanTransactionInput = {
    advanceRepayment,
    amount,
    bookingDate,
    customPaymentAmounts,
    externalId,
    installmentEncodedKey,
    notes,
    originalCurrencyCode,
    prepaymentRecalculationMethod,
    principalOverpaymentAmount,
    transactionDetails,
    valueDate,
};
```

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