# DisbursementDetails

The the disbursement details it holds the information related to the disbursement details as disbursement date, first repayment date, disbursement fees.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**disbursementDate** | **string** | The activation date, the date when the disbursement actually took place. | [optional] [default to undefined]
**encodedKey** | **string** | The encoded key of the disbursement details, auto generated, unique | [optional] [readonly] [default to undefined]
**expectedDisbursementDate** | **string** | The date of the expected disbursement.Stored as Organization Time. | [optional] [default to undefined]
**fees** | [**Array&lt;CustomPredefinedFee&gt;**](CustomPredefinedFee.md) | List of fees that should be applied at the disbursement time. | [optional] [default to undefined]
**firstRepaymentDate** | **string** | The date of the expected first repayment. Stored as Organization Time. | [optional] [default to undefined]
**transactionDetails** | [**LoanTransactionDetails**](LoanTransactionDetails.md) |  | [optional] [default to undefined]

## Example

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

const instance: DisbursementDetails = {
    disbursementDate,
    encodedKey,
    expectedDisbursementDate,
    fees,
    firstRepaymentDate,
    transactionDetails,
};
```

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