# DisbursementLoanTransactionInput

The input representation of a loan transaction when making a disbursement

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The amount to disburse | [optional] [default to undefined]
**bookingDate** | **string** | The date when disbursement is logged into accounting) | [optional] [default to undefined]
**externalId** | **string** | The external id of the disbursement transaction. Customizable and unique | [optional] [default to undefined]
**fees** | [**Array&lt;FeeInput&gt;**](FeeInput.md) | The list of the fees to apply | [optional] [default to undefined]
**firstRepaymentDate** | **string** | The date of the first repayment for the loan account (as Organization Time) | [optional] [default to undefined]
**notes** | **string** | Extra notes related to disbursement action or transaction | [optional] [default to undefined]
**originalCurrencyCode** | **string** | The currency for the disbursement transaction | [optional] [default to undefined]
**shiftAdjustableInterestPeriods** | **boolean** | Indicates whether the validFrom dates from Adjustable Interest Rates can be shifted automatically or not | [optional] [default to undefined]
**transactionDetails** | [**TransactionDetailsInput**](TransactionDetailsInput.md) |  | [optional] [default to undefined]
**transferDetails** | [**DisbursementTransferDetailsInput**](DisbursementTransferDetailsInput.md) |  | [optional] [default to undefined]
**valueDate** | **string** | The date of the disbursal (as Organization Time) | [optional] [default to undefined]

## Example

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

const instance: DisbursementLoanTransactionInput = {
    amount,
    bookingDate,
    externalId,
    fees,
    firstRepaymentDate,
    notes,
    originalCurrencyCode,
    shiftAdjustableInterestPeriods,
    transactionDetails,
    transferDetails,
    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)
