# LoanTransactionAdjustmentDetails

Contains the details of the transaction adjustment

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**bookingDate** | **string** | Date when the adjustment transaction is logged into accounting. Can be null. Available only for REPAYMENT, PAYMENT_MADE and FEE | [optional] [default to undefined]
**installments** | [**Array&lt;AdjustTransactionInstallmentDetailsDTO&gt;**](AdjustTransactionInstallmentDetailsDTO.md) | Details of installments with their corresponding amounts to be added to the reduced fee/penalty | [optional] [default to undefined]
**notes** | **string** | Notes detailing why the transaction is adjusted | [default to undefined]

## Example

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

const instance: LoanTransactionAdjustmentDetails = {
    bookingDate,
    installments,
    notes,
};
```

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