# RedrawRepaymentTransactionInputDTO

Represents the request payload for creating a transaction of type REDRAW_REPAYMENT

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The amount of the redraw repayment | [optional] [default to undefined]
**bookingDate** | **string** | The booking date of the repayment (as Organization Time) | [optional] [default to undefined]
**notes** | **string** | Extra notes about the redraw repayment transaction. Notes can have at most 255 characters in length. | [optional] [default to undefined]
**valueDate** | **string** | The entry date of the repayment (as Organization Time) | [optional] [default to undefined]

## Example

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

const instance: RedrawRepaymentTransactionInputDTO = {
    amount,
    bookingDate,
    notes,
    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)
